diff options
595 files changed, 8021 insertions, 7651 deletions
diff --git a/3rdparty b/3rdparty -Subproject 98fdc3a4e2f56f7d231470418222162dbf95f46 +Subproject 42efd966284debadf83b761367e529bc45f806d diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 45fb17de94a..38c2a053a9e 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -7,6 +7,8 @@ OCP\JSON::setContentTypeHeader('text/plain'); // If not, check the login. // If no token is sent along, rely on login only +$allowedPermissions = OCP\PERMISSION_ALL; + $l = OC_L10N::get('files'); if (empty($_POST['dirToken'])) { // The standard case, files are uploaded through logged in users :) @@ -17,6 +19,9 @@ if (empty($_POST['dirToken'])) { die(); } } else { + // return only read permissions for public upload + $allowedPermissions = OCP\PERMISSION_READ; + $linkItem = OCP\Share::getShareByToken($_POST['dirToken']); if ($linkItem === false) { OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Invalid Token'))))); @@ -130,7 +135,7 @@ if (strpos($dir, '..') === false) { 'originalname' => $files['tmp_name'][$i], 'uploadMaxFilesize' => $maxUploadFileSize, 'maxHumanFilesize' => $maxHumanFileSize, - 'permissions' => $meta['permissions'], + 'permissions' => $meta['permissions'] & $allowedPermissions ); } @@ -156,7 +161,7 @@ if (strpos($dir, '..') === false) { 'originalname' => $files['tmp_name'][$i], 'uploadMaxFilesize' => $maxUploadFileSize, 'maxHumanFilesize' => $maxHumanFileSize, - 'permissions' => $meta['permissions'], + 'permissions' => $meta['permissions'] & $allowedPermissions ); } } diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index 0c1f2e6580c..75c80cd49f3 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -39,7 +39,7 @@ $rootDir = new OC_Connector_Sabre_Directory(''); $objectTree = new \OC\Connector\Sabre\ObjectTree($rootDir); // Fire up server -$server = new Sabre_DAV_Server($objectTree); +$server = new OC_Connector_Sabre_Server($objectTree); $server->httpRequest = $requestBackend; $server->setBaseUri($baseuri); diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index c03e9037cec..fefb06a8ac5 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -124,7 +124,11 @@ OC.Upload = { */ onReplace:function(data){ this.log('replace', null, data); - data.data.append('resolution', 'replace'); + if (data.data){ + data.data.append('resolution', 'replace'); + } else { + data.formData.push({name:'resolution',value:'replace'}); //hack for ie8 + } data.submit(); }, /** @@ -535,7 +539,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')); + FileActions.display(tr.find('td.filename'), true); } else { OC.dialogs.alert(result.data.message, t('core', 'Error')); } diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index e14e52eb6ca..03e23189a97 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -61,7 +61,13 @@ var FileActions = { var actions = this.get(mime, type, permissions); return actions[name]; }, - display: function (parent) { + /** + * Display file actions for the given element + * @param parent "td" element of the file for which to display actions + * @param triggerEvent if true, triggers the fileActionsReady on the file + * list afterwards (false by default) + */ + display: function (parent, triggerEvent) { FileActions.currentFile = parent; var actions = FileActions.get(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions()); var file = FileActions.getCurrentFile(); @@ -137,6 +143,10 @@ var FileActions = { element.on('click', {a: null, elem: parent, actionFunc: actions['Delete']}, actionHandler); parent.parent().children().last().append(element); } + + if (triggerEvent){ + $('#fileList').trigger(jQuery.Event("fileActionsReady")); + } }, getCurrentFile: function () { return FileActions.currentFile.parent().attr('data-file'); diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index a9297996778..84ff1093253 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -151,7 +151,7 @@ var FileList={ if (hidden) { tr.hide(); } - FileActions.display(tr.find('td.filename')); + FileActions.display(tr.find('td.filename'), true); return tr; }, /** @@ -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'); @@ -808,7 +817,7 @@ $(document).ready(function(){ data.context.attr('data-permissions', file.permissions); data.context.data('permissions', file.permissions); } - FileActions.display(data.context.find('td.filename')); + FileActions.display(data.context.find('td.filename'), true); var path = getPathForPreview(file.name); lazyLoadPreview(path, file.mime, function(previewpath){ @@ -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; - } - else{ - // read from URL - targetDir = parseCurrentDirFromUrl(); + // 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); + }); } - if (targetDir){ - FileList.changeDirectory(targetDir, false); + 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 (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 9e7a2364b18..c3a8d81b50d 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -301,7 +301,7 @@ $(document).ready(function() { }); $('.download').click('click',function(event) { - var files=getSelectedFiles('name'); + var files=getSelectedFilesTrash('name'); var fileslist = JSON.stringify(files); var dir=$('#dir').val()||'/'; OC.Notification.show(t('files','Your download is being prepared. This might take some time if the files are big.')); @@ -315,7 +315,7 @@ $(document).ready(function() { }); $('.delete-selected').click(function(event) { - var files=getSelectedFiles('name'); + var files=getSelectedFilesTrash('name'); event.preventDefault(); FileList.do_delete(files); return false; @@ -433,7 +433,7 @@ var createDragShadow = function(event){ $(event.target).parents('tr').find('td input:first').prop('checked',true); } - var selectedFiles = getSelectedFiles(); + var selectedFiles = getSelectedFilesTrash(); if (!isDragSelected && selectedFiles.length == 1) { //revert the selection @@ -562,7 +562,7 @@ var crumbDropOptions={ } function procesSelection(){ - var selected=getSelectedFiles(); + var selected=getSelectedFilesTrash(); var selectedFiles=selected.filter(function(el){return el.type=='file'}); var selectedFolders=selected.filter(function(el){return el.type=='dir'}); if(selectedFiles.length==0 && selectedFolders.length==0) { @@ -607,7 +607,7 @@ function procesSelection(){ * if property is set, an array with that property for each file is returnd * if it's ommited an array of objects with all properties is returned */ -function getSelectedFiles(property){ +function getSelectedFilesTrash(property){ var elements=$('td.filename input:checkbox:checked').parent().parent(); var files=[]; elements.each(function(i,element){ @@ -705,7 +705,9 @@ function checkTrashStatus() { function onClickBreadcrumb(e){ var $el = $(e.target).closest('.crumb'), $targetDir = $el.data('dir'); - if ($targetDir !== undefined){ + 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 f1e54ee5fc3..6750afddde8 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/ja_JP.php b/apps/files/l10n/ja_JP.php index 07ee96f1eb6..180f0260478 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/tr.php b/apps/files/l10n/tr.php index 8cb05e16ace..09c38abfcf0 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_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 32645322630..9d37a8d7b0d 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 99548cb1cac..a7f8dd7fe6c 100644 --- a/apps/files_encryption/l10n/de.php +++ b/apps/files_encryption/l10n/de.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "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:", diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 9d33d2100d2..c267cc751af 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "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:", diff --git a/apps/files_encryption/l10n/en_GB.php b/apps/files_encryption/l10n/en_GB.php index 53eef77eb54..1ff3e1dad0b 100644 --- a/apps/files_encryption/l10n/en_GB.php +++ b/apps/files_encryption/l10n/en_GB.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "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:", diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index c49e4e9e5a5..79349722c1f 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "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:", diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index afce2ccfd35..2988995c885 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "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 :", diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index 86d56e40315..5eed2bfe66a 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "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.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Kan dit bestand niet ontcijferen, waarschijnlijk is het een gedeeld bestand, Vraag de eigenaar om het bestand opnieuw met u te delen.", +"Unknown error please check your system settings or contact your administrator" => "Onbekende fout, Controleer uw systeeminstellingen of neem contact op met uw systeembeheerder", "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:", diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index c6abb1952d2..4539696b460 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/sv.php b/apps/files_encryption/l10n/sv.php index f806c3cc3e6..a3ffe18bfa2 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "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.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Kan ej dekryptera denna fil, förmodligen är det en delad fil. Be ägaren av filen att dela den med dig.", +"Unknown error please check your system settings or contact your administrator" => "Oväntat fel, kolla dina system inställningar eller kontakta din administratör", "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:", diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 8621c1ba51d..6dc5c9ce1b8 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -47,7 +47,8 @@ class Proxy extends \OC_FileProxy { */ private static function shouldEncrypt($path) { - if (\OCP\App::isEnabled('files_encryption') === false || Crypt::mode() !== 'server') { + if (\OCP\App::isEnabled('files_encryption') === false || Crypt::mode() !== 'server' || + strpos($path, '/' . \OCP\User::getUser() . '/files') !== 0) { return false; } @@ -316,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; @@ -337,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 @@ -344,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/tests/proxy.php b/apps/files_encryption/tests/proxy.php index 5a2d851ff7c..a22f12411f4 100644 --- a/apps/files_encryption/tests/proxy.php +++ b/apps/files_encryption/tests/proxy.php @@ -1,220 +1,110 @@ <?php /** - * Copyright (c) 2012 Sam Tuke <samtuke@owncloud.com>, - * and Robin Appelman <icewind@owncloud.com> - * 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 <schiessle@owncloud.com> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see <http://www.gnu.org/licenses/>. + * */ -// 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; - -// 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 ); -// -// } -// -// } - -// 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)); -// } -// } +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'; + +use OCA\Encryption; + +/** + * 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_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index ffdcbf05109..bdaea64bb90 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -8,6 +8,7 @@ OC::$CLASSPATH['OC\Files\Cache\Shared_Permissions'] = 'files_sharing/lib/permiss OC::$CLASSPATH['OC\Files\Cache\Shared_Updater'] = 'files_sharing/lib/updater.php'; OC::$CLASSPATH['OC\Files\Cache\Shared_Watcher'] = 'files_sharing/lib/watcher.php'; OC::$CLASSPATH['OCA\Files\Share\Api'] = 'files_sharing/lib/api.php'; +OC::$CLASSPATH['OCA\Files\Share\Maintainer'] = 'files_sharing/lib/maintainer.php'; OCP\Util::connectHook('OC_Filesystem', 'setup', '\OC\Files\Storage\Shared', 'setup'); OCP\Share::registerBackend('file', 'OC_Share_Backend_File'); OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file'); @@ -17,3 +18,4 @@ OCP\Util::addScript('files_sharing', 'share'); \OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Shared_Updater', 'renameHook'); \OC_Hook::connect('OCP\Share', 'post_shared', '\OC\Files\Cache\Shared_Updater', 'shareHook'); \OC_Hook::connect('OCP\Share', 'pre_unshare', '\OC\Files\Cache\Shared_Updater', 'shareHook'); +\OC_Hook::connect('OC_Appconfig', 'post_set_value', '\OCA\Files\Share\Maintainer', 'configChangeHook'); diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 03ed02f41ef..68f6f3ba76f 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -1,11 +1,19 @@ $(document).ready(function() { - var disableSharing = $('#disableSharing').data('status'); + var disableSharing = $('#disableSharing').data('status'), + sharesLoaded = false; if (typeof OC.Share !== 'undefined' && typeof FileActions !== 'undefined' && !disableSharing) { - $('#fileList').on('fileActionsReady',function(){ - OC.Share.loadIcons('file'); + if (!sharesLoaded){ + OC.Share.loadIcons('file'); + // assume that we got all shares, so switching directories + // will not invalidate that list + sharesLoaded = true; + } + else{ + OC.Share.updateIcons('file'); + } }); FileActions.register('all', 'Share', OC.PERMISSION_READ, OC.imagePath('core', 'actions/share'), function(filename) { diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index 7888ec25870..192c4a79572 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"This share is password-protected" => "Toto sdÃlenà je chránÄ›no heslem", "The password is wrong. Try again." => "Heslo nenà správné. Zkuste to znovu.", "Password" => "Heslo", "Sorry, this link doesn’t seem to work anymore." => "Je nám lÃto, ale tento odkaz již nenà funkÄnÃ.", diff --git a/apps/files_sharing/l10n/en_GB.php b/apps/files_sharing/l10n/en_GB.php index 958f38557d2..b0db7ebc90c 100644 --- a/apps/files_sharing/l10n/en_GB.php +++ b/apps/files_sharing/l10n/en_GB.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"This share is password-protected" => "This share is password-protected", "The password is wrong. Try again." => "The password is wrong. Try again.", "Password" => "Password", "Sorry, this link doesn’t seem to work anymore." => "Sorry, this link doesn’t seem to work anymore.", diff --git a/apps/files_sharing/l10n/es.php b/apps/files_sharing/l10n/es.php index 45e4563b691..9d214e79e22 100644 --- a/apps/files_sharing/l10n/es.php +++ b/apps/files_sharing/l10n/es.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"This share is password-protected" => "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", "Sorry, this link doesn’t seem to work anymore." => "Vaya, este enlace parece que no volverá a funcionar.", diff --git a/apps/files_sharing/l10n/et_EE.php b/apps/files_sharing/l10n/et_EE.php index b70cbb3e7e3..71218625f81 100644 --- a/apps/files_sharing/l10n/et_EE.php +++ b/apps/files_sharing/l10n/et_EE.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"This share is password-protected" => "See jagamine on parooliga kaitstud", "The password is wrong. Try again." => "Parool on vale. Proovi uuesti.", "Password" => "Parool", "Sorry, this link doesn’t seem to work anymore." => "Vabandust, see link ei tundu enam toimivat.", diff --git a/apps/files_sharing/l10n/ja_JP.php b/apps/files_sharing/l10n/ja_JP.php index 6a7500f147f..0eafd9ea811 100644 --- a/apps/files_sharing/l10n/ja_JP.php +++ b/apps/files_sharing/l10n/ja_JP.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"This share is password-protected" => "ã“ã®å…±æœ‰ã¯ãƒ‘スワードã§ä¿è·ã•ã‚Œã¦ã„ã¾ã™", "The password is wrong. Try again." => "パスワードãŒé–“é•ã£ã¦ã„ã¾ã™ã€‚å†è©¦è¡Œã—ã¦ãã ã•ã„。", "Password" => "パスワード", "Sorry, this link doesn’t seem to work anymore." => "申ã—訳ã”ã–ã„ã¾ã›ã‚“。ã“ã®ãƒªãƒ³ã‚¯ã¯ã‚‚ã†åˆ©ç”¨ã§ãã¾ã›ã‚“。", diff --git a/apps/files_sharing/l10n/pt_PT.php b/apps/files_sharing/l10n/pt_PT.php index 7fa1876aaac..ce513485497 100644 --- a/apps/files_sharing/l10n/pt_PT.php +++ b/apps/files_sharing/l10n/pt_PT.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"This share is password-protected" => "Esta partilha está protegida por palavra-chave", "The password is wrong. Try again." => "Password errada, por favor tente de novo", "Password" => "Password", "Sorry, this link doesn’t seem to work anymore." => "Desculpe, mas este link parece não estar a funcionar.", diff --git a/apps/files_sharing/l10n/sv.php b/apps/files_sharing/l10n/sv.php index 23bf17aba45..64e8a389429 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"This share is password-protected" => "Den här delningen är lösenordsskyddad", "The password is wrong. Try again." => "Lösenordet är fel. Försök igen.", "Password" => "Lösenord", "Sorry, this link doesn’t seem to work anymore." => "Tyvärr, denna länk verkar inte fungera längre.", diff --git a/apps/files_sharing/l10n/tr.php b/apps/files_sharing/l10n/tr.php index 9a2d36e5236..88d1152a7d5 100644 --- a/apps/files_sharing/l10n/tr.php +++ b/apps/files_sharing/l10n/tr.php @@ -1,6 +1,14 @@ <?php $TRANSLATIONS = array( +"This share is password-protected" => "Bu paylaşım parola korumalı", +"The password is wrong. Try again." => "Parola hatalı. Yeniden deneyin.", "Password" => "Parola", +"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/lib/api.php b/apps/files_sharing/lib/api.php index e6624624898..84e90c71681 100644 --- a/apps/files_sharing/lib/api.php +++ b/apps/files_sharing/lib/api.php @@ -31,15 +31,22 @@ 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']; - if (isset($_GET['subfiles']) && $_GET['subfiles'] === 'true') { + $params['itemType'] = self::getItemType($_GET['path']); + + if ( isset($_GET['reshares']) && $_GET['reshares'] !== 'false' ) { + $params['reshares'] = true; + } else { + $params['reshares'] = false; + } + + if (isset($_GET['subfiles']) && $_GET['subfiles'] !== 'false') { return self::getSharesFromFolder($params); } - return self::getShare($params); + return self::collectShares($params); } $share = \OCP\Share::getItemShared('file', null); @@ -60,28 +67,49 @@ class Api { */ 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']; - $getSpecificShare = true; - } else { - $s = self::getShareFromId($params['id']); - $itemSource = $s['item_source']; - $getSpecificShare = false; - } + $s = self::getShareFromId($params['id']); + $params['itemSource'] = $s['item_source']; + $params['itemType'] = $s['item_type']; + $params['specificShare'] = true; + + return self::collectShares($params); + } + + /** + * @brief collect all share information, either of a specific share or all + * shares for a given path + * @param array $params + * @return \OC_OCS_Result + */ + private static function collectShares($params) { + + $itemSource = $params['itemSource']; + $itemType = $params['itemType']; + $getSpecificShare = isset($params['specificShare']) ? $params['specificShare'] : false; if ($itemSource !== null) { - $shares = \OCP\Share::getItemShared('file', $itemSource); + $shares = \OCP\Share::getItemShared($itemType, $itemSource); + $receivedFrom = \OCP\Share::getItemSharedWithBySource($itemType, $itemSource); // if a specific share was specified only return this one - if ($getSpecificShare === false) { + if ($getSpecificShare === true) { foreach ($shares as $share) { - if ($share['id'] === (int)$params['id']) { + if ($share['id'] === (int) $params['id']) { $shares = array('element' => $share); break; } } } + + // include also reshares in the lists. This means that the result + // will contain every user with access to the file. + if (isset($params['reshares']) && $params['reshares'] === true) { + $shares = self::addReshares($shares, $itemSource); + } + + if ($receivedFrom) { + $shares['received_from'] = $receivedFrom['uid_owner']; + $shares['received_from_displayname'] = \OCP\User::getDisplayName($receivedFrom['uid_owner']); + } } else { $shares = null; } @@ -94,6 +122,37 @@ class Api { } /** + * @brief add reshares to a array of shares + * @param array $shares array of shares + * @param int $itemSource item source ID + * @return array new shares array which includes reshares + */ + private static function addReshares($shares, $itemSource) { + + // if there are no shares than there are also no reshares + $firstShare = reset($shares); + if ($firstShare) { + $path = $firstShare['path']; + } else { + return $shares; + } + + $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `file_source`, `path` , `permissions`, `stime`, `expiration`, `token`, `storage`, `mail_send`, `mail_send`'; + $getReshares = \OC_DB::prepare('SELECT ' . $select . ' FROM `*PREFIX*share` INNER JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*share`.`file_source` = ? AND `*PREFIX*share`.`item_type` IN (\'file\', \'folder\') AND `uid_owner` != ?'); + $reshares = $getReshares->execute(array($itemSource, \OCP\User::getUser()))->fetchAll(); + + foreach ($reshares as $key => $reshare) { + if (isset($reshare['share_with']) && $reshare['share_with'] !== '') { + $reshares[$key]['share_with_displayname'] = \OCP\User::getDisplayName($reshare['share_with']); + } + // add correct path to the result + $reshares[$key]['path'] = $path; + } + + return array_merge($shares, $reshares); + } + + /** * @brief get share from all files in a given folder (non-recursive) * @param array $params contains 'path' to the folder * @return \OC_OCS_Result @@ -110,7 +169,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']); + $receivedFrom = \OCP\Share::getItemSharedWithBySource($itemType, $file['fileid']); + if ($receivedFrom) { + $share['received_from'] = $receivedFrom['uid_owner']; + $share['received_from_displayname'] = \OCP\User::getDisplayName($receivedFrom['uid_owner']); + } if ($share) { $share['filename'] = $file['name']; $result[] = $share; @@ -132,7 +198,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 +249,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 +479,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/lib/maintainer.php b/apps/files_sharing/lib/maintainer.php new file mode 100644 index 00000000000..bbb3268410e --- /dev/null +++ b/apps/files_sharing/lib/maintainer.php @@ -0,0 +1,44 @@ +<?php +/** + * ownCloud + * + * @author Morris Jobke + * @copyright 2013 Morris Jobke morris.jobke@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see <http://www.gnu.org/licenses/>. + */ + +namespace OCA\Files\Share; + +/** + * Maintains stuff around the sharing functionality + * + * for example: on disable of "allow links" it removes all link shares + */ + +class Maintainer { + + /** + * Keeps track of the "allow links" config setting + * and removes all link shares if the config option is set to "no" + * + * @param array with app, key, value as named values + */ + static public function configChangeHook($params) { + if($params['app'] === 'core' && $params['key'] === 'shareapi_allow_links' && $params['value'] === 'no') { + \OCP\Share::removeAllLinkShares(); + } + } + +} diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 8bdbc8524e6..3d02227cb08 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -234,8 +234,9 @@ if (isset($path)) { $folder->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); $folder->assign('usedSpacePercent', 0); $tmpl->assign('folder', $folder->fetchPage()); + $maxInputFileSize = OCP\Config::getSystemValue('maxZipInputSize', OCP\Util::computerFileSize('800 MB')); $allowZip = OCP\Config::getSystemValue('allowZipDownload', true) - && $totalSize <= OCP\Config::getSystemValue('maxZipInputSize', OCP\Util::computerFileSize('800 MB')); + && ( $maxInputFileSize === 0 || $totalSize <= $maxInputFileSize); $tmpl->assign('allowZipDownload', intval($allowZip)); $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&download&path=' . urlencode($getPath)); diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index 9452dd37707..44fc4d8b7b3 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -31,6 +31,7 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { const TEST_FILES_SHARING_API_USER1 = "test-share-user1"; const TEST_FILES_SHARING_API_USER2 = "test-share-user2"; + const TEST_FILES_SHARING_API_USER3 = "test-share-user3"; public $stateFilesEncryption; public $filename; @@ -54,6 +55,7 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { // create users self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1, true); self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, true); + self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3, true); } @@ -101,6 +103,7 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { // cleanup users \OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); \OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + \OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3); } /** @@ -197,9 +200,9 @@ 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']); + $_GET['path'] = $this->filename; - $result = Share\Api::getShare($params); + $result = Share\Api::getAllShares(array()); $this->assertTrue($result->succeeded()); @@ -217,6 +220,60 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase { * @medium * @depends testCreateShare */ + function testGetShareFromSourceWithReshares() { + + $fileInfo = $this->view->getFileInfo($this->filename); + + // share the file as user1 to user2 + \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + + // login as user2 and reshare the file to user3 + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + + \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3, 31); + + // login as user1 again + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + $_GET['path'] = $this->filename; + + $result = Share\Api::getAllShares(array()); + + $this->assertTrue($result->succeeded()); + + // test should return one share + $this->assertTrue(count($result->getData()) === 1); + + // now also ask for the reshares + $_GET['reshares'] = 'true'; + + $result = Share\Api::getAllShares(array()); + + $this->assertTrue($result->succeeded()); + + // now we should get two shares, the initial share and the reshare + $this->assertTrue(count($result->getData()) === 2); + + // unshare files again + + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + + \OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3); + + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + \OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + + } + + /** + * @medium + * @depends testCreateShare + */ function testGetShareFromId() { $fileInfo = $this->view->getFileInfo($this->filename); diff --git a/apps/files_versions/js/versions.js b/apps/files_versions/js/versions.js index 3f56a3eb698..d118456d62e 100644 --- a/apps/files_versions/js/versions.js +++ b/apps/files_versions/js/versions.js @@ -1,5 +1,12 @@ $(document).ready(function(){ + if ($('#isPublic').val()){ + // no versions actions in public mode + // beware of https://github.com/owncloud/core/issues/4545 + // as enabling this might hang Chrome + return; + } + if (typeof FileActions !== 'undefined') { // Add versions button to 'files/index.php' FileActions.register( diff --git a/apps/files_versions/l10n/tr.php b/apps/files_versions/l10n/tr.php index f2bc1e6c0aa..998c61e9270 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/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index be84aa2b647..b6759ab0ee8 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -76,6 +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 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/en_GB.php b/apps/user_ldap/l10n/en_GB.php index 3be8add83ec..731ddc58b8b 100644 --- a/apps/user_ldap/l10n/en_GB.php +++ b/apps/user_ldap/l10n/en_GB.php @@ -76,6 +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 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/et_EE.php b/apps/user_ldap/l10n/et_EE.php index 943ad0bc119..0c665f2d8aa 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -76,6 +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 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/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php index 904a93e1c2e..a9b5c99e6e2 100644 --- a/apps/user_ldap/l10n/ja_JP.php +++ b/apps/user_ldap/l10n/ja_JP.php @@ -76,6 +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 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/sv.php b/apps/user_ldap/l10n/sv.php index a5c060c717d..c081d70b950 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -76,6 +76,8 @@ $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 for Users:" => "UUID Attribut för Användare:", +"UUID Attribute for Groups:" => "UUID Attribut för Grupper:", "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_webdavauth/l10n/tr.php b/apps/user_webdavauth/l10n/tr.php index 907fb88b864..0ca8b0ad55f 100644 --- a/apps/user_webdavauth/l10n/tr.php +++ b/apps/user_webdavauth/l10n/tr.php @@ -1,5 +1,7 @@ <?php $TRANSLATIONS = array( -"WebDAV Authentication" => "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/autotest.cmd b/autotest.cmd index a511faef9c6..969e4a1ff38 100644 --- a/autotest.cmd +++ b/autotest.cmd @@ -6,7 +6,6 @@ :: :: @copyright 2012, 2013 Thomas Müller thomas.mueller@tmit.eu :: -@echo off set DATADIR=data-autotest set BASEDIR=%~dp0 @@ -119,7 +118,8 @@ goto:eof md coverage-html-%~1 php -f enable_all.php - php win32-phpunit.php --bootstrap bootstrap.php --configuration phpunit-autotest.xml --log-junit autotest-results-%~1.xml --coverage-clover autotest-clover-%~1.xml --coverage-html coverage-html-%~1 + call phpunit --bootstrap bootstrap.php --configuration phpunit-autotest.xml --log-junit autotest-results-%~1.xml --coverage-clover autotest-clover-%~1.xml --coverage-html coverage-html-%~1 + echo "Done with testing %~1 ..." cd %BASEDIR% goto:eof diff --git a/config/config.sample.php b/config/config.sample.php index 9a24c9364e0..54dbf3f7c33 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -129,6 +129,12 @@ $CONFIG = array( /* Are we connected to the internet or are we running in a closed network? */ "has_internet_connection" => true, +/* Check if the ownCloud WebDAV server is working correctly. Can be disabled if not needed in special situations*/ +"check_for_working_webdav" => true, + +/* Check if .htaccess protection of data is working correctly. Can be disabled if not needed in special situations*/ +"check_for_working_htaccess" => true, + /* Place to log to, can be owncloud and syslog (owncloud is log menu item in admin menu) */ "log_type" => "owncloud", diff --git a/core/command/db/generatechangescript.php b/core/command/db/generatechangescript.php new file mode 100644 index 00000000000..f971124cfdc --- /dev/null +++ b/core/command/db/generatechangescript.php @@ -0,0 +1,45 @@ +<?php +/** + * Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Core\Command\Db; + +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputArgument; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Input\InputOption; +use Symfony\Component\Console\Output\OutputInterface; + +class GenerateChangeScript extends Command { + protected function configure() { + $this + ->setName('db:generate-change-script') + ->setDescription('generates the change script from the current connected db to db_structure.xml') + ->addArgument( + 'schema-xml', + InputArgument::OPTIONAL, + 'the schema xml to be used as target schema', + \OC::$SERVERROOT . '/db_structure.xml' + ) + ; + } + + protected function execute(InputInterface $input, OutputInterface $output) { + + $file = $input->getArgument('schema-xml'); + + $schemaManager = new \OC\DB\MDB2SchemaManager(\OC_DB::getConnection()); + + try { + $result = $schemaManager->updateDbFromStructure($file, true); + $output->writeln($result); + } catch (\Exception $e) { + $output->writeln('Failed to update database structure ('.$e.')'); + } + + } +} diff --git a/core/css/styles.css b/core/css/styles.css index b919660779e..cb380bdcfbc 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -798,7 +798,8 @@ div.crumb { background: url('../img/breadcrumb.svg') no-repeat right center; height: 44px; } -div.crumb a { +div.crumb a, +div.crumb span { position: relative; top: 12px; padding: 14px 24px 14px 17px; diff --git a/core/js/jquery-showpassword.js b/core/js/jquery-showpassword.js index e1737643b48..a4373ec82bf 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 b7f7ff1ac15..c17e3fa2959 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-dialogs.js b/core/js/oc-dialogs.js index e5e9f6dbb7d..a9b40918ca7 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -234,7 +234,7 @@ var OCdialogs = { var getCroppedPreview = function(file) { var deferred = new $.Deferred(); // Only process image files. - var type = file.type.split('/').shift(); + var type = file.type && file.type.split('/').shift(); if (window.FileReader && type === 'image') { var reader = new FileReader(); reader.onload = function (e) { diff --git a/core/js/share.js b/core/js/share.js index 80e047db002..6ec15f01c1e 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -4,57 +4,76 @@ OC.Share={ SHARE_TYPE_LINK:3, SHARE_TYPE_EMAIL:4, itemShares:[], - statuses:[], + statuses:{}, droppedDown:false, + /** + * Loads ALL share statuses from server, stores them in OC.Share.statuses then + * calls OC.Share.updateIcons() to update the files "Share" icon to "Shared" + * according to their share status and share type. + */ loadIcons:function(itemType) { // Load all share icons $.get(OC.filePath('core', 'ajax', 'share.php'), { fetch: 'getItemsSharedStatuses', itemType: itemType }, function(result) { if (result && result.status === 'success') { + OC.Share.statuses = {}; $.each(result.data, function(item, data) { OC.Share.statuses[item] = data; - var hasLink = data['link']; - // Links override shared in terms of icon display - if (hasLink) { - var image = OC.imagePath('core', 'actions/public'); - } else { - var image = OC.imagePath('core', 'actions/shared'); - } - if (itemType != 'file' && itemType != 'folder') { - $('a.share[data-item="'+item+'"]').css('background', 'url('+image+') no-repeat center'); - } else { - var file = $('tr[data-id="'+item+'"]'); - if (file.length > 0) { - var action = $(file).find('.fileactions .action[data-action="Share"]'); - var img = action.find('img').attr('src', image); - action.addClass('permanent'); - action.html(' '+t('core', 'Shared')).prepend(img); - } else { - var dir = $('#dir').val(); - if (dir.length > 1) { - var last = ''; - var path = dir; - // Search for possible parent folders that are shared - while (path != last) { - if (path == data['path']) { - var actions = $('.fileactions .action[data-action="Share"]'); - $.each(actions, function(index, action) { - var img = $(action).find('img'); - if (img.attr('src') != OC.imagePath('core', 'actions/public')) { - img.attr('src', image); - $(action).addClass('permanent'); - $(action).html(' '+t('core', 'Shared')).prepend(img); - } - }); + }); + OC.Share.updateIcons(itemType); + } + }); + }, + /** + * Updates the files' "Share" icons according to the known + * sharing states stored in OC.Share.statuses. + * (not reloaded from server) + */ + updateIcons:function(itemType){ + var item; + for (item in OC.Share.statuses){ + var data = OC.Share.statuses[item]; + + var hasLink = data['link']; + // Links override shared in terms of icon display + if (hasLink) { + var image = OC.imagePath('core', 'actions/public'); + } else { + var image = OC.imagePath('core', 'actions/shared'); + } + if (itemType != 'file' && itemType != 'folder') { + $('a.share[data-item="'+item+'"]').css('background', 'url('+image+') no-repeat center'); + } else { + var file = $('tr[data-id="'+item+'"]'); + if (file.length > 0) { + var action = $(file).find('.fileactions .action[data-action="Share"]'); + var img = action.find('img').attr('src', image); + action.addClass('permanent'); + action.html(' '+t('core', 'Shared')).prepend(img); + } else { + var dir = $('#dir').val(); + if (dir.length > 1) { + var last = ''; + var path = dir; + // Search for possible parent folders that are shared + while (path != last) { + if (path == data['path']) { + var actions = $('.fileactions .action[data-action="Share"]'); + $.each(actions, function(index, action) { + var img = $(action).find('img'); + if (img.attr('src') != OC.imagePath('core', 'actions/public')) { + img.attr('src', image); + $(action).addClass('permanent'); + $(action).html(' '+t('core', 'Shared')).prepend(img); } - last = path; - path = OC.Share.dirname(path); - } + }); } + last = path; + path = OC.Share.dirname(path); } } - }); + } } - }); + } }, updateIcon:function(itemType, itemSource) { var shares = false; @@ -184,7 +203,19 @@ OC.Share={ html += '<input id="shareWith" type="text" placeholder="'+t('core', 'Share with')+'" />'; html += '<ul id="shareWithList">'; html += '</ul>'; - if (link) { + var linksAllowed = false; + $.ajax({ + type: 'GET', + url: OC.filePath('core', 'ajax', 'appconfig.php'), + data: { action:'getValue', app:'core', key:'shareapi_allow_links', defaultValue:'yes' }, + async: false, + success: function(result) { + if (result && result.status === 'success' && result.data === 'yes') { + linksAllowed = true; + } + } + }); + if (link && linksAllowed) { html += '<div id="link">'; html += '<input type="checkbox" name="linkCheckbox" id="linkCheckbox" value="1" /><label for="linkCheckbox">'+t('core', 'Share with link')+'</label>'; html += '<br />'; diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 7a34915d6ac..486723047bb 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "%s shared »%s« with you" => "%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", @@ -50,11 +51,15 @@ $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", +"(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", @@ -77,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", @@ -90,8 +96,12 @@ $TRANSLATIONS = array( "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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Aktualizace neprobÄ›hla úspěšnÄ›. Nahlaste prosÃm problém do <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">evidence chyb ownCloud</a>", "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", @@ -112,8 +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", +"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.", @@ -132,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,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hej ty tam,<br><br>jen ti chci dát vÄ›dÄ›t, že %s sdÃlel »%s« s tebou.<br><a href=\"%s\">Zobrazit!</a><br><br>", +"The share will expire on %s.<br><br>" => "SdÃlenà expiruje %s.<br><br>", "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/de.php b/core/l10n/de.php index f70bfae0f94..d6cc8752b03 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -96,8 +96,12 @@ $TRANSLATIONS = array( "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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Das Update ist fehlgeschlagen. Bitte melde dieses Problem an die <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud Community</a>.", "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", @@ -118,6 +122,13 @@ $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", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index f11dbd36462..e373aee460d 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -96,8 +96,12 @@ $TRANSLATIONS = array( "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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud Community</a>.", "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", @@ -118,6 +122,13 @@ $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", diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index 389933044e0..575abe23f71 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -96,8 +96,12 @@ $TRANSLATIONS = array( "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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>.", "The update was successful. Redirecting you to ownCloud now." => "The update was successful. Redirecting you to ownCloud now.", "%s password reset" => "%s password reset", @@ -118,6 +122,13 @@ $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", "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", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 7bc6d2a7437..6ccaf930af8 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -96,8 +96,12 @@ $TRANSLATIONS = array( "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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Uuendus ebaõnnestus. Palun teavita probleemidest <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud kogukonda</a>.", "The update was successful. Redirecting you to ownCloud now." => "Uuendus oli edukas. Kohe suunatakse Sind ownCloudi.", "%s password reset" => "%s parooli lähtestus", @@ -118,6 +122,13 @@ $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", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index fee88e1c78f..85b3ab3a14a 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -92,6 +92,7 @@ $TRANSLATIONS = array( "Warning" => "Varoitus", "Delete" => "Poista", "Add" => "Lisää", +"Edit tags" => "Muokkaa tunnisteita", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Päivitys epäonnistui. Ilmoita ongelmasta <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud-yhteisölle</a>.", "The update was successful. Redirecting you to ownCloud now." => "Päivitys onnistui. Selain ohjautuu nyt ownCloudiisi.", "%s password reset" => "%s salasanan nollaus", @@ -111,6 +112,8 @@ $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", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index c8dbb9e9c55..b864294d590 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -98,6 +98,9 @@ $TRANSLATIONS = array( "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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "A actualización non foi satisfactoria, informe deste problema á <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">comunidade de ownCloud</a>.", "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", @@ -118,6 +121,9 @@ $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", diff --git a/core/l10n/it.php b/core/l10n/it.php index 1cb1a39c743..68bd6ff78ca 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -96,8 +96,11 @@ $TRANSLATIONS = array( "Email sent" => "Messaggio inviato", "Warning" => "Avviso", "The object type is not specified." => "Il tipo di oggetto non è specificato.", +"Enter new" => "Inserisci nuovo", "Delete" => "Elimina", "Add" => "Aggiungi", +"Edit tags" => "Modifica tag", +"No tags selected for deletion." => "Nessuna tag selezionata per l'eliminazione.", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "L'aggiornamento non è riuscito. Segnala il problema alla <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">comunità di ownCloud</a>.", "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", @@ -118,6 +121,7 @@ $TRANSLATIONS = array( "Apps" => "Applicazioni", "Admin" => "Admin", "Help" => "Aiuto", +"Error loading tags" => "Errore di caricamento tag", "Access forbidden" => "Accesso negato", "Cloud not found" => "Nuvola non trovata", "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", @@ -147,6 +151,8 @@ $TRANSLATIONS = array( "Automatic logon rejected!" => "Accesso automatico rifiutato.", "If you did not change your password recently, your account may be compromised!" => "Se non hai cambiato la password recentemente, il tuo account potrebbe essere compromesso.", "Please change your password to secure your account again." => "Cambia la password per rendere nuovamente sicuro il tuo account.", +"Server side authentication failed!" => "Autenticazione lato server faillita!", +"Please contact your administrator." => "Per favore contatta l'amministratore di sistema.", "Lost your password?" => "Hai perso la password?", "remember" => "ricorda", "Log in" => "Accedi", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 00587e85301..b0c519e3a1c 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "%s shared »%s« with you" => "%s㌠ã‚ãªãŸã¨ »%s«を共有ã—ã¾ã—ãŸ", +"Couldn't send mail to following users: %s " => "次ã®ãƒ¦ãƒ¼ã‚¶ã«ãƒ¡ãƒ¼ãƒ«ã‚’é€ä¿¡ã§ãã¾ã›ã‚“ã§ã—ãŸ: %s", "group" => "グループ", "Turned on maintenance mode" => "メンテナンスモードãŒã‚ªãƒ³ã«ãªã‚Šã¾ã—ãŸ", "Turned off maintenance mode" => "メンテナンスモードãŒã‚ªãƒ•ã«ãªã‚Šã¾ã—ãŸ", @@ -81,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" => "作æˆ", @@ -94,8 +96,11 @@ $TRANSLATIONS = array( "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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "æ›´æ–°ã«æˆåŠŸã—ã¾ã—ãŸã€‚ã“ã®å•é¡Œã‚’ <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a> ã«ãƒ¬ãƒãƒ¼ãƒˆã—ã¦ãã ã•ã„。", "The update was successful. Redirecting you to ownCloud now." => "æ›´æ–°ã«æˆåŠŸã—ã¾ã—ãŸã€‚今ã™ãownCloudã«ãƒªãƒ€ã‚¤ãƒ¬ã‚¯ãƒˆã—ã¾ã™ã€‚", "%s password reset" => "%s パスワードリセット", @@ -116,8 +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" => "見ã¤ã‹ã‚Šã¾ã›ã‚“", +"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をアップデートã—ã¦ãã ã•ã„。", @@ -136,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.<br><br>" => "共有㯠%s ã§æœ‰åŠ¹æœŸé™ãŒåˆ‡ã‚Œã¾ã™ã€‚<br><br>", "Updating ownCloud to version %s, this may take a while." => "ownCloud ã‚’ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %s ã«æ›´æ–°ã—ã¦ã„ã¾ã™ã€ã—ã°ã‚‰ããŠå¾…ã¡ä¸‹ã•ã„。" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 675471f88e0..5e99d831132 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -96,8 +96,12 @@ $TRANSLATIONS = array( "Email sent" => "E-mail verzonden", "Warning" => "Waarschuwing", "The object type is not specified." => "Het object type is niet gespecificeerd.", +"Enter new" => "Opgeven nieuw", "Delete" => "Verwijder", "Add" => "Toevoegen", +"Edit tags" => "Bewerken tags", +"Error loading dialog template: {error}" => "Fout bij laden dialoog sjabloon: {error}", +"No tags selected for deletion." => "Geen tags geselecteerd voor verwijdering.", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "De update is niet geslaagd. Meld dit probleem aan bij de <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>.", "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", @@ -118,6 +122,13 @@ $TRANSLATIONS = array( "Apps" => "Apps", "Admin" => "Beheerder", "Help" => "Help", +"Error loading tags" => "Fout bij laden tags", +"Tag already exists" => "Tag bestaat al", +"Error deleting tag(s)" => "Fout bij verwijderen tag(s)", +"Error tagging" => "Fout bij taggen", +"Error untagging" => "Fout bij ont-taggen", +"Error favoriting" => "Fout bij favoriet maken", +"Error unfavoriting" => "Fout bij verwijderen favorietstatus", "Access forbidden" => "Toegang verboden", "Cloud not found" => "Cloud niet gevonden", "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", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index d790b86766b..8c000d523d9 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -96,8 +96,12 @@ $TRANSLATIONS = array( "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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "A atualização falhou. Por favor, relate este problema para a <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">comunidade ownCloud</a>.", "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", @@ -118,6 +122,13 @@ $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", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index c14cb718749..b9c1d59c91f 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -50,6 +50,9 @@ $TRANSLATIONS = array( "Error loading message template: {error}" => "Erro ao carregar o template: {error}", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Cancelar", +"Continue" => "Continuar", +"(all selected)" => "(todos seleccionados)", +"({count} selected)" => "({count} seleccionados)", "Shared" => "Partilhado", "Share" => "Partilhar", "Error" => "Erro", @@ -72,6 +75,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Não é permitido partilhar de novo", "Shared in {item} with {user}" => "Partilhado em {item} com {user}", "Unshare" => "Deixar de partilhar", +"notify user by email" => "notificar utilizador por correio electrónico", "can edit" => "pode editar", "access control" => "Controlo de acesso", "create" => "criar", @@ -127,6 +131,7 @@ $TRANSLATIONS = array( "Database tablespace" => "Tablespace da base de dados", "Database host" => "Anfitrião da base de dados", "Finish setup" => "Acabar instalação", +"Finishing …" => "A terminar...", "%s is available. Get more information on how to update." => "%s está disponÃvel. Tenha mais informações como actualizar.", "Log out" => "Sair", "Automatic logon rejected!" => "Login automático rejeitado!", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 239b9495ef3..e89ab9d85e8 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -96,6 +96,7 @@ $TRANSLATIONS = array( "Email sent" => "E-post skickat", "Warning" => "Varning", "The object type is not specified." => "Objekttypen är inte specificerad.", +"Enter new" => "Skriv nytt", "Delete" => "Radera", "Add" => "Lägg till", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Uppdateringen misslyckades. Rapportera detta problem till <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud Community</a>.", @@ -118,6 +119,7 @@ $TRANSLATIONS = array( "Apps" => "Program", "Admin" => "Admin", "Help" => "Hjälp", +"Error favoriting" => "Fel favorisering", "Access forbidden" => "Ã…tkomst förbjuden", "Cloud not found" => "Hittade inget moln", "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", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index c6787cc4fd6..f10f3cf25b5 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "%s shared »%s« with you" => "%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,8 +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ı ...", +"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ı", @@ -42,11 +46,20 @@ $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", +"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", @@ -69,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", @@ -82,8 +96,12 @@ $TRANSLATIONS = array( "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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Güncelleme baÅŸarılı olmadı. Lütfen bu hatayı bildirin <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>.", "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", @@ -104,8 +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ı", +"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.", @@ -124,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,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Merhaba, <br><br> %s sizinle »%s« paylaşımında bulundu.<br><a href=\"%s\">Paylaşımı gör!</a><br><br>Ä°yi günler!", +"The share will expire on %s.<br><br>" => "Bu paylaşım %s tarihinde dolacaktır.<br><br>", "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/register_command.php b/core/register_command.php index 1eed347b7b5..683e7ae1833 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -6,4 +6,6 @@ * See the COPYING-README file. */ +/** @var $application Symfony\Component\Console\Application */ $application->add(new OC\Core\Command\Status); +$application->add(new OC\Core\Command\Db\GenerateChangeScript()); diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index d30313a67cc..9e1d8022ecb 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -8,9 +8,10 @@ <head data-user="<?php p($_['user_uid']); ?>" data-requesttoken="<?php p($_['requesttoken']); ?>"> <title> - <?php p(!empty($_['application'])?$_['application'].' | ':''); - p($theme->getTitle()); - p(trim($_['user_displayname']) != '' ?' ('.$_['user_displayname'].') ':'') ?> + <?php + p(!empty($_['application'])?$_['application'].' - ':''); + p($theme->getTitle()); + ?> </title> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> diff --git a/l10n/ach/lib.po b/l10n/ach/lib.po index efa6747b0fb..7c60d49cd4e 100644 --- a/l10n/ach/lib.po +++ b/l10n/ach/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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,321 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:239 +#: private/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:250 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:359 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:372 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:383 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:395 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:408 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:152 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:173 private/setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/ady/lib.po b/l10n/ady/lib.po index 94fa2ed8df7..1160c589d35 100644 --- a/l10n/ady/lib.po +++ b/l10n/ady/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-07 12:17-0400\n" -"PO-Revision-Date: 2013-10-07 15:03+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: ady\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 "" -#: 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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index f9ccab1475b..d8b3b33ffd0 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: af_ZA\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 "" -#: 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 "Hulp" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Persoonlik" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Instellings" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Gebruikers" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 59fa89f2005..066dc5e2c44 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -157,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] "" @@ -171,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] "" @@ -181,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] "" @@ -199,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] "" @@ -213,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 "سنة مضت" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 62f4a5fc370..71577d5502d 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: Meesh <M_almohimeed@yahoo.com>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -137,7 +137,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 "قيد الانتظار" @@ -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 لتØميلها" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index a20b34259f7..2480f78e0de 100644 --- a/l10n/ar/files_external.po +++ b/l10n/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-09 02:00+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:42+0000\n" "Last-Translator: Meesh <M_almohimeed@yahoo.com>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 3c6544d35f9..eb3bd65b797 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "خطأ" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "لا يوجد شيء هنا. سلة المهملات خاليه." -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "اسم" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "استعيد" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "تم الØØ°Ù" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "إلغاء" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 3e6132a904a..39e3550ee44 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: 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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 3f8379851ca..0260283e0e3 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "اللغة" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "ساعد ÙÙŠ الترجمه" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/be/lib.po b/l10n/be/lib.po index cba5a16eb98..f24674cd709 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -17,270 +17,278 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:239 +#: private/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:250 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:359 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:372 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:383 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:395 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:408 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:152 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:173 private/setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -288,7 +296,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -296,15 +304,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -312,11 +320,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -324,19 +332,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index f5ad0a1ac5a..64538986e52 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -156,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 "поÑледните години" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 8b1fa9adbde..6137f659db8 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,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 "Чакащо" @@ -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] "" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 9909177f6f1..327f471d510 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 3dad233d5a9..407955aa6cd 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Грешка" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "ÐÑма нищо. Кофата е празна!" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "Име" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "ВъзтановÑване" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Изтрито" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Изтриване" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 9dd30883bc5..11ce55527e5 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,47 @@ msgstr "" "Language: bg_BG\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 "" -#: 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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index c5b133ff9b0..31b3564b5f5 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "Език" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Помогнете Ñ Ð¿Ñ€ÐµÐ²Ð¾Ð´Ð°" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/core.po b/l10n/bn_BD/core.po index 27a0eee4fd8..5645d1e3f4f 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -156,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 "বছর পূরà§à¦¬à§‡" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 326272753af..c231023275b 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,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 "মà§à¦²à¦¤à§à¦¬à¦¿" @@ -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] "" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index d063009d63f..7417506a694 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 4161e8bfbd2..a6bf6a35034 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "সমসà§à¦¯à¦¾" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "রাম" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "মà§à¦›à§‡" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index ddbd1f73279..52c5cf92c4d 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: bn_BD\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 "" -#: 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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 3646451dad3..7171f7d0044 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "à¦à¦¾à¦·à¦¾" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "অনà§à¦¬à¦¾à¦¦ করতে সহায়তা করà§à¦¨" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/bs/lib.po b/l10n/bs/lib.po index 721908ee79a..cae0b70cc31 100644 --- a/l10n/bs/lib.po +++ b/l10n/bs/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -17,322 +17,325 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:239 +#: private/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:250 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:359 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:372 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:383 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:395 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:408 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:152 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:173 private/setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 3cd33c5a98d..2b5c36a6262 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -158,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" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 1e1773a9976..8b61a8454ae 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -137,7 +137,7 @@ msgstr "Esborra permanentment" 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" @@ -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" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 66a1a76942d..e4391cf5315 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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>AvÃs:</b> \"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 "" "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "<b>AvÃs:</b> 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 "" "<b>Warning:</b> 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_trashbin.po b/l10n/ca/files_trashbin.po index 38bb538e561..53cf314a0fe 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Error" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Nom" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Recupera" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Eliminat" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Esborra" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 54df775184f..00f9fa009c3 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/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: rogerc\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,47 @@ msgstr "" "Language: ca\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 "L'aplicació \"%s\" no es pot instal·lar perquè no és compatible amb aquesta versió d'ownCloud." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "No heu especificat cap nom d'aplicació" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Ajuda" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Personal" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Configuració" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Usuaris" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administració" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ha fallat l'actualització \"%s\"." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Les imatges de perfil personals encara no funcionen amb encriptació" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Tipus de fitxer desconegut" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Imatge no và lida" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 738583e7b61..2a227d7da21 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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -529,34 +529,34 @@ msgstr "Selecciona com a imatge de perfil" msgid "Language" msgstr "Idioma" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Ajudeu-nos amb la traducció" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Useu aquesta adreça per <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">accedir als fitxers via WebDAV</a>" -#: 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/cs_CZ/core.po b/l10n/cs_CZ/core.po index d0e9f4d7ffd..928dd607609 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 20:10+0000\n" +"Last-Translator: pstast <petr@stastny.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -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" @@ -162,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" @@ -245,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" @@ -261,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" @@ -273,15 +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 "" +msgstr "Chyba pÅ™i nahrávánà šablony existence souboru" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" @@ -374,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" @@ -430,7 +430,7 @@ msgstr "Nenà urÄen typ objektu." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Zadat nový" #: js/tags.js:27 msgid "Delete" @@ -442,15 +442,15 @@ msgstr "PÅ™idat" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Editovat Å¡tÃtky" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Chyba pÅ™i naÄÃtánà šablony dialogu: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Žádné Å¡tÃtky nebyly vybrány ke smazánÃ." #: js/update.js:17 msgid "" @@ -546,31 +546,31 @@ msgstr "NápovÄ›da" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Chyba pÅ™i naÄÃtánà štÃtků" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Å tÃtek již existuje" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Chyba pÅ™i mazánà štÃtku(ů)" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Chyba pÅ™i oznaÄovánà štÃtkem" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Chyba pÅ™i odznaÄovánà štÃtků" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Chyba pÅ™i oznaÄovánà jako oblÃbené" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Chyba pÅ™i odznaÄovánà jako oblÃbené" #: templates/403.php:12 msgid "Access forbidden" @@ -588,18 +588,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "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" #: templates/altmail.php:4 #, php-format msgid "" "The share will expire on %s.\n" "\n" -msgstr "" +msgstr "SdÃlenà expiruje %s.\n\n" #: templates/altmail.php:6 templates/mail.php:19 msgid "Cheers!" -msgstr "" +msgstr "AÅ¥ sloužÃ!" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -688,7 +688,7 @@ msgstr "DokonÄit nastavenÃ" #: templates/installation.php:184 msgid "Finishing …" -msgstr "" +msgstr "DokonÄuji..." #: templates/layout.user.php:42 #, php-format @@ -715,11 +715,11 @@ msgstr "Změňte, prosÃm, své heslo pro opÄ›tovné zabezpeÄenà VaÅ¡eho úÄt #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Autentizace na serveru selhala!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Kontaktujte prosÃm vaÅ¡eho správce." #: templates/login.php:38 msgid "Lost your password?" @@ -742,12 +742,12 @@ msgstr "Alternativnà pÅ™ihlášenÃ" msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " "href=\"%s\">View it!</a><br><br>" -msgstr "" +msgstr "Hej ty tam,<br><br>jen ti chci dát vÄ›dÄ›t, že %s sdÃlel »%s« s tebou.<br><a href=\"%s\">Zobrazit!</a><br><br>" #: templates/mail.php:17 #, php-format msgid "The share will expire on %s.<br><br>" -msgstr "" +msgstr "SdÃlenà expiruje %s.<br><br>" #: templates/update.php:3 #, php-format diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index a9b67e88c48..45c1f8f3529 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 20:10+0000\n" +"Last-Translator: pstast <petr@stastny.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,11 +81,11 @@ msgstr "Nedostatek dostupného úložného prostoru" #: 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: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:165 msgid "Invalid directory." @@ -97,7 +97,7 @@ msgstr "Soubory" #: 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:235 msgid "Not enough space available" @@ -109,7 +109,7 @@ msgstr "OdesÃlánà zruÅ¡eno." #: 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:426 msgid "" @@ -140,7 +140,7 @@ msgstr "Trvale odstranit" 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é" @@ -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 "" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 7b8d95e74f4..ae6017cb25f 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 21:35+0000\n" +"Last-Translator: pstast <petr@stastny.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,7 +63,7 @@ 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:15 msgid "" @@ -77,13 +77,13 @@ msgstr "Váš soukromý klÃÄ nenà platný! PravdÄ›podobnÄ› bylo heslo zmÄ›nÄ› msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +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 "" +msgstr "Neznámá chyba, zkontrolujte vaÅ¡e systémová nastavenà nebo kontaktujte vaÅ¡eho správce" #: hooks/hooks.php:53 msgid "Missing requirements." @@ -106,7 +106,7 @@ 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" @@ -127,7 +127,7 @@ msgstr "Heslo klÃÄe pro obnovu" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Zopakujte heslo klÃÄe pro obnovu" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" @@ -151,7 +151,7 @@ msgstr "Nové heslo klÃÄe pro obnovu" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Zopakujte nové heslo klÃÄe pro obnovu" #: templates/settings-admin.php:58 msgid "Change Password" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index dc83c75b232..2efdf764fc4 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 <petr@stastny.eu>\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 2550750494a..9d08a88d233 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/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-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:26+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 21:35+0000\n" +"Last-Translator: pstast <petr@stastny.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "Toto sdÃlenà je chránÄ›no heslem" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index acce0366259..3d091b09794 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -37,23 +37,23 @@ msgstr "Chyba" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Název" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Obnovit" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Smazáno" -#: templates/index.php:37 templates/index.php:38 +#: 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 56adeee4759..c8dfc1f8e6e 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" -"Last-Translator: pstast <petr@stastny.eu>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,47 @@ 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\"." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Vlastnà profilové obrázky zatÃm nefungujà v kombinaci se Å¡ifrovánÃm" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Neznámý typ souboru" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Chybný obrázek" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index b488beb4550..6aaddb6b274 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 <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 20:10+0000\n" +"Last-Translator: pstast <petr@stastny.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -501,7 +501,7 @@ msgstr "Pro povolenà obnovy hesla vyplňte e-mailovou adresu" #: templates/personal.php:86 msgid "Profile picture" -msgstr "Profilová fotka" +msgstr "Profilový obrázek" #: templates/personal.php:90 msgid "Upload new" @@ -531,34 +531,34 @@ msgstr "Vybrat jako profilový obrázek" msgid "Language" msgstr "Jazyk" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Pomoci s pÅ™ekladem" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Použijte <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">tuto adresu pro pÅ™Ãstup k vaÅ¡im souborům pÅ™es WebDAV</a>" -#: 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 20c66f1e240..80a57705dd3 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 21:35+0000\n" +"Last-Translator: pstast <petr@stastny.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -373,11 +373,11 @@ msgstr "Ve výchozÃm nastavenà je UUID atribut nalezen automaticky. UUID atrib #: templates/settings.php:103 msgid "UUID Attribute for Users:" -msgstr "" +msgstr "UUID atribut pro uživatele:" #: templates/settings.php:104 msgid "UUID Attribute for Groups:" -msgstr "" +msgstr "UUID atribut pro skupiny:" #: templates/settings.php:105 msgid "Username-LDAP User Mapping" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index f04dfcb3d05..4f77fd1aede 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -157,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] "" @@ -169,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] "" @@ -177,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] "" @@ -193,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] "" @@ -205,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" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 69921067566..09633f32809 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,7 @@ msgstr "Dileu'n barhaol" 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" @@ -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] "" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 6433a79beda..cae86934d2b 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 <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/cy_GB/files_trashbin.po index 8013ebc0faf..93ee97f20a5 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "Gwall" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Enw" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Adfer" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Wedi dileu" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Dileu" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 40e5844db99..723c008a823 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\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 "Cymorth" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Personol" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Gosodiadau" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Defnyddwyr" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Gweinyddu" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 9c377511379..24476cf9e10 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/da/core.po b/l10n/da/core.po index 99fcb6e695b..0486a9f5298 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -160,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" diff --git a/l10n/da/files.po b/l10n/da/files.po index 730b04fdd89..5b2b65e9147 100644 --- a/l10n/da/files.po +++ b/l10n/da/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -138,7 +138,7 @@ msgstr "Slet permanent" 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" @@ -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" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 22fc3c7b824..34a1ac95f42 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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b> Advarsel: </ b> \"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 "" "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "<b> Advarsel: </ b> 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 "" "<b>Warning:</b> 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_trashbin.po b/l10n/da/files_trashbin.po index 1b3a070ceda..86fb4c032b6 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -37,23 +37,23 @@ msgstr "Fejl" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Navn" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Gendan" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Slettet" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Slet" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 14c6ec889b6..91b521e1d9d 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,47 @@ msgstr "" "Language: da\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 "App'en \"%s\" kan ikke blive installeret, da den ikke er kompatibel med denne version af ownCloud." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Intet app-navn 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 "Indstillinger" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Brugere" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgradering af \"%s\" fejlede" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Personligt profilbillede virker endnu ikke sammen med kryptering" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Ukendt filtype" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Ugyldigt billede" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 9a2698240fa..a528597744c 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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -530,34 +530,34 @@ msgstr "Vælg som profilbillede" msgid "Language" msgstr "Sprog" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Hjælp med oversættelsen" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Anvend denne adresse til at <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">tilgÃ¥ dine filer via WebDAV</a>" -#: 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/de/core.po b/l10n/de/core.po index b3fb83b237b..023b9010105 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <mario_siegmann@web.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,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" @@ -427,7 +427,7 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Unbekannter Fehler, bitte prüfe Deine Systemeinstellungen oder kontaktiere Deinen Administrator" #: js/tags.js:27 msgid "Delete" @@ -439,15 +439,15 @@ msgstr "Hinzufügen" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Schlagwörter bearbeiten" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Fehler beim Laden der Gesprächsvorlage: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Es wurden keine Schlagwörter zum Löschen ausgewählt." #: js/update.js:17 msgid "" @@ -543,31 +543,31 @@ msgstr "Hilfe" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Fehler beim Laden der Schlagwörter" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Schlagwort ist bereits vorhanden" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Fehler beim Löschen des Schlagwortes bzw. der Schlagwörter" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Fehler beim Hinzufügen der Schlagwörter" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Fehler beim Entfernen der Schlagwörter" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Fehler beim Hinzufügen zu den Favoriten" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Fehler beim Entfernen aus den Favoriten" #: templates/403.php:12 msgid "Access forbidden" diff --git a/l10n/de/files.po b/l10n/de/files.po index c2e394a7cea..ba467e4d5af 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <mario_siegmann@web.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -141,7 +141,7 @@ msgstr "Endgültig löschen" 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" @@ -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" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 27b33b926e1..f3f5968f63d 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <mario_siegmann@web.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -79,13 +79,13 @@ msgstr "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von auße msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +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 "" +msgstr "Unbekannter Fehler, bitte prüfe Deine Systemeinstellungen oder kontaktiere Deinen Administrator" #: hooks/hooks.php:53 msgid "Missing requirements." diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index e2285c753a0..1511e55e455 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 <blobbyjj@ymail.com>\n" -"Language-Team: German <translations@owncloud.org>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Warnung:</b> \"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 "" "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "<b>Warnung::</b> 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 "" "<b>Warning:</b> 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_trashbin.po b/l10n/de/files_trashbin.po index c0cb7c8ca6c..ccb1112cd42 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Fehler" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Name" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "gelöscht" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index cef3adec633..b00ec24603c 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -11,61 +11,57 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "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: Mario Siegmann <mario_siegmann@web.de>\n" -"Language-Team: German <translations@owncloud.org>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\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 "Applikation \"%s\" kann nicht installiert werden, da sie mit dieser ownCloud Version nicht kompatibel ist." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Es wurde kein Applikation-Name angegeben" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Hilfe" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Persönlich" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Einstellungen" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Benutzer" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administration" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Individuelle Profilbilder werden noch nicht von der Verschlüsselung unterstützt" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Unbekannter Dateityp" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Ungültiges Bild" @@ -299,13 +295,13 @@ msgstr "Gerade eben" #: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" +msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" #: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" #: private/template/functions.php:125 @@ -319,7 +315,7 @@ msgstr "Gestern" #: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" #: private/template/functions.php:130 @@ -329,7 +325,7 @@ msgstr "Letzten Monat" #: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" #: private/template/functions.php:133 diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 9ba08c05450..be8b6f27a96 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -8,14 +8,15 @@ # ninov <ninovdl@ymail.com>, 2013 # Pwnicorn <pwnicorndev@gmail.com>, 2013 # Mirodin <blobbyjj@ymail.com>, 2013 +# kabum <uu.kabum@gmail.com>, 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 20:40+0000\n" -"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" -"Language-Team: German <translations@owncloud.org>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 14:12+0000\n" +"Last-Translator: kabum <uu.kabum@gmail.com>\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 +163,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 +187,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" @@ -245,7 +246,7 @@ msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil d #: templates/admin.php:33 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." -msgstr "Bitte überprüfe die <a href=\"%s\">Instalationsanleitungen</a>." +msgstr "Bitte überprüfe die <a href=\"%s\">Installationsanleitungen</a>." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -389,11 +390,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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -532,34 +533,34 @@ msgstr "Als Profilbild wählen" msgid "Language" msgstr "Sprache" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Hilf bei der Ãœbersetzung" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Verwenden Sie diese Adresse, um <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">via WebDAV auf Ihre Dateien zuzugreifen</a>" -#: 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_AT/lib.po b/l10n/de_AT/lib.po index 7f3e0eafd04..c08f173a6cb 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,321 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/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:250 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:359 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:372 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:383 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:395 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:408 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:152 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:173 private/setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index 17e6ee20121..007829ee63e 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+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 <owncloud-bot@tmit.eu>\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -165,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" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index dfd47931e4c..7252496e2fa 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr "Endgültig löschen" 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" @@ -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" diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po index f9b2141702e..23c929dc5b8 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 <work@bgstyle.de>\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_trashbin.po b/l10n/de_CH/files_trashbin.po index 0f68a05e2a1..c82e4771aae 100644 --- a/l10n/de_CH/files_trashbin.po +++ b/l10n/de_CH/files_trashbin.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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -38,23 +38,23 @@ msgstr "Fehler" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Name" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Gelöscht" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index 0125f27f4fe..6da6000fe91 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.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-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -21,51 +21,47 @@ msgstr "" "Language: de_CH\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 "Anwendung \"%s\" kann nicht installiert werden, da sie mit dieser Version von ownCloud nicht kompatibel ist." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Kein App-Name spezifiziert" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Hilfe" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Persönlich" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Einstellungen" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Benutzer" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administrator" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index cbd581f01c2..c55e55e358d 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -536,34 +536,34 @@ msgstr "" msgid "Language" msgstr "Sprache" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Helfen Sie bei der Ãœbersetzung" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Verwenden Sie diese Adresse, um <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">auf ihre Dateien per WebDAV zuzugreifen</a>." -#: 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/core.po b/l10n/de_DE/core.po index e35a1c50534..38bbd0c61c8 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <mario_siegmann@web.de>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,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" @@ -427,7 +427,7 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "c" #: js/tags.js:27 msgid "Delete" @@ -439,15 +439,15 @@ msgstr "Hinzufügen" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Schlagwörter bearbeiten" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Fehler beim Laden der Gesprächsvorlage: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Es wurden keine Schlagwörter zum Löschen ausgewählt." #: js/update.js:17 msgid "" @@ -543,31 +543,31 @@ msgstr "Hilfe" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Fehler beim Laden der Schlagwörter" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Schlagwort ist bereits vorhanden" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Fehler beim Löschen des Schlagwortes bzw. der Schlagwörter" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Fehler beim Hinzufügen der Schlagwörter" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Fehler beim Entfernen der Schlagwörter" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Fehler beim Hinzufügen zu den Favoriten" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Fehler beim Entfernen aus den Favoriten" #: templates/403.php:12 msgid "Access forbidden" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 19558af55ba..f89297d6ef4 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <mario_siegmann@web.de>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgstr "Endgültig löschen" 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" @@ -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" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index bce51625906..3c30142df2d 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <mario_siegmann@web.de>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -76,13 +76,13 @@ msgstr "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außer msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +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 "" +msgstr "Unbekannter Fehler, bitte prüfen Sie die Systemeinstellungen oder kontaktieren Sie Ihren Administrator" #: hooks/hooks.php:53 msgid "Missing requirements." diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 7dc5677d12e..41e7e29070c 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 <blobbyjj@ymail.com>\n" -"Language-Team: German (Germany) <translations@owncloud.org>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Warnung:</b> \"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 "" "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "<b>Warnung::</b> 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 "" "<b>Warning:</b> 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_trashbin.po b/l10n/de_DE/files_trashbin.po index 3b16695d144..edcb34d7ef7 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -37,23 +37,23 @@ msgstr "Fehler" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Name" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Gelöscht" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 18a5ff6232a..fceb06783fa 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -10,61 +10,57 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "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: Mario Siegmann <mario_siegmann@web.de>\n" -"Language-Team: German (Germany) <translations@owncloud.org>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de_DE\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 "Applikation \"%s\" kann nicht installiert werden, da sie mit dieser ownCloud Version nicht kompatibel ist." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Es wurde kein Applikation-Name angegeben" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Hilfe" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Persönlich" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Einstellungen" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Benutzer" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administrator" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Individuelle Profilbilder werden noch nicht von der Verschlüsselung unterstützt" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Unbekannter Dateityp" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Ungültiges Bild" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 31925d001a8..05015311157 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 <mario_siegmann@web.de>\n" -"Language-Team: German (Germany) <translations@owncloud.org>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -534,34 +534,34 @@ msgstr "Als Profilbild wählen" msgid "Language" msgstr "Sprache" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Helfen Sie bei der Ãœbersetzung" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Verwenden Sie diese Adresse, um <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">auf ihre Dateien per WebDAV zuzugreifen</a>." -#: 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/el/core.po b/l10n/el/core.po index aa616baff2e..248716bf5bc 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -163,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 "χÏόνια Ï€Ïιν" diff --git a/l10n/el/files.po b/l10n/el/files.po index 6a607e5667b..994632f182e 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -139,7 +139,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 "ΕκκÏεμεί" @@ -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 αÏχείου" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index dc88fc6766c..be819a840e1 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 <spanish.katerina@gmail.com>\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_trashbin.po b/l10n/el/files_trashbin.po index f07c85f81cf..2e2a8c4b1d1 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Σφάλμα" msgid "restored" msgstr "Îγινε επαναφοÏά" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Δεν υπάÏχει τίποτα εδώ. Ο κάδος σας είναι άδειος!" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "Όνομα" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "ΕπαναφοÏά" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "ΔιαγÏάφηκε" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "ΔιαγÏαφή" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 21de2bf03be..4decc76e4ec 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,47 @@ msgstr "" "Language: el\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 "" -#: 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 "Αποτυχία αναβάθμισης του \"%s\"." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 550b8adf00b..32eb73aaa7c 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -533,34 +533,34 @@ msgstr "Επιλογή εικόνας Ï€Ïοφίλ" msgid "Language" msgstr "Γλώσσα" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Βοηθήστε στη μετάφÏαση" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "ΧÏήση αυτής της διεÏθυνσης για <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">Ï€Ïόσβαση των αÏχείων σας μÎσω WebDAV</a>" -#: 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/en@pirate/lib.po b/l10n/en@pirate/lib.po index 53ee952f616..e6812184889 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,321 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/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:250 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:359 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:372 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:383 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:395 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:408 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "web services under your control" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:152 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:173 private/setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index 4459b0ba23f..fd3396cce3a 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 13:00+0000\n" +"Last-Translator: mnestis <transifex@mnestis.net>\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" @@ -157,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" @@ -420,7 +420,7 @@ msgstr "The object type is not specified." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Enter new" #: js/tags.js:27 msgid "Delete" @@ -432,15 +432,15 @@ msgstr "Add" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Edit tags" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Error loading dialog template: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "No tags selected for deletion." #: js/update.js:17 msgid "" @@ -536,31 +536,31 @@ msgstr "Help" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Error loading tags" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Tag already exists" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Error deleting tag(s)" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Error tagging" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Error untagging" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Error favouriting" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Error unfavouriting" #: templates/403.php:12 msgid "Access forbidden" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 5161cb6041d..1913edbad9c 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: mnestis <transifex@mnestis.net>\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "Delete permanently" 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" @@ -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" diff --git a/l10n/en_GB/files_encryption.po b/l10n/en_GB/files_encryption.po index 4a20a39c455..55602a0e0e8 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 12:50+0000\n" +"Last-Translator: mnestis <transifex@mnestis.net>\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" @@ -73,13 +73,13 @@ msgstr "Your private key is not valid! Likely your password was changed outside msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +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 "" +msgstr "Unknown error. Please check your system settings or contact your administrator" #: hooks/hooks.php:53 msgid "Missing requirements." diff --git a/l10n/en_GB/files_external.po b/l10n/en_GB/files_external.po index 1f4b3dec4db..03c8c2458aa 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 <transifex@mnestis.net>\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 2f9fc3ffbac..8600b9ee05f 100644 --- a/l10n/en_GB/files_sharing.po +++ b/l10n/en_GB/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-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:26+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 13:00+0000\n" +"Last-Translator: mnestis <transifex@mnestis.net>\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" @@ -20,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "This share is password-protected" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." diff --git a/l10n/en_GB/files_trashbin.po b/l10n/en_GB/files_trashbin.po index ce11b681d43..47a46a78b01 100644 --- a/l10n/en_GB/files_trashbin.po +++ b/l10n/en_GB/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Error" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Name" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restore" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Deleted" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Delete" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index ec486461596..02ac1254c69 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/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:21+0000\n" -"Last-Translator: mnestis <transifex@mnestis.net>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -18,51 +18,47 @@ msgstr "" "Language: en_GB\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 "App \"%s\" can't be installed because it is not compatible with this version of ownCloud." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "No app name specified" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Help" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Personal" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Settings" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Users" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Failed to upgrade \"%s\"." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Custom profile pictures don't work with encryption yet" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Unknown filetype" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Invalid image" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 34fd3ee9bd3..8dd6d17f485 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-09 13: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: mnestis <transifex@mnestis.net>\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\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..." @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -528,34 +528,34 @@ msgstr "Choose as profile image" msgid "Language" msgstr "Language" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Help translate" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" -#: 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 7fe9b8147f1..269467d7aea 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-15 16:20+0000\n" +"Last-Translator: mnestis <transifex@mnestis.net>\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" @@ -370,11 +370,11 @@ msgstr "By default, the UUID attribute is automatically detected. The UUID attri #: templates/settings.php:103 msgid "UUID Attribute for Users:" -msgstr "" +msgstr "UUID Attribute for Users:" #: templates/settings.php:104 msgid "UUID Attribute for Groups:" -msgstr "" +msgstr "UUID Attribute for Groups:" #: templates/settings.php:105 msgid "Username-LDAP User Mapping" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 04621772e2d..6d24a3e802b 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -158,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" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 8f735ceb335..98dbb83783c 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "Forigi por ĉiam" 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" @@ -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] "" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 236aa1811e3..b8a274b5b74 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 <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/eo/files_trashbin.po index 5d90fbd525c..e73d06f5266 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "Eraro" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "Nomo" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "RestaÅri" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Forigi" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 3c339b239ce..394829c40a1 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,47 @@ msgstr "" "Language: eo\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 "" -#: 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 "Helpo" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Persona" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Agordo" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Uzantoj" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administranto" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 69adadb1645..b34602ff868 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "Lingvo" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Helpu traduki" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/es/core.po b/l10n/es/core.po index a3b45fbe5c4..c8b39518107 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -166,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" diff --git a/l10n/es/files.po b/l10n/es/files.po index 59ceddc2aaa..3c97eb42e7a 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: japaol <japaol@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -142,7 +142,7 @@ msgstr "Eliminar permanentemente" 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" @@ -186,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" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 6ffa1327ba1..72118628d1f 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 <yo@rubendelcampo.es>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Advertencia:</b> 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 "" "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "<b>Advertencia:</b> 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 "" "<b>Warning:</b> 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 d027ef55b7a..8f4ab1acf98 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -4,14 +4,15 @@ # # Translators: # Art O. Pal <artopal@fastmail.fm>, 2013 +# Dominique Couot <dcouot@hotmail.com>, 2013 # Korrosivo <yo@rubendelcampo.es>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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 <owncloud-bot@tmit.eu>\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 <dcouot@hotmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +22,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "Este elemento compartido esta protegido por contraseña" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index b9a630d04ac..155a900d634 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -37,23 +37,23 @@ msgstr "Error" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Nombre" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Recuperar" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Eliminado" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index c4da9c540a1..c916353dee3 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-03 16:30+0000\n" -"Last-Translator: Korrosivo <yo@rubendelcampo.es>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,51 +21,47 @@ msgstr "" "Language: es\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 "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión de ownCloud" -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "No se ha especificado nombre de la aplicación" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Ayuda" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Personal" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Ajustes" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Usuarios" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administración" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falló la actualización \"%s\"." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Las imágenes de perfil personalizadas no funcionan con el cifrado aún" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Tipo de archivo desconocido" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Imagen inválida" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 5998f85831b..4dfa4e0f477 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-08 22: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: japaol <japaol@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -167,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..." @@ -394,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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -537,34 +537,34 @@ msgstr "Seleccionar como imagen de perfil" msgid "Language" msgstr "Idioma" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Ayúdanos a traducir" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Utilice esta dirección para<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">acceder a sus archivos a través de WebDAV</a>" -#: 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_AR/core.po b/l10n/es_AR/core.po index d719bb0a047..65eed7ba899 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -157,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" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 22b74885356..6866bba1ef3 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -139,7 +139,7 @@ msgstr "Borrar permanentemente" 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" @@ -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" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 1dfe9a4ee12..f22a1caf0e2 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 <claudio.tessone@gmail.com>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index d9a1857ffa9..962fd759ca8 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Error" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Nombre" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Recuperar" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Borrado" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Borrar" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 066f0111fa6..ce150608c9d 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,47 @@ msgstr "" "Language: es_AR\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 "La app \"%s\" no puede ser instalada porque no es compatible con esta versión de ownCloud" -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "No fue especificado el nombre de la app" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Ayuda" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Personal" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Configuración" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Usuarios" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administración" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "No se pudo actualizar \"%s\"." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 303428b3415..0bbb60d3a9c 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -530,34 +530,34 @@ msgstr "" msgid "Language" msgstr "Idioma" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Ayudanos a traducir" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Usá esta dirección para <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">acceder a tus archivos a través de WebDAV</a>" -#: 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_MX/lib.po b/l10n/es_MX/lib.po index 7861d1b4836..1823a00e415 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,321 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/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:250 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:359 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:372 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:383 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:395 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:408 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:152 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:173 private/setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 11cae8186b2..c3fee470371 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <eraser@eraser.ee>\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" @@ -158,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" @@ -421,7 +421,7 @@ msgstr "Objekti tüüp pole määratletud." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Sisesta uus" #: js/tags.js:27 msgid "Delete" @@ -433,15 +433,15 @@ msgstr "Lisa" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Muuda silte" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Viga dialoogi malli laadimisel: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Kustutamiseks pole ühtegi silti valitud." #: js/update.js:17 msgid "" @@ -537,31 +537,31 @@ msgstr "Abiinfo" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Viga siltide laadimisel" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Silt on juba olemas" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Viga sildi (siltide) kustutamisel" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Viga sildi lisamisel" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Viga sildi eemaldamisel" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Viga lemmikuks lisamisel" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Viga lemmikutest eemaldamisel" #: templates/403.php:12 msgid "Access forbidden" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index f44840197f7..2b45467a291 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+0000\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 <pisike.sipelgas@gmail.com>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -137,7 +137,7 @@ msgstr "Kustuta jäädavalt" 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" @@ -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" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index eb1cc2cfc35..b905f4d62db 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <eraser@eraser.ee>\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" @@ -74,13 +74,13 @@ msgstr "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +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 "" +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." diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 19d868dd022..dc65ccbfc1c 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 <eraser@eraser.ee>\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 6c8f069f72a..115fd9d4838 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/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-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:26+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <eraser@eraser.ee>\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" @@ -21,7 +21,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "See jagamine on parooliga kaitstud" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 41687c7e602..59ea4274259 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Viga" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Nimi" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Taasta" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Kustutatud" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Kustuta" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 282b7282180..6e2b050fade 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" -"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,47 @@ msgstr "" "Language: et_EE\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 "Rakendit \"%s\" ei saa paigaldada, kuna see pole ühilduv selle ownCloud versiooniga." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Ãœhegi rakendi nime pole määratletud" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Abiinfo" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Isiklik" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Seaded" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Kasutajad" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ebaõnnestunud uuendus \"%s\"." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Kohandatud profiili pildid ei toimi veel koos krüpteeringuga" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Tundmatu failitüüp" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Vigane pilt" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 1d42da7efad..b082cae4de3 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 <eraser@eraser.ee>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -529,34 +529,34 @@ msgstr "Vali kui profiili pilt" msgid "Language" msgstr "Keel" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Aita tõlkida" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Kasuta seda aadressi <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">oma failidele ligipääsuks WebDAV kaudu</a>" -#: 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 f8762ee4e32..ffee0e719ba 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <eraser@eraser.ee>\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" @@ -371,11 +371,11 @@ msgstr "Vaikimis ownCloud tuvastab automaatselt UUID atribuudi. UUID atribuuti k #: templates/settings.php:103 msgid "UUID Attribute for Users:" -msgstr "" +msgstr "UUID atribuut kasutajatele:" #: templates/settings.php:104 msgid "UUID Attribute for Groups:" -msgstr "" +msgstr "UUID atribuut gruppidele:" #: templates/settings.php:105 msgid "Username-LDAP User Mapping" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 72d82b82042..5aecdaf8f0f 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -158,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" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 9667166de1c..c4c84887957 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+0000\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 00:41+0000\n" "Last-Translator: asieriko <asieriko@gmail.com>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -137,7 +137,7 @@ msgstr "Ezabatu betirako" 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" @@ -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" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 2acc8341c15..fa979c709b4 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 <pi@beobide.net>\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_trashbin.po b/l10n/eu/files_trashbin.po index e671b30f70e..af85d6db6a0 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Errorea" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Izena" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Berrezarri" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Ezabatuta" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Ezabatu" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 7a64a4d3f4e..9fbed2cfc97 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -19,51 +19,47 @@ msgstr "" "Language: eu\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 "" -#: 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 "Laguntza" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Pertsonala" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Ezarpenak" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Erabiltzaileak" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ezin izan da \"%s\" eguneratu." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 44fe562161f..b88c2e5594a 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -529,34 +529,34 @@ msgstr "" msgid "Language" msgstr "Hizkuntza" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Lagundu itzultzen" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko</a>" -#: 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/fa/core.po b/l10n/fa/core.po index 9dd1b35a352..d21e9df0fe0 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -157,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 "سال‌های قبل" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index eeb87d689be..aca12cecfdb 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -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 "در انتظار" @@ -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] "" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 1b71738f671..d4e2ba0a621 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 <miki_mika1362@yahoo.com>\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_trashbin.po b/l10n/fa/files_trashbin.po index 8e79601363c..1c133a5ef21 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "خطا" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "هیچ چیزی اینجا نیست. سطل زباله ÛŒ شما خالی است." -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "نام" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "بازیابی" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Øذ٠شده" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "ØØ°Ù" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index c324c0ab23a..3ade453de50 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,47 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index f153db6b6a5..71bc59cd142 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -528,34 +528,34 @@ msgstr "" msgid "Language" msgstr "زبان" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "به ترجمه آن Ú©Ù…Ú© کنید" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "استÙاده ابن آدرس <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\"> برای دسترسی Ùایل های شما از طریق WebDAV </a>" -#: 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/fi_FI/core.po b/l10n/fi_FI/core.po index dfcc184fe79..2075c6bdf94 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -158,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" @@ -433,7 +433,7 @@ msgstr "Lisää" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Muokkaa tunnisteita" #: js/tags.js:57 msgid "Error loading dialog template: {error}" @@ -537,11 +537,11 @@ msgstr "Ohje" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Virhe tunnisteita ladattaessa" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Tunniste on jo olemassa" #: tags/controller.php:64 msgid "Error deleting tag(s)" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 535a2145cf7..c5af4269d03 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "Poista pysyvästi" 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" @@ -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" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index cc90b8dc79b..6a544ba6f67 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Varoitus:</b> \"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 "" "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "<b>Varoitus:</b> 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 "" "<b>Warning:</b> 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_trashbin.po b/l10n/fi_FI/files_trashbin.po index 165313c1678..43256d63012 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Virhe" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Nimi" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Palauta" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Poistettu" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Poista" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 054b3f11568..a038cbb328a 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,47 @@ msgstr "" "Language: fi_FI\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 "Sovellusta \"%s\" ei voi asentaa, koska se ei ole yhteensopiva käytössä olevan ownCloud-version kanssa." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Sovelluksen nimeä ei määritelty" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Ohje" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Henkilökohtainen" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Asetukset" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Käyttäjät" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Ylläpitäjä" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Kohteen \"%s\" päivitys epäonnistui." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Omavalintaiset profiilikuvat eivät toimi salauksen kanssa vielä" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Tuntematon tiedostotyyppi" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Virheellinen kuva" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 528192e96ab..ede43159ac5 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 <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -528,34 +528,34 @@ msgstr "Valitse profiilikuvaksi" msgid "Language" msgstr "Kieli" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Auta kääntämisessä" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Käytä tätä osoitetta <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">päästäksesi käsiksi tiedostoihisi WebDAVin kautta</a>" -#: 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/fr/core.po b/l10n/fr/core.po index 93e53eca95e..e6861f38edb 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -163,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" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 519806d8d33..3cfd25e7a9f 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+0000\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 <ogre.sympathique@speed.1s.fr>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -139,7 +139,7 @@ msgstr "Supprimer de façon définitive" 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" @@ -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" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 24c4b20fe2d..c6085fec06a 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <ogre.sympathique@speed.1s.fr>\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,13 +78,13 @@ msgstr "Votre clé de sécurité privée n'est pas valide! Il est probable que v msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +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 "" +msgstr "Erreur inconnue. Veuillez vérifier vos paramètres système ou contacter votre administrateur." #: hooks/hooks.php:53 msgid "Missing requirements." diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index c1e69f0c902..1e0f19e1ace 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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Attention : </b> \"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 "" "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "<b>Attention : </b> 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 "" "<b>Warning:</b> 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_trashbin.po b/l10n/fr/files_trashbin.po index 81cd7cf7585..62eb0f505c2 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Erreur" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Nom" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restaurer" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Effacé" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Supprimer" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index a0467819d8e..1ff30fe4dc4 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" -"Last-Translator: ogre_sympathique <ogre.sympathique@speed.1s.fr>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,47 @@ msgstr "" "Language: fr\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 "L'application \"%s\" ne peut être installée car elle n'est pas compatible avec cette version de ownCloud." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Aucun nom d'application spécifié" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Aide" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Personnel" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Paramètres" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Utilisateurs" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administration" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Echec de la mise à niveau \"%s\"." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Les images de profil personnalisées ne fonctionnent pas encore avec le système de chiffrement." - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Type de fichier inconnu" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Image invalide" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 6a71ee85346..e2bb94516b4 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-08 20: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: ogre_sympathique <ogre.sympathique@speed.1s.fr>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\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..." @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -533,34 +533,34 @@ msgstr "Choisir en temps que photo de profil " msgid "Language" msgstr "Langue" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Aidez à traduire" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Utilisez cette adresse pour <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">accéder à vos fichiers via WebDAV</a>" -#: 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/gl/core.po b/l10n/gl/core.po index fe5624de803..0910192516c 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 19:40+0000\n" +"Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -157,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" @@ -432,15 +432,15 @@ msgstr "Engadir" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Editar etiquetas" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Produciuse un erro ao cargar o modelo do dialogo: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Non se seleccionaron etiquetas para borrado." #: js/update.js:17 msgid "" @@ -536,15 +536,15 @@ msgstr "Axuda" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Produciuse un erro ao cargar as etiquetas" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Xa existe a etiqueta" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Produciuse un erro ao eliminar a(s) etiqueta(s)" #: tags/controller.php:75 msgid "Error tagging" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 95c5b5ae8c2..cf5f95c3997 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "Eliminar permanentemente" 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" @@ -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" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index c6a78af76d2..be7162a3c06 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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Aviso:</b> «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo." -#: lib/config.php:450 +#: lib/config.php:457 msgid "" "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "<b>Aviso:</b> A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "<b>Warning:</b> 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_trashbin.po b/l10n/gl/files_trashbin.po index a17a5e913ae..b9233c24293 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Erro" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Nome" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restablecer" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Eliminado" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 53df3e297f9..a287639ec19 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/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: mbouzada <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,47 @@ msgstr "" "Language: gl\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 "Non é posÃbel instalar o aplicativo «%s» por non seren compatÃbel con esta versión do ownCloud." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Non se especificou o nome do aplicativo" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Axuda" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Persoal" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Axustes" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Usuarios" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administración" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Non foi posÃbel anovar «%s»." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "As imaxes personalizadas de perfil aÃnda non funcionan co cifrado" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Tipo de ficheiro descoñecido" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Imaxe incorrecta" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 513443ae5b4..3d611e80494 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 <mbouzada@gmail.com>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -528,34 +528,34 @@ msgstr "Escolla unha imaxe para o perfil" msgid "Language" msgstr "Idioma" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Axude na tradución" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Empregue esta ligazón <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">para acceder aos sus ficheiros mediante WebDAV</a>" -#: 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/he/core.po b/l10n/he/core.po index cc4b7098229..84dcdd13a80 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -158,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 "×©× ×™×" diff --git a/l10n/he/files.po b/l10n/he/files.po index 6a31c8be016..bb854e5c2e7 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -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] "" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 7c7f1a22e17..beb7f4d7e31 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 <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/he/files_trashbin.po index 6a48277fc21..33edb96f67f 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "שגי××”" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "×ין ×›×ן ×©×•× ×“×‘×¨. סל המיחזור שלך ריק!" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "ש×" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "שחזור" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "× ×ž×—×§" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "מחיקה" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 84498606248..ec52c8fb63c 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: he\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 "" -#: 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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 4a00de7bd32..ae7d5baa4ed 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -528,34 +528,34 @@ msgstr "" msgid "Language" msgstr "פה" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "עזרה בתרגו×" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/hi/lib.po b/l10n/hi/lib.po index 2828479f62f..a566f1546eb 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: hi\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 "" -#: 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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 30fe43a599f..c63e8948cf7 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -156,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" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 21231977777..b283849c4c2 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,7 @@ msgstr "" 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" @@ -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] "" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index af43094b326..ef33412ac06 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 <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/hr/files_trashbin.po index ce968dadfcc..6d9a70fffd7 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "GreÅ¡ka" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "Ime" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "ObriÅ¡i" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index b3008a4540a..26fffa35247 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: 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 "Pomoć" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Osobno" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Postavke" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Korisnici" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administrator" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 03c222ac5e9..692a46946c6 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "Jezik" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Pomoć prevesti" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/hu_HU/core.po b/l10n/hu_HU/core.po index ead92d79da0..89209ca2153 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -158,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" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index b39ee24c244..e44f550050f 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "Végleges törlés" 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" @@ -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" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 438523b0f62..1f24808b150 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 <torlasz@gmail.com>\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_trashbin.po b/l10n/hu_HU/files_trashbin.po index 4ebe1a98085..f90dae79c91 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Hiba" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Név" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "VisszaállÃtás" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Törölve" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Törlés" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 1d76c543806..0ba7cd81fab 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" -"Last-Translator: ebela <bela@dandre.hu>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,47 @@ msgstr "" "Language: hu_HU\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 "" -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Nincs az alkalmazás név megadva." -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Súgó" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Személyes" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "BeállÃtások" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Felhasználók" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Adminsztráció" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Sikertelen FrissÃtés \"%s\"." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Ismeretlen file tipús" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Hibás kép" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 0b90253f000..bc8739cd62d 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -530,34 +530,34 @@ msgstr "Válassz profil képet" msgid "Language" msgstr "Nyelv" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "SegÃtsen a fordÃtásban!" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Ezt a cÃmet használja, ha <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">WebDAV-on keresztül szeretné elérni az állományait</a>" -#: 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/hy/core.po b/l10n/hy/core.po index 523a1d3e3e0..2f6714783c5 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -156,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 "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 3f0ab24763f..4baf46dcf43 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/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 <owncloud-bot@tmit.eu>\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_external.po b/l10n/hy/files_external.po index d2cadb69d01..3c94ed05342 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 <EMAIL@ADDRESS>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index d129300c0e5..d0d4ceee018 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Õ‹Õ¶Õ»Õ¥Õ¬" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index d1e8def17c4..16d2817b050 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,321 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/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:250 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:359 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:372 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:383 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:395 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:408 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:152 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:173 private/setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index e86ef509444..9314310cb00 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/core.po b/l10n/ia/core.po index a8a0950fcdc..f9b0d354377 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -156,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 "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index e65025f0af8..5ebf85434ab 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,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 "" @@ -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] "" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 9b2e205cccd..67def0dc377 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 <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/ia/files_trashbin.po index 807fa0a9311..59c86551a18 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "Error" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "Nomine" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Deler" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 1ef496076d3..818124c8ad7 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: ia\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 "" -#: 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 "Adjuta" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Personal" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Configurationes" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Usatores" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administration" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 1b6113bff36..92f117b2249 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "Linguage" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Adjuta a traducer" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/id/core.po b/l10n/id/core.po index dc94539579d..d4d36f61573 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -156,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" diff --git a/l10n/id/files.po b/l10n/id/files.po index 17c205652b1..c0f154df3db 100644 --- a/l10n/id/files.po +++ b/l10n/id/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,7 @@ msgstr "Hapus secara permanen" 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" @@ -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] "" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index b58802d1575..11bb34ff1cf 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 <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/id/files_trashbin.po index 2e8b106cdd9..e351ecb37cd 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "Galat" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Nama" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Pulihkan" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Dihapus" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Hapus" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index d4e1979c03f..2ef4228da6a 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\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 "Bantuan" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Pribadi" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Setelan" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Pengguna" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 17de98e788e..9db1161d74f 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "Bahasa" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Bantu menerjemahkan" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/is/core.po b/l10n/is/core.po index cc5105d49d9..79da8768666 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -157,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" diff --git a/l10n/is/files.po b/l10n/is/files.po index 9bf8b42854d..1dcd598d5a5 100644 --- a/l10n/is/files.po +++ b/l10n/is/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,7 @@ msgstr "" 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" @@ -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] "" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 45381cc3b75..b222db1b694 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 <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/is/files_trashbin.po index d6b54e203e6..9219fc2b3f6 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "Villa" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "Nafn" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Eyða" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 4042e96b859..62df7fc223d 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: is\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 "" -#: 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 "Hjálp" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Um mig" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Stillingar" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Notendur" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Stjórnun" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index e920436c9c7..7cd4c71e180 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -528,34 +528,34 @@ msgstr "" msgid "Language" msgstr "Tungumál" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Hjálpa við þýðingu" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/it/core.po b/l10n/it/core.po index 5f55897e422..a4c094f5886 100644 --- a/l10n/it/core.po +++ b/l10n/it/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-16 14:00+0000\n" +"Last-Translator: polxmod <paolo.velati@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -160,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" @@ -276,144 +276,144 @@ msgstr "({count} selezionati)" msgid "Error loading file exists template" msgstr "Errore durante il caricamento del modello del file esistente" -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Condivisi" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Condividi" -#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 -#: js/share.js:679 +#: js/share.js:149 js/share.js:162 js/share.js:169 js/share.js:686 +#: js/share.js:698 msgid "Error" msgstr "Errore" -#: js/share.js:132 js/share.js:707 +#: js/share.js:151 js/share.js:726 msgid "Error while sharing" msgstr "Errore durante la condivisione" -#: js/share.js:143 +#: js/share.js:162 msgid "Error while unsharing" msgstr "Errore durante la rimozione della condivisione" -#: js/share.js:150 +#: js/share.js:169 msgid "Error while changing permissions" msgstr "Errore durante la modifica dei permessi" -#: js/share.js:159 +#: js/share.js:178 msgid "Shared with you and the group {group} by {owner}" msgstr "Condiviso con te e con il gruppo {group} da {owner}" -#: js/share.js:161 +#: js/share.js:180 msgid "Shared with you by {owner}" msgstr "Condiviso con te da {owner}" -#: js/share.js:184 +#: js/share.js:203 msgid "Share with" msgstr "Condividi con" -#: js/share.js:189 +#: js/share.js:208 msgid "Share with link" msgstr "Condividi con collegamento" -#: js/share.js:192 +#: js/share.js:211 msgid "Password protect" msgstr "Proteggi con password" -#: js/share.js:194 templates/installation.php:57 templates/login.php:32 +#: js/share.js:213 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Password" -#: js/share.js:199 +#: js/share.js:218 msgid "Allow Public Upload" msgstr "Consenti caricamento pubblico" -#: js/share.js:203 +#: js/share.js:222 msgid "Email link to person" msgstr "Invia collegamento via email" -#: js/share.js:204 +#: js/share.js:223 msgid "Send" msgstr "Invia" -#: js/share.js:209 +#: js/share.js:228 msgid "Set expiration date" msgstr "Imposta data di scadenza" -#: js/share.js:210 +#: js/share.js:229 msgid "Expiration date" msgstr "Data di scadenza" -#: js/share.js:243 +#: js/share.js:262 msgid "Share via email:" msgstr "Condividi tramite email:" -#: js/share.js:246 +#: js/share.js:265 msgid "No people found" msgstr "Non sono state trovate altre persone" -#: js/share.js:284 +#: js/share.js:303 msgid "Resharing is not allowed" msgstr "La ri-condivisione non è consentita" -#: js/share.js:320 +#: js/share.js:339 msgid "Shared in {item} with {user}" msgstr "Condiviso in {item} con {user}" -#: js/share.js:341 +#: js/share.js:360 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/share.js:353 +#: js/share.js:372 msgid "notify user by email" msgstr "notifica l'utente tramite email" -#: js/share.js:361 +#: js/share.js:380 msgid "can edit" msgstr "può modificare" -#: js/share.js:363 +#: js/share.js:382 msgid "access control" msgstr "controllo d'accesso" -#: js/share.js:366 +#: js/share.js:385 msgid "create" msgstr "creare" -#: js/share.js:369 +#: js/share.js:388 msgid "update" msgstr "aggiornare" -#: js/share.js:372 +#: js/share.js:391 msgid "delete" msgstr "elimina" -#: js/share.js:375 +#: js/share.js:394 msgid "share" msgstr "condividi" -#: js/share.js:409 js/share.js:654 +#: js/share.js:428 js/share.js:673 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:667 +#: js/share.js:686 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:679 +#: js/share.js:698 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:694 +#: js/share.js:713 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:705 +#: js/share.js:724 msgid "Email sent" msgstr "Messaggio inviato" -#: js/share.js:729 +#: js/share.js:748 msgid "Warning" msgstr "Avviso" @@ -423,7 +423,7 @@ msgstr "Il tipo di oggetto non è specificato." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Inserisci nuovo" #: js/tags.js:27 msgid "Delete" @@ -435,7 +435,7 @@ msgstr "Aggiungi" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Modifica tag" #: js/tags.js:57 msgid "Error loading dialog template: {error}" @@ -443,7 +443,7 @@ msgstr "" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Nessuna tag selezionata per l'eliminazione." #: js/update.js:17 msgid "" @@ -525,7 +525,7 @@ msgstr "Personale" msgid "Users" msgstr "Utenti" -#: strings.php:7 templates/layout.user.php:109 +#: strings.php:7 templates/layout.user.php:110 msgid "Apps" msgstr "Applicazioni" @@ -539,7 +539,7 @@ msgstr "Aiuto" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Errore di caricamento tag" #: tags/controller.php:48 msgid "Tag already exists" @@ -683,12 +683,12 @@ msgstr "Termina la configurazione" msgid "Finishing …" msgstr "Completamento..." -#: templates/layout.user.php:42 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s è disponibile. Ottieni ulteriori informazioni sull'aggiornamento." -#: templates/layout.user.php:70 +#: templates/layout.user.php:71 msgid "Log out" msgstr "Esci" @@ -708,11 +708,11 @@ msgstr "Cambia la password per rendere nuovamente sicuro il tuo account." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Autenticazione lato server faillita!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Per favore contatta l'amministratore di sistema." #: templates/login.php:38 msgid "Lost your password?" diff --git a/l10n/it/files.po b/l10n/it/files.po index 7312af8f446..38fc26cc470 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -137,7 +137,7 @@ msgstr "Elimina definitivamente" 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" @@ -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" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 0e408fb028c..503bc92d148 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 <vinx.reale@gmail.com>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Avviso:</b> \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo." -#: lib/config.php:450 +#: lib/config.php:457 msgid "" "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "<b>Avviso:</b> 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 "" "<b>Warning:</b> 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_trashbin.po b/l10n/it/files_trashbin.po index c13d546549f..a016e6ef698 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Errore" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Nome" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Ripristina" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Eliminati" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Elimina" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 634898776d9..06d34712271 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,47 @@ msgstr "" "Language: it\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 "L'applicazione \"%s\" non può essere installata poiché non è compatibile con questa versione di ownCloud." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Il nome dell'applicazione non è specificato" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Aiuto" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Personale" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Impostazioni" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Utenti" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Aggiornamento non riuscito \"%s\"." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Le immagini personalizzate del profilo non funzionano ancora con la cifratura" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Tipo di file sconosciuto" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Immagine non valida" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 305ae7af50e..b27af7ae165 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 <vinx.reale@gmail.com>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -531,34 +531,34 @@ msgstr "Scegli come immagine del profilo" msgid "Language" msgstr "Lingua" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Migliora la traduzione" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Utilizza questo indirizzo per <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">accedere ai tuoi file via WebDAV</a>" -#: 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/ja_JP/core.po b/l10n/ja_JP/core.po index ced5f075132..ae31951408b 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -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" @@ -160,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 "å¹´å‰" @@ -362,7 +362,7 @@ msgstr "共有解除" #: js/share.js:353 msgid "notify user by email" -msgstr "" +msgstr "ユーザã«ãƒ¡ãƒ¼ãƒ«ã§é€šçŸ¥" #: js/share.js:361 msgid "can edit" @@ -418,7 +418,7 @@ msgstr "オブジェクタイプãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。" #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "æ–°è¦ã«å…¥åŠ›" #: js/tags.js:27 msgid "Delete" @@ -430,7 +430,7 @@ msgstr "è¿½åŠ " #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "タグを編集" #: js/tags.js:57 msgid "Error loading dialog template: {error}" @@ -438,7 +438,7 @@ msgstr "" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "削除ã™ã‚‹ã‚¿ã‚°ãŒé¸æŠžã•ã‚Œã¦ã„ã¾ã›ã‚“。" #: js/update.js:17 msgid "" @@ -534,23 +534,23 @@ msgstr "ヘルプ" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "ã‚¿ã‚°ã®èªã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "ã‚¿ã‚°ã¯ã™ã§ã«å˜åœ¨ã—ã¾ã™" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "ã‚¿ã‚°ã®å‰Šé™¤ã‚¨ãƒ©ãƒ¼" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "ã‚¿ã‚°ã®ä»˜ä¸Žã‚¨ãƒ©ãƒ¼" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "ã‚¿ã‚°ã®è§£é™¤ã‚¨ãƒ©ãƒ¼" #: tags/controller.php:97 msgid "Error favoriting" @@ -583,7 +583,7 @@ msgstr "" msgid "" "The share will expire on %s.\n" "\n" -msgstr "" +msgstr "共有㯠%s ã§æœ‰åŠ¹æœŸé™ãŒåˆ‡ã‚Œã¾ã™ã€‚\n\n" #: templates/altmail.php:6 templates/mail.php:19 msgid "Cheers!" @@ -676,7 +676,7 @@ msgstr "セットアップを完了ã—ã¾ã™" #: templates/installation.php:184 msgid "Finishing …" -msgstr "" +msgstr "終了ã—ã¦ã„ã¾ã™ ..." #: templates/layout.user.php:42 #, php-format @@ -703,11 +703,11 @@ msgstr "アカウントä¿è·ã®ç‚ºã€ãƒ‘スワードをå†åº¦ã®å¤‰æ›´ã‚’ãŠé¡˜ #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "サーãƒã‚µã‚¤ãƒ‰ã®èªè¨¼ã«å¤±æ•—ã—ã¾ã—ãŸï¼" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "管ç†è€…ã«å•ã„åˆã‚ã›ã¦ãã ã•ã„。" #: templates/login.php:38 msgid "Lost your password?" @@ -735,7 +735,7 @@ msgstr "" #: templates/mail.php:17 #, php-format msgid "The share will expire on %s.<br><br>" -msgstr "" +msgstr "共有㯠%s ã§æœ‰åŠ¹æœŸé™ãŒåˆ‡ã‚Œã¾ã™ã€‚<br><br>" #: templates/update.php:3 #, php-format diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 0f7b1357787..effcd83736c 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -140,7 +140,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 "ä¸æ–" @@ -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 "" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 1dfe940826f..1a40cf44a9f 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 22cad8ec471..34bae7a6b97 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 <ddeguchi@nagoya-u.jp>, 2013 # tt yn <tetuyano+transi@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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 <owncloud-bot@tmit.eu>\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 <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "ã“ã®å…±æœ‰ã¯ãƒ‘スワードã§ä¿è·ã•ã‚Œã¦ã„ã¾ã™" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 0ddc42354e0..63397f9fbfc 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -37,23 +37,23 @@ msgstr "エラー" msgid "restored" msgstr "復元済" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "ã“ã“ã«ã¯ä½•ã‚‚ã‚ã‚Šã¾ã›ã‚“。ゴミ箱ã¯ç©ºã§ã™ï¼" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "åå‰" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "復元" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "削除済ã¿" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "削除" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 6607afad7bb..33fb995d81e 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" -"Last-Translator: tt yn <tetuyano+transi@gmail.com>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,51 +21,47 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\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 " \"%s\" アプリã¯ã€ã“ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ownCloudã¨äº’æ›æ€§ãŒãªã„為ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã§ãã¾ã›ã‚“。" -#: 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 "\"%s\" ã¸ã®ã‚¢ãƒƒãƒ—グレードã«å¤±æ•—ã—ã¾ã—ãŸã€‚" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "æš—å·ç„¡ã—ã§ã¯åˆ©ç”¨ä¸å¯ãªã‚«ã‚¹ã‚¿ãƒ プãƒãƒ•ã‚£ãƒ¼ãƒ«ç”»åƒ" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "ä¸æ˜Žãªãƒ•ã‚¡ã‚¤ãƒ«ã‚¿ã‚¤ãƒ—" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "無効ãªç”»åƒ" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 1ffa3d1aac9..a3e313bda66 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 <owncloud-bot@tmit.eu>\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 <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -530,34 +530,34 @@ msgstr "プãƒãƒ•ã‚¡ã‚¤ãƒ«ç”»åƒã¨ã—ã¦é¸æŠž" msgid "Language" msgstr "言語" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "翻訳ã«å”力ã™ã‚‹" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">WebDAV経由ã§ãƒ•ã‚¡ã‚¤ãƒ«ã«ã‚¢ã‚¯ã‚»ã‚¹</a>ã™ã‚‹ã«ã¯ã“ã®ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚’利用ã—ã¦ãã ã•ã„" -#: 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 cdc491119a0..9b368cde3ba 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -371,11 +371,11 @@ msgstr "デフォルトã§ã¯ã€UUID 属性ã¯è‡ªå‹•çš„ã«æ¤œå‡ºã•ã‚Œã¾ã™ã€‚U #: templates/settings.php:103 msgid "UUID Attribute for Users:" -msgstr "" +msgstr "ユーザ㮠UUID 属性:" #: templates/settings.php:104 msgid "UUID Attribute for Groups:" -msgstr "" +msgstr "グループ㮠UUID 属性:" #: templates/settings.php:105 msgid "Username-LDAP User Mapping" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index c9960a69dad..dfab915a809 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: ka\n" "Plural-Forms: nplurals=1; plural=0;\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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 5aa843a2a52..06f2f97ed6a 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -156,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 "წლის წინ" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index e9fd5d776d6..df98bd09d4f 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,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 "მáƒáƒªáƒ“ის რეჟიმში" @@ -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] "" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 8735fd9f607..d4a75bb89fb 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 <romeo@energo-pro.ge>\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_trashbin.po b/l10n/ka_GE/files_trashbin.po index 7a6810fb302..2d54104afb0 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "შეცდáƒáƒ›áƒ" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "áƒáƒ¥ áƒáƒ áƒáƒ¤áƒ”რი áƒáƒ áƒáƒ ის. სáƒáƒœáƒáƒ’ვე ყუთი ცáƒáƒ იელიáƒ!" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "სáƒáƒ®áƒ”ლი" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "áƒáƒ¦áƒ“გენáƒ" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "წáƒáƒ¨áƒšáƒ˜áƒšáƒ˜" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "წáƒáƒ¨áƒšáƒ" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 98d50447b36..727a202d5a0 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 2c22f22b5bf..79f90fc18fc 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -528,34 +528,34 @@ msgstr "" msgid "Language" msgstr "ენáƒ" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "თáƒáƒ გმნის დáƒáƒ®áƒ›áƒáƒ ებáƒ" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/km/lib.po b/l10n/km/lib.po index 9937427d825..7c7bbdabe26 100644 --- a/l10n/km/lib.po +++ b/l10n/km/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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -17,314 +17,317 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/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:250 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:359 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:372 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:383 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:395 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:408 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:152 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:173 private/setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index c760138d383..7129a569226 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -17,314 +17,317 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/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:250 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:359 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:372 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:383 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:395 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:408 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:152 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:173 private/setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index f67e5c85a2f..c52db125f7e 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -158,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 "ë…„ ì „" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index eb3600fa847..05e1dfc7543 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -138,7 +138,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[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 ê°œì˜ íŒŒì¼ì„ 업로드중" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index f07a5ddee44..c8a0f89f90b 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 <kde@peremen.name>\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_trashbin.po b/l10n/ko/files_trashbin.po index 901162cb12d..6720b2e890f 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "오류" msgid "restored" msgstr "ë³µì›ë¨" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "현재 íœ´ì§€í†µì€ ë¹„ì–´ìžˆìŠµë‹ˆë‹¤!" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "ì´ë¦„" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "ë³µì›" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "ì‚ì œë¨" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "ì‚ì œ" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index f664342bf17..da8c29be708 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" -"Last-Translator: smallsnail <bjh13579@gmail.com>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,47 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\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 ë²„ì „ê³¼ 호환ë˜ì§€ 않기 ë•Œë¬¸ì— \"%s\" ì•±ì„ ì„¤ì¹˜í• ìˆ˜ 없습니다." -#: 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 "\"%s\" ì—…ê·¸ë ˆì´ë“œì— 실패했습니다." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "개개ì¸ì˜ 프로필 ì‚¬ì§„ì€ ì•„ì§ì€ 암호화 ë˜ì§€ 않습니다" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "알수없는 파ì¼í˜•ì‹" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "ìž˜ëª»ëœ ê·¸ë¦¼" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index af3cbd9f452..8761e5426f9 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -528,34 +528,34 @@ msgstr "" msgid "Language" msgstr "언어" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "ë²ˆì— ë•ê¸°" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 5fb0e36ab7d..e37e01ffa42 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: ku_IQ\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 "" -#: 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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 28c0c403351..6608ec80229 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -157,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" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 4e750868aef..30cb28b8d77 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,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 "" @@ -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] "" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index d92692e1794..dbe6960380d 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 <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/lb/files_trashbin.po index 12c2da94f61..80206d687a2 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "Fehler" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "Numm" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Läschen" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index a7ee0bf6a64..ee55a0da5a2 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,47 @@ msgstr "" "Language: lb\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 "" -#: 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 "Hëllef" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Perséinlech" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Astellungen" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Benotzer" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 3ef1c2e1421..1eabf34f2f4 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -528,34 +528,34 @@ msgstr "" msgid "Language" msgstr "Sprooch" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Hëllef iwwersetzen" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/lt_LT/core.po b/l10n/lt_LT/core.po index 4a6db82c709..270b237584f 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -160,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" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 997e9298e46..7933a3d1db7 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <liudas.alisauskas@gmail.com>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -137,7 +137,7 @@ msgstr "IÅ¡trinti negrįžtamai" 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" @@ -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" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 8bb8c45ea95..7d99f3eead8 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 <min2lizz@gmail.com>\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_trashbin.po b/l10n/lt_LT/files_trashbin.po index 3e1f7188d2f..d745a17d477 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -37,23 +37,23 @@ msgstr "Klaida" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Pavadinimas" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Atstatyti" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "IÅ¡trinti" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "IÅ¡trinti" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index a2fd4574383..8d01cd0a1ab 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" -"Last-Translator: Liudas AliÅ¡auskas <liudas.alisauskas@gmail.com>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,51 +21,47 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: 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 "Programa „%s“ negali bÅ«ti įdiegta, nes yra nesuderinama su Å¡ia ownCloud versija." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Nenurodytas programos pavadinimas" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Pagalba" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Asmeniniai" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Nustatymai" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Vartotojai" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administravimas" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Nepavyko pakelti „%s“ versijos." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Saviti profilio paveiksliukai dar neveikia su Å¡ifravimu" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Nežinomas failo tipas" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Netinkamas paveikslÄ—lis" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 29e03ac1c98..0757aa004f8 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 <liudas.alisauskas@gmail.com>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -531,34 +531,34 @@ msgstr "Pasirinkite profilio paveiksliukÄ…" msgid "Language" msgstr "Kalba" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "PadÄ—kite iÅ¡versti" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Naudokite šį adresÄ…, kad <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">pasiekti savo failus per WebDAV</a>" -#: 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/lv/core.po b/l10n/lv/core.po index a3608479fc0..abeb7b1e108 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -157,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ļ" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 991b5a97031..80e4a721af1 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "DzÄ“st pavisam" 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" @@ -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" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 01dbef9b6ea..257b3d6427b 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 <stendec@inbox.lv>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 5792cb5d368..ff938af6f0b 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Kļūda" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Nosaukums" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Atjaunot" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "DzÄ“sts" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "DzÄ“st" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index dad77f7dc44..9e2615fb042 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,47 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 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 "" -#: 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 "PalÄ«dzÄ«ba" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "PersonÄ«gi" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "IestatÄ«jumi" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "LietotÄji" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administratori" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Kļūda atjauninot \"%s\"" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index cfb2581a7fd..e0c9ad750e0 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -528,34 +528,34 @@ msgstr "" msgid "Language" msgstr "Valoda" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "PalÄ«dzi tulkot" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Lietojiet Å¡o adresi <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">lai piekļūtu saviem failiem ar WebDAV</a>" -#: 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/mk/core.po b/l10n/mk/core.po index 635c4d5788e..3025b02820e 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -157,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 "пред години" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 45dc0e167c0..edc9c5788bf 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,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 "Чека" @@ -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] "" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 1199ac03520..6c422946533 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 <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/mk/files_trashbin.po index 3d784eb2470..00dc438d7c5 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "Грешка" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "Име" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Избриши" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index cc59cb6e649..07a4a296d72 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-08 07:21-0400\n" -"PO-Revision-Date: 2013-10-07 21:00+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 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 "" -#: 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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Ðевалидна фотографија" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 954528d7374..42844875cd2 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/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-08 07:22-0400\n" -"PO-Revision-Date: 2013-10-07 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: miroj <jmiroslav@softhome.net>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\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 "Снимам..." @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -528,34 +528,34 @@ msgstr "" msgid "Language" msgstr "Јазик" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Помогни во преводот" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/ml_IN/lib.po b/l10n/ml_IN/lib.po index 0068185b81e..21974e1d32c 100644 --- a/l10n/ml_IN/lib.po +++ b/l10n/ml_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,321 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/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:250 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:359 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:372 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:383 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:395 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:408 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:152 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:173 private/setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 99bda85fd8b..bedc5fa9d3e 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -156,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 "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 5b30b3c3ff5..597a9054771 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,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 "Dalam proses" @@ -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] "" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 6e6ba55ae7a..2609fcf44b1 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 3e3725af5d1..35f781ee9f9 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "Ralat" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "Nama" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Padam" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 0a4794dc147..ff93a6574f2 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\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 "Bantuan" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Peribadi" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Tetapan" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Pengguna" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 508a73832ab..e80eb7cf138 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "Bahasa" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Bantu terjemah" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/my_MM/lib.po b/l10n/my_MM/lib.po index b69db8273f4..10011819b11 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 5edf0d17cb1..8fe6767cd21 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian BokmÃ¥l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -157,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" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 1517bab64f4..4dfa292ba71 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian BokmÃ¥l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -138,7 +138,7 @@ msgstr "Slett permanent" 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" @@ -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" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 7dfb2d030b7..b306724cab7 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_trashbin.po b/l10n/nb_NO/files_trashbin.po index 776489133bc..31ca6bd9308 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian BokmÃ¥l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Feil" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Navn" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Gjenopprett" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Slettet" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Slett" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 8c88dd2d0bf..bc9074b952b 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian BokmÃ¥l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: nb_NO\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 "" -#: 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 "Hjelp" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Personlig" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Innstillinger" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Brukere" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 16c200dffee..ed169b9b766 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian BokmÃ¥l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -529,34 +529,34 @@ msgstr "" msgid "Language" msgstr "SprÃ¥k" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Bidra til oversettelsen" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Bruk denne adressen for Ã¥ <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">fÃ¥ tilgang til filene dine via WebDAV</a>" -#: 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/ne/lib.po b/l10n/ne/lib.po index a45524a68a8..0cb877bee87 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,321 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/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:250 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:359 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:372 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:383 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:395 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:408 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:152 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:173 private/setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 4371e831d35..09b7dbf767e 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-16 19:47+0000\n" +"Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,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" @@ -275,144 +275,144 @@ msgstr "({count} geselecteerd)" msgid "Error loading file exists template" msgstr "Fout bij laden bestand bestaat al sjabloon" -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Gedeeld" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Delen" -#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 -#: js/share.js:679 +#: js/share.js:149 js/share.js:162 js/share.js:169 js/share.js:686 +#: js/share.js:698 msgid "Error" msgstr "Fout" -#: js/share.js:132 js/share.js:707 +#: js/share.js:151 js/share.js:726 msgid "Error while sharing" msgstr "Fout tijdens het delen" -#: js/share.js:143 +#: js/share.js:162 msgid "Error while unsharing" msgstr "Fout tijdens het stoppen met delen" -#: js/share.js:150 +#: js/share.js:169 msgid "Error while changing permissions" msgstr "Fout tijdens het veranderen van permissies" -#: js/share.js:159 +#: js/share.js:178 msgid "Shared with you and the group {group} by {owner}" msgstr "Gedeeld met u en de groep {group} door {owner}" -#: js/share.js:161 +#: js/share.js:180 msgid "Shared with you by {owner}" msgstr "Gedeeld met u door {owner}" -#: js/share.js:184 +#: js/share.js:203 msgid "Share with" msgstr "Deel met" -#: js/share.js:189 +#: js/share.js:208 msgid "Share with link" msgstr "Deel met link" -#: js/share.js:192 +#: js/share.js:211 msgid "Password protect" msgstr "Wachtwoord beveiligd" -#: js/share.js:194 templates/installation.php:57 templates/login.php:32 +#: js/share.js:213 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Wachtwoord" -#: js/share.js:199 +#: js/share.js:218 msgid "Allow Public Upload" msgstr "Sta publieke uploads toe" -#: js/share.js:203 +#: js/share.js:222 msgid "Email link to person" msgstr "E-mail link naar persoon" -#: js/share.js:204 +#: js/share.js:223 msgid "Send" msgstr "Versturen" -#: js/share.js:209 +#: js/share.js:228 msgid "Set expiration date" msgstr "Stel vervaldatum in" -#: js/share.js:210 +#: js/share.js:229 msgid "Expiration date" msgstr "Vervaldatum" -#: js/share.js:243 +#: js/share.js:262 msgid "Share via email:" msgstr "Deel via e-mail:" -#: js/share.js:246 +#: js/share.js:265 msgid "No people found" msgstr "Geen mensen gevonden" -#: js/share.js:284 +#: js/share.js:303 msgid "Resharing is not allowed" msgstr "Verder delen is niet toegestaan" -#: js/share.js:320 +#: js/share.js:339 msgid "Shared in {item} with {user}" msgstr "Gedeeld in {item} met {user}" -#: js/share.js:341 +#: js/share.js:360 msgid "Unshare" msgstr "Stop met delen" -#: js/share.js:353 +#: js/share.js:372 msgid "notify user by email" msgstr "Gebruiker via e-mail notificeren" -#: js/share.js:361 +#: js/share.js:380 msgid "can edit" msgstr "kan wijzigen" -#: js/share.js:363 +#: js/share.js:382 msgid "access control" msgstr "toegangscontrole" -#: js/share.js:366 +#: js/share.js:385 msgid "create" msgstr "creëer" -#: js/share.js:369 +#: js/share.js:388 msgid "update" msgstr "bijwerken" -#: js/share.js:372 +#: js/share.js:391 msgid "delete" msgstr "verwijderen" -#: js/share.js:375 +#: js/share.js:394 msgid "share" msgstr "deel" -#: js/share.js:409 js/share.js:654 +#: js/share.js:428 js/share.js:673 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:667 +#: js/share.js:686 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:679 +#: js/share.js:698 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:694 +#: js/share.js:713 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:705 +#: js/share.js:724 msgid "Email sent" msgstr "E-mail verzonden" -#: js/share.js:729 +#: js/share.js:748 msgid "Warning" msgstr "Waarschuwing" @@ -422,7 +422,7 @@ msgstr "Het object type is niet gespecificeerd." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Opgeven nieuw" #: js/tags.js:27 msgid "Delete" @@ -434,15 +434,15 @@ msgstr "Toevoegen" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Bewerken tags" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Fout bij laden dialoog sjabloon: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Geen tags geselecteerd voor verwijdering." #: js/update.js:17 msgid "" @@ -524,7 +524,7 @@ msgstr "Persoonlijk" msgid "Users" msgstr "Gebruikers" -#: strings.php:7 templates/layout.user.php:109 +#: strings.php:7 templates/layout.user.php:110 msgid "Apps" msgstr "Apps" @@ -538,31 +538,31 @@ msgstr "Help" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Fout bij laden tags" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Tag bestaat al" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Fout bij verwijderen tag(s)" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Fout bij taggen" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Fout bij ont-taggen" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Fout bij favoriet maken" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Fout bij verwijderen favorietstatus" #: templates/403.php:12 msgid "Access forbidden" @@ -682,12 +682,12 @@ msgstr "Installatie afronden" msgid "Finishing …" msgstr "Afronden ..." -#: templates/layout.user.php:42 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s is beschikbaar. Verkrijg meer informatie over het bijwerken." -#: templates/layout.user.php:70 +#: templates/layout.user.php:71 msgid "Log out" msgstr "Afmelden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 9786f5d5da6..c8abec7ed62 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-12 08:00+0000\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 <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -137,7 +137,7 @@ msgstr "Verwijder definitief" 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" @@ -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" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index f78cf6d0039..54210fdb8ff 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-16 19:47+0000\n" +"Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,13 +74,13 @@ msgstr "Uw privésleutel is niet geldig! Misschien was uw wachtwoord van buitena msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "Kan dit bestand niet ontcijferen, waarschijnlijk is het een gedeeld bestand, Vraag de eigenaar om het bestand opnieuw met u te delen." #: files/error.php:21 files/error.php:26 msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "" +msgstr "Onbekende fout, Controleer uw systeeminstellingen of neem contact op met uw systeembeheerder" #: hooks/hooks.php:53 msgid "Missing requirements." diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 13bbe8de98f..7edc016c6e3 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 <meneer@tken.net>\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_trashbin.po b/l10n/nl/files_trashbin.po index fd439cf03a1..74c4475eec7 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Fout" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Naam" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Herstellen" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Verwijderd" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Verwijder" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 2885c0a2fb4..b5edb70553e 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" -"Last-Translator: André Koot <meneer@tken.net>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,47 @@ msgstr "" "Language: nl\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 "App \"%s\" kan niet worden geïnstalleerd omdat die niet compatible is met deze versie van ownCloud." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "De app naam is niet gespecificeerd." -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Help" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Persoonlijk" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Instellingen" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Gebruikers" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Beheerder" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgrade \"%s\" mislukt." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Maatwerk profielafbeelding werkt nog niet met versleuteling" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Onbekend bestandsformaat" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Ongeldige afbeelding" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 5dd76e52f34..a6effcb0241 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 07: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: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 9bc0e05d7bc..021c53fba13 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -159,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" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index e1b3babfc3e..70b5e022bd6 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -138,7 +138,7 @@ msgstr "Slett for godt" 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" @@ -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" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index f8aa9c92334..eef23a85042 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index a88e34c958f..9ef3981a29a 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -37,23 +37,23 @@ msgstr "Feil" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Namn" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Gjenopprett" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Sletta" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Slett" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index e08ae3f05fb..09cff489878 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,51 +19,47 @@ msgstr "" "Language: nn_NO\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 "" -#: 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 "Hjelp" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Personleg" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Innstillingar" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Brukarar" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administrer" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Ukjend filtype" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Ugyldig bilete" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 5d6356c385e..6fad80c6fa4 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -530,34 +530,34 @@ msgstr "Vel som profilbilete" msgid "Language" msgstr "SprÃ¥k" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Hjelp oss Ã¥ omsetja" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Bruk denne adressa for Ã¥ <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">henta filene dine over WebDAV</a>" -#: 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/nqo/lib.po b/l10n/nqo/lib.po index 6f2612e0817..cf8b16de52b 100644 --- a/l10n/nqo/lib.po +++ b/l10n/nqo/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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -17,314 +17,317 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/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:250 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:359 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:372 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:383 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:395 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:408 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:152 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:173 private/setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index cfb01291bbc..7069c5425ae 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -156,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" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index b0cbe580c3f..de68580e640 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,7 @@ msgstr "" 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" @@ -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] "" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 92b87053267..b00af63f4b3 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 9978295c0fc..0379fc2ecf8 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "Error" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "Nom" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Escafa" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 9cb5f58d45a..6d8624d101f 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: oc\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 "" -#: 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 "Ajuda" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Personal" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Configuracion" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Usancièrs" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 96dcb1d5e0e..7b9721707fd 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "Lenga" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Ajuda a la revirada" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/core.po b/l10n/pa/core.po index fd1ae456d64..22e7e77f9aa 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -157,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 "ਸਾਲਾਂ ਪਹਿਲਾਂ" diff --git a/l10n/pa/files.po b/l10n/pa/files.po index bb2ae622958..23a3dfaa3ea 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/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 <owncloud-bot@tmit.eu>\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_external.po b/l10n/pa/files_external.po index 9e513d0cc42..cf7cbd09060 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 <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/pa/files_trashbin.po index b5dca330f6e..c5abc19fde4 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "ਗਲਤੀ" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "ਹਟਾਓ" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index 6747e51ba07..382f83808a1 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/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-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:14+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,321 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/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:250 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:359 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:372 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:383 msgid "Settings" msgstr "ਸੈਟਿੰਗ" -#: app.php:397 +#: private/app.php:395 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:408 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:152 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ਫਾਇਲਾਂ" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:173 private/setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "ਅੱਜ" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "ਕੱਲà©à¨¹" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "ਪਿਛਲੇ ਸਾਲ" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 54ca3537c3a..5d39008bc7f 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -528,34 +528,34 @@ msgstr "" msgid "Language" msgstr "" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/pl/core.po b/l10n/pl/core.po index a4a01c71ac0..b4181d21ff9 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -158,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" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index e159b8c7883..72e19dd1dbd 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -138,7 +138,7 @@ msgstr "Trwale usuÅ„" 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" @@ -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" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 759e4d7247b..02dc6fc13b9 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 <cyrylsochacki@gmail.com>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Ostrzeżenie:</b> \"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 "" "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "<b>Ostrzeżenie:</b> 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 "" "<b>Warning:</b> 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_trashbin.po b/l10n/pl/files_trashbin.po index 254f37cba0a..df275473c4c 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "BÅ‚Ä…d" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Nazwa" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Przywróć" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "UsuniÄ™te" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "UsuÅ„" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 02b7e90faec..e7b72b10b05 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/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: Cyryl Sochacki <cyrylsochacki@gmail.com>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,47 @@ 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" -#: 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 "Aplikacja \"%s\" nie może zostać zainstalowana, ponieważ nie jest zgodna z tÄ… wersjÄ… ownCloud." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "Nie okreÅ›lono nazwy aplikacji" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Pomoc" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Osobiste" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Ustawienia" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Użytkownicy" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administrator" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "BÅ‚Ä…d przy aktualizacji \"%s\"." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "DomyÅ›lny profil zdjęć nie dziaÅ‚a z szyfrowaniem jeszcze" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Nieznany typ pliku" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "BÅ‚Ä™dne zdjÄ™cie" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 6a3be9b0375..326fff9ca3a 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-10 11: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: Cyryl Sochacki <cyrylsochacki@gmail.com>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\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..." @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -529,34 +529,34 @@ msgstr "Wybierz zdjÄ™cie profilu" msgid "Language" msgstr "JÄ™zyk" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Pomóż w tÅ‚umaczeniu" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Użyj tego adresu do <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">dostÄ™pu do twoich plików przez WebDAV</a>" -#: 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/pt_BR/core.po b/l10n/pt_BR/core.po index e761e418f61..0b5a2f40525 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <flaviove@gmail.com>\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" @@ -158,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" @@ -421,7 +421,7 @@ msgstr "O tipo de objeto não foi especificado." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Entrar uma nova" #: js/tags.js:27 msgid "Delete" @@ -433,15 +433,15 @@ msgstr "Adicionar" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Editar etiqueta" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Erro carregando diálogo de formatação:{error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Nenhuma etiqueta selecionada para deleção." #: js/update.js:17 msgid "" @@ -537,31 +537,31 @@ msgstr "Ajuda" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr " Erro carregando etiqueta" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "tiqueta já existe" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Erro deletando etiqueta(s)" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Erro etiquetando" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Erro retirando etiquetando" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Erro colocando no favoritos" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Erro retirando do favoritos" #: templates/403.php:12 msgid "Access forbidden" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index e65aace59c7..b30691d696a 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -138,7 +138,7 @@ msgstr "Excluir permanentemente" 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" @@ -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" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index c4ec8f7f570..f0ed0731658 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <flaviove@gmail.com>\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" @@ -75,13 +75,13 @@ msgstr "Sua chave privada não é válida! Provavelmente sua senha foi alterada msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +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 "" +msgstr "Erro desconhecido, por favor verifique suas configurações ou faça contato com o administrador" #: hooks/hooks.php:53 msgid "Missing requirements." diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index e47a052c0bd..2103f7e97ac 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 <flaviove@gmail.com>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Aviso:</b> \"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 "" "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "<b>Aviso:</b> 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 "" "<b>Warning:</b> 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_trashbin.po b/l10n/pt_BR/files_trashbin.po index c86485d45e4..766e7bcb130 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Erro" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Nome" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restaurar" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "ExcluÃdo" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Excluir" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index e8b2c2b05d3..9487725146b 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/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: Flávio Veras <flaviove@gmail.com>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,47 @@ msgstr "" "Language: pt_BR\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 "O aplicativo \"%s\" não pode ser instalado porque não é compatÃvel com esta versão do ownCloud." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "O nome do aplicativo 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 "Ajustes" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Usuários" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falha na atualização de \"%s\"." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "Fotos de perfil personalizados ainda não funcionam com criptografia" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Tipo de arquivo desconhecido" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Imagem inválida" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 4945009eba1..0acac8b89dc 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 <flaviove@gmail.com>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -529,34 +529,34 @@ msgstr "Escolha como imagem para o perfil" msgid "Language" msgstr "Idioma" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Use esse endereço para <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">acessar seus arquivos via WebDAV</a>" -#: 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_PT/core.po b/l10n/pt_PT/core.po index d21be2dcf19..b08b898d509 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -6,15 +6,16 @@ # Bruno Martins <brunomomartins@gmail.com>, 2013 # bmgmatias <bmgmatias@gmail.com>, 2013 # Mouxy <daniel@mouxy.net>, 2013 +# Duarte Velez Grilo <duartegrilo@gmail.com>, 2013 # Gontxi <goncalo.baiao@gmail.com>, 2013 # Helder Meneses <helder.meneses@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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 <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-16 10:00+0000\n" +"Last-Translator: Duarte Velez Grilo <duartegrilo@gmail.com>\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" @@ -161,55 +162,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" @@ -263,158 +264,158 @@ msgstr "Cancelar" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Continuar" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(todos seleccionados)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} seleccionados)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" msgstr "" -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Partilhado" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Partilhar" -#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 -#: js/share.js:679 +#: js/share.js:149 js/share.js:162 js/share.js:169 js/share.js:686 +#: js/share.js:698 msgid "Error" msgstr "Erro" -#: js/share.js:132 js/share.js:707 +#: js/share.js:151 js/share.js:726 msgid "Error while sharing" msgstr "Erro ao partilhar" -#: js/share.js:143 +#: js/share.js:162 msgid "Error while unsharing" msgstr "Erro ao deixar de partilhar" -#: js/share.js:150 +#: js/share.js:169 msgid "Error while changing permissions" msgstr "Erro ao mudar permissões" -#: js/share.js:159 +#: js/share.js:178 msgid "Shared with you and the group {group} by {owner}" msgstr "Partilhado consigo e com o grupo {group} por {owner}" -#: js/share.js:161 +#: js/share.js:180 msgid "Shared with you by {owner}" msgstr "Partilhado consigo por {owner}" -#: js/share.js:184 +#: js/share.js:203 msgid "Share with" msgstr "Partilhar com" -#: js/share.js:189 +#: js/share.js:208 msgid "Share with link" msgstr "Partilhar com link" -#: js/share.js:192 +#: js/share.js:211 msgid "Password protect" msgstr "Proteger com palavra-passe" -#: js/share.js:194 templates/installation.php:57 templates/login.php:32 +#: js/share.js:213 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Password" -#: js/share.js:199 +#: js/share.js:218 msgid "Allow Public Upload" msgstr "Permitir Envios Públicos" -#: js/share.js:203 +#: js/share.js:222 msgid "Email link to person" msgstr "Enviar o link por e-mail" -#: js/share.js:204 +#: js/share.js:223 msgid "Send" msgstr "Enviar" -#: js/share.js:209 +#: js/share.js:228 msgid "Set expiration date" msgstr "Especificar data de expiração" -#: js/share.js:210 +#: js/share.js:229 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:243 +#: js/share.js:262 msgid "Share via email:" msgstr "Partilhar via email:" -#: js/share.js:246 +#: js/share.js:265 msgid "No people found" msgstr "Não foi encontrado ninguém" -#: js/share.js:284 +#: js/share.js:303 msgid "Resharing is not allowed" msgstr "Não é permitido partilhar de novo" -#: js/share.js:320 +#: js/share.js:339 msgid "Shared in {item} with {user}" msgstr "Partilhado em {item} com {user}" -#: js/share.js:341 +#: js/share.js:360 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/share.js:353 +#: js/share.js:372 msgid "notify user by email" -msgstr "" +msgstr "notificar utilizador por correio electrónico" -#: js/share.js:361 +#: js/share.js:380 msgid "can edit" msgstr "pode editar" -#: js/share.js:363 +#: js/share.js:382 msgid "access control" msgstr "Controlo de acesso" -#: js/share.js:366 +#: js/share.js:385 msgid "create" msgstr "criar" -#: js/share.js:369 +#: js/share.js:388 msgid "update" msgstr "actualizar" -#: js/share.js:372 +#: js/share.js:391 msgid "delete" msgstr "apagar" -#: js/share.js:375 +#: js/share.js:394 msgid "share" msgstr "partilhar" -#: js/share.js:409 js/share.js:654 +#: js/share.js:428 js/share.js:673 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:667 +#: js/share.js:686 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:679 +#: js/share.js:698 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:694 +#: js/share.js:713 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:705 +#: js/share.js:724 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:729 +#: js/share.js:748 msgid "Warning" msgstr "Aviso" @@ -526,7 +527,7 @@ msgstr "Pessoal" msgid "Users" msgstr "Utilizadores" -#: strings.php:7 templates/layout.user.php:109 +#: strings.php:7 templates/layout.user.php:110 msgid "Apps" msgstr "Aplicações" @@ -682,14 +683,14 @@ msgstr "Acabar instalação" #: templates/installation.php:184 msgid "Finishing …" -msgstr "" +msgstr "A terminar..." -#: templates/layout.user.php:42 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está disponÃvel. Tenha mais informações como actualizar." -#: templates/layout.user.php:70 +#: templates/layout.user.php:71 msgid "Log out" msgstr "Sair" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index fd6ec2c75ed..c68eae3af39 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+0000\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 <helder.meneses@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -138,7 +138,7 @@ msgstr "Eliminar permanentemente" 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" @@ -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" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 4c13e6b3158..971e07ff2df 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 <daniel@mouxy.net>\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 007a73ccd8a..cf19cb1ae9f 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Duarte Velez Grilo <duartegrilo@gmail.com>, 2013 # Helder Meneses <helder.meneses@gmail.com>, 2013 # moliveira <manuel.oliveira@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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 <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-16 10:00+0000\n" +"Last-Translator: Duarte Velez Grilo <duartegrilo@gmail.com>\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" @@ -21,7 +22,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "Esta partilha está protegida por palavra-chave" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 8ac67966c21..5d57bfb1952 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Erro" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Nome" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Restaurar" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Apagado" -#: templates/index.php:37 templates/index.php:38 +#: 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 b6b6fdc0a13..9174f731b92 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-09 18:00+0000\n" -"Last-Translator: Helder Meneses <helder.meneses@gmail.com>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,20 +49,16 @@ msgstr "Utilizadores" msgid "Admin" msgstr "Admin" -#: private/app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "A actualização \"%s\" falhou." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Ficheiro desconhecido" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Imagem inválida" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index a9e185d7607..66a7fad29c6 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-09 17: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: Duarte Velez Grilo <duartegrilo@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -162,15 +162,15 @@ msgstr "Actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:225 +#: js/personal.js:220 msgid "Select a profile picture" 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..." @@ -389,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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -532,34 +532,34 @@ msgstr "Escolha uma fotografia de perfil" msgid "Language" msgstr "Idioma" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Use este endereço para <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">aceder aos seus ficheiros via WebDav</a>" -#: 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/ro/core.po b/l10n/ro/core.po index 147d260a9cb..deaf7a36dc6 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -160,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ă" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 20d06128381..8067a97a6f1 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -140,7 +140,7 @@ msgstr "Stergere permanenta" 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" @@ -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." diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index cd50fa140dc..1557bac71d8 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 <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/ro/files_trashbin.po index 28f35cd800b..f92d6ab20fa 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "Eroare" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "Nume" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Șterge" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 65695821ebb..cbe8a1821e8 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,47 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2: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 "" -#: 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 "Ajutor" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Personal" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Setări" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Utilizatori" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Tip fiÈ™ier necunoscut" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Imagine invalidă" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 2cf33497eef..33ddac0ed7c 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -529,34 +529,34 @@ msgstr "Alege drept imagine de profil" msgid "Language" msgstr "Limba" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Ajută la traducere" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/ru/core.po b/l10n/ru/core.po index a02c5ffa5f5..8a8d5635b37 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -168,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 "неÑколько лет назад" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 94d28f0a7a1..3f7bb11baaa 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -142,7 +142,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 "Ожидание" @@ -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 файла" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 33d50b6b3f4..98fb2c40bec 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 <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/ru/files_trashbin.po index 168ee1bd7df..95ac5cbc023 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Ошибка" msgid "restored" msgstr "воÑÑтановлен" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "ЗдеÑÑŒ ничего нет. Ваша корзина пуÑта!" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "ИмÑ" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "ВоÑÑтановить" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Удалён" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Удалить" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 4d5a6d252cc..ac52817cc89 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.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-02 13:20+0000\n" -"Last-Translator: jekader <jekader@gmail.com>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,51 +23,47 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: 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 "Приложение \"%s\" Ð½ÐµÐ»ÑŒÐ·Ñ ÑƒÑтановить, так как оно не ÑовмеÑтимо Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ верÑией ownCloud." -#: 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 "Admin" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ðе Ñмог обновить \"%s\"." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "ПользовательÑкие картинки Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ ÐµÑ‰Ñ‘ не поддерживают шифрование" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "ÐеизвеÑтный тип файла" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Изображение повреждено" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 48ee583afd7..da611ef4d9f 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -536,34 +536,34 @@ msgstr "Выберите изображение профилÑ" msgid "Language" msgstr "Язык" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Помочь Ñ Ð¿ÐµÑ€ÐµÐ²Ð¾Ð´Ð¾Ð¼" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "ИÑпользуйте Ñтот Ð°Ð´Ñ€ÐµÑ Ñ‡Ñ‚Ð¾Ð±Ñ‹ получить доÑтуп к вашим файлам через WebDav - <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">" -#: 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/core.po b/l10n/si_LK/core.po index 5fb68acab6c..dc5dc0149d1 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -156,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 "අවුරුදු කීපයකට පෙර" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 37ae590a0fb..0651f0ccb5c 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,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 "" @@ -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] "" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 741ba55b3e1..2d16fa4f49a 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 4e6567f2cbb..8d08295728f 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "දà·à·‚යක්" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "නම" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "මක෠දමන්න" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index e09474f7703..6d594859047 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: si_LK\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 "" -#: 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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 1bba29ef044..bec9bd7cacc 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "භà·à·‚à·à·€" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "පරිවර්ථන සහය" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/sk/lib.po b/l10n/sk/lib.po index 27f317215a5..fd3fd44c3a8 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -17,322 +17,325 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:239 +#: private/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:250 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:359 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:372 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:383 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:395 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:408 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:152 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:173 private/setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 384480517e4..b09244fa69b 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -158,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" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 5fd3e0096f3..dd151cd941a 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "ZmazaÅ¥ trvalo" 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" @@ -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" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 33c04c25182..df238201d76 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 <marian.hvolka@stuba.sk>\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_trashbin.po b/l10n/sk_SK/files_trashbin.po index 80355c8b6d8..db6f83ac264 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Chyba" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Názov" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "ObnoviÅ¥" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Zmazané" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "ZmazaÅ¥" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index e85df073fcc..f016158d4fd 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -19,51 +19,47 @@ msgstr "" "Language: sk_SK\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 "Aplikácia \"%s\" nemôže byÅ¥ nainÅ¡talovaná kvôli nekompatibilite z danou verziou ownCloudu." -#: private/app.php:248 +#: private/app.php:254 msgid "No app name specified" msgstr "NeÅ¡pecifikované meno aplikácie" -#: private/app.php:352 +#: private/app.php:359 msgid "Help" msgstr "Pomoc" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Osobné" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Nastavenia" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "PoužÃvatelia" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Administrátor" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Zlyhala aktualizácia \"%s\"." -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index b44a7438343..da76f4bdb0b 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -529,34 +529,34 @@ msgstr "" msgid "Language" msgstr "Jazyk" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "PomôcÅ¥ s prekladom" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Použite túto adresu <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">pre prÃstup k súborom cez WebDAV</a>" -#: 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/sl/core.po b/l10n/sl/core.po index ef29fc98fc5..806735b76f1 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -158,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] "" @@ -170,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] "" @@ -178,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] "" @@ -194,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] "" @@ -206,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" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 058b2ec0ebd..524cfb1697f 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "IzbriÅ¡i dokonÄno" 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 ..." @@ -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] "" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 14fecb56ea0..f9f7218e7a0 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_trashbin.po b/l10n/sl/files_trashbin.po index a1311a4aa1f..48a84a7fa8c 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "Napaka" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Ime" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Obnovi" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Izbrisano" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "IzbriÅ¡i" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 57196586893..5ca4a8b687c 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,47 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: 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 "PomoÄ" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Osebno" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Nastavitve" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Uporabniki" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "SkrbniÅ¡tvo" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index cb7d56aab65..ebaae968d34 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -529,34 +529,34 @@ msgstr "" msgid "Language" msgstr "Jezik" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Sodelujte pri prevajanju" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/sq/core.po b/l10n/sq/core.po index 3d83af99192..d22fa7a066d 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -158,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ë" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index ca0c9dde5e1..3d6e48ffb6e 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "Elimino përfundimisht" 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" @@ -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" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 93df5818827..0d34f4b0f11 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 <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/sq/files_trashbin.po index 1c26765b616..e00ea4e65cb 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Veprim i gabuar" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Emri" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Rivendos" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Eliminuar" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Elimino" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 8d7f5344cb4..81de426bccb 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: sq\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 "" -#: 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 "Ndihmë" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Personale" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Parametra" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Përdoruesit" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Admin" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 04795ca25de..867fec92f63 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/core.po b/l10n/sr/core.po index 322c01e097e..20c259a7cef 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -156,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 "година раније" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 3bd592d1f10..10d614b377c 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,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 "Ðа чекању" @@ -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] "" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index fef547c2b92..1b2905c7fae 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 <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/sr/files_trashbin.po index 323c0428f80..7b0c084133e 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "Грешка" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Овде нема ништа. Корпа за отпатке је празна." -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "Име" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Врати" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "ОбриÑано" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Обриши" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 7e3ecdf193f..d70e237a46c 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: 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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 4920132355d..37f218dc0d8 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "Језик" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr " Помозите у превођењу" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/core.po b/l10n/sr@latin/core.po index f1b449948cc..619ce22577f 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -157,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" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 4a0d0d98011..7181df3fc45 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,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 "" @@ -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] "" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 438ab9f1983..cc36587c34d 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index f416012ff60..2c962a0d964 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "GreÅ¡ka" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "Ime" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "ObriÅ¡i" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 322d7d62992..6fba0c121da 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: 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 "Pomoć" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "LiÄno" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "PodeÅ¡avanja" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "Korisnici" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Adninistracija" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index dbcfe052434..8725e1145ba 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "Jezik" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/sv/core.po b/l10n/sv/core.po index d488dc179a8..442b97e303f 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -5,6 +5,7 @@ # Translators: # Daniel Sandman <revoltism@gmail.com>, 2013 # Gunnar Norin <blittan@xbmc.org>, 2013 +# Gustav Smedberg <shadow.elf@hotmail.com>, 2013 # medialabs, 2013 # Magnus Höglund <magnus@linux.com>, 2013 # medialabs, 2013 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-16 18:50+0000\n" +"Last-Translator: Gustav Smedberg <shadow.elf@hotmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,55 +162,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" @@ -277,144 +278,144 @@ msgstr "({count} valda)" msgid "Error loading file exists template" msgstr "Fel uppstod filmall existerar" -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Delad" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "Dela" -#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 -#: js/share.js:679 +#: js/share.js:149 js/share.js:162 js/share.js:169 js/share.js:686 +#: js/share.js:698 msgid "Error" msgstr "Fel" -#: js/share.js:132 js/share.js:707 +#: js/share.js:151 js/share.js:726 msgid "Error while sharing" msgstr "Fel vid delning" -#: js/share.js:143 +#: js/share.js:162 msgid "Error while unsharing" msgstr "Fel när delning skulle avslutas" -#: js/share.js:150 +#: js/share.js:169 msgid "Error while changing permissions" msgstr "Fel vid ändring av rättigheter" -#: js/share.js:159 +#: js/share.js:178 msgid "Shared with you and the group {group} by {owner}" msgstr "Delad med dig och gruppen {group} av {owner}" -#: js/share.js:161 +#: js/share.js:180 msgid "Shared with you by {owner}" msgstr "Delad med dig av {owner}" -#: js/share.js:184 +#: js/share.js:203 msgid "Share with" msgstr "Delad med" -#: js/share.js:189 +#: js/share.js:208 msgid "Share with link" msgstr "Delad med länk" -#: js/share.js:192 +#: js/share.js:211 msgid "Password protect" msgstr "Lösenordsskydda" -#: js/share.js:194 templates/installation.php:57 templates/login.php:32 +#: js/share.js:213 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Lösenord" -#: js/share.js:199 +#: js/share.js:218 msgid "Allow Public Upload" msgstr "TillÃ¥t publik uppladdning" -#: js/share.js:203 +#: js/share.js:222 msgid "Email link to person" msgstr "E-posta länk till person" -#: js/share.js:204 +#: js/share.js:223 msgid "Send" msgstr "Skicka" -#: js/share.js:209 +#: js/share.js:228 msgid "Set expiration date" msgstr "Sätt utgÃ¥ngsdatum" -#: js/share.js:210 +#: js/share.js:229 msgid "Expiration date" msgstr "UtgÃ¥ngsdatum" -#: js/share.js:243 +#: js/share.js:262 msgid "Share via email:" msgstr "Dela via e-post:" -#: js/share.js:246 +#: js/share.js:265 msgid "No people found" msgstr "Hittar inga användare" -#: js/share.js:284 +#: js/share.js:303 msgid "Resharing is not allowed" msgstr "Dela vidare är inte tillÃ¥tet" -#: js/share.js:320 +#: js/share.js:339 msgid "Shared in {item} with {user}" msgstr "Delad i {item} med {user}" -#: js/share.js:341 +#: js/share.js:360 msgid "Unshare" msgstr "Sluta dela" -#: js/share.js:353 +#: js/share.js:372 msgid "notify user by email" msgstr "notifiera användare via e-post" -#: js/share.js:361 +#: js/share.js:380 msgid "can edit" msgstr "kan redigera" -#: js/share.js:363 +#: js/share.js:382 msgid "access control" msgstr "Ã¥tkomstkontroll" -#: js/share.js:366 +#: js/share.js:385 msgid "create" msgstr "skapa" -#: js/share.js:369 +#: js/share.js:388 msgid "update" msgstr "uppdatera" -#: js/share.js:372 +#: js/share.js:391 msgid "delete" msgstr "radera" -#: js/share.js:375 +#: js/share.js:394 msgid "share" msgstr "dela" -#: js/share.js:409 js/share.js:654 +#: js/share.js:428 js/share.js:673 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:667 +#: js/share.js:686 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgÃ¥ngsdatum" -#: js/share.js:679 +#: js/share.js:698 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgÃ¥ngsdatum" -#: js/share.js:694 +#: js/share.js:713 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:705 +#: js/share.js:724 msgid "Email sent" msgstr "E-post skickat" -#: js/share.js:729 +#: js/share.js:748 msgid "Warning" msgstr "Varning" @@ -424,7 +425,7 @@ msgstr "Objekttypen är inte specificerad." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Skriv nytt" #: js/tags.js:27 msgid "Delete" @@ -526,7 +527,7 @@ msgstr "Personligt" msgid "Users" msgstr "Användare" -#: strings.php:7 templates/layout.user.php:109 +#: strings.php:7 templates/layout.user.php:110 msgid "Apps" msgstr "Program" @@ -560,7 +561,7 @@ msgstr "" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Fel favorisering" #: tags/controller.php:108 msgid "Error unfavoriting" @@ -684,12 +685,12 @@ msgstr "Avsluta installation" msgid "Finishing …" msgstr "Avslutar ..." -#: templates/layout.user.php:42 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s är tillgänglig. FÃ¥ mer information om hur du gÃ¥r tillväga för att uppdatera." -#: templates/layout.user.php:70 +#: templates/layout.user.php:71 msgid "Log out" msgstr "Logga ut" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 57c38cbf1bf..069cde07633 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 21: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: Daniel Sandman <revoltism@gmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -140,7 +140,7 @@ msgstr "Radera permanent" 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" @@ -184,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" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index b1e9501ba6a..8e97d344e59 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -4,6 +4,7 @@ # # Translators: # Daniel Sandman <revoltism@gmail.com>, 2013 +# Gustav Smedberg <shadow.elf@hotmail.com>, 2013 # medialabs, 2013 # Magnus Höglund <magnus@linux.com>, 2013 # medialabs, 2013 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-16 19:00+0000\n" +"Last-Translator: Gustav Smedberg <shadow.elf@hotmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,13 +78,13 @@ msgstr "Lösenordet för din privata nyckel är inte giltig! Troligen har ditt l msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "Kan ej dekryptera denna fil, förmodligen är det en delad fil. Be ägaren av filen att dela den med dig." #: files/error.php:21 files/error.php:26 msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "" +msgstr "Oväntat fel, kolla dina system inställningar eller kontakta din administratör" #: hooks/hooks.php:53 msgid "Missing requirements." diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 8cb61284600..174aab0fd3e 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 d591ac24998..e4bb926cb98 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Gustav Smedberg <shadow.elf@hotmail.com>, 2013 # Magnus Höglund <magnus@linux.com>, 2013 # Stefan Gagner <stefan@mei-ya.se>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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 <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-16 19:00+0000\n" +"Last-Translator: Gustav Smedberg <shadow.elf@hotmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +22,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "Den här delningen är lösenordsskyddad" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 99829fc7009..ceb1560879d 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -37,23 +37,23 @@ msgstr "Fel" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Namn" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Ã…terskapa" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Raderad" -#: templates/index.php:37 templates/index.php:38 +#: 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 8b8e72c53a1..6b053c135a1 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 21:20+0000\n" -"Last-Translator: Daniel Sandman <revoltism@gmail.com>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,20 +52,16 @@ msgstr "Användare" msgid "Admin" msgstr "Admin" -#: private/app.php:839 +#: private/app.php:872 #, 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 "Anpassningsbara profilbilder fungerar inte med kryptering ännu." - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Okänd filtyp" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Ogiltig bild" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 8f2dedc9d54..63264b5cc77 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -5,6 +5,7 @@ # Translators: # Daniel Sandman <revoltism@gmail.com>, 2013 # Gunnar Norin <blittan@xbmc.org>, 2013 +# Gustav Smedberg <shadow.elf@hotmail.com>, 2013 # Jan Busk, 2013 # Jan Busk, 2013 # medialabs, 2013 @@ -14,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-05 15:12+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-16 19:00+0000\n" +"Last-Translator: Gustav Smedberg <shadow.elf@hotmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,15 +165,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 +189,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" @@ -349,11 +350,11 @@ msgstr "TillÃ¥t bara delning med användare i egna grupper" #: templates/admin.php:170 msgid "Allow mail notification" -msgstr "" +msgstr "TillÃ¥t e-post notifikation" #: templates/admin.php:171 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "TillÃ¥t användare att skicka e-port notifikationer för delade filer" #: templates/admin.php:178 msgid "Security" @@ -391,11 +392,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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -534,34 +535,34 @@ msgstr "Välj som profilbild" msgid "Language" msgstr "SprÃ¥k" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Hjälp att översätta" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "Använd denna adress för att <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">komma Ã¥t dina filer via WebDAV</a>" -#: 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 5ab40729a96..7cb62c84f2d 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Gustav Smedberg <shadow.elf@hotmail.com>, 2013 # Jan Busk, 2013 # Magnus Höglund <magnus@linux.com>, 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-16 19:00+0000\n" +"Last-Translator: Gustav Smedberg <shadow.elf@hotmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -372,11 +373,11 @@ msgstr "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-a #: templates/settings.php:103 msgid "UUID Attribute for Users:" -msgstr "" +msgstr "UUID Attribut för Användare:" #: templates/settings.php:104 msgid "UUID Attribute for Groups:" -msgstr "" +msgstr "UUID Attribut för Grupper:" #: templates/settings.php:105 msgid "Username-LDAP User Mapping" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 1c9b03e9174..f3230ae4002 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,321 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/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:250 +#: private/app.php:254 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:359 msgid "Help" msgstr "" -#: app.php:374 +#: private/app.php:372 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:383 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:395 msgid "Users" msgstr "" -#: app.php:410 +#: private/app.php:408 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: private/installer.php:146 msgid "" "App can't be installed because it contains the <shipped>true</shipped> tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: private/installer.php:152 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: private/json.php:39 private/json.php:62 private/json.php:73 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:17 search/provider/file.php:35 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:26 search/provider/file.php:33 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:147 +#: private/setup/oci.php:154 private/setup/oci.php:165 +#: private/setup/oci.php:172 private/setup/oci.php:181 +#: private/setup/oci.php:189 private/setup/oci.php:198 +#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:148 +#: private/setup/oci.php:155 private/setup/oci.php:166 +#: private/setup/oci.php:182 private/setup/oci.php:190 +#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: private/setup/oci.php:173 private/setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:184 +#: private/setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index fb4e3d72088..b907698169b 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -156,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 "வரà¯à®Ÿà®™à¯à®•à®³à¯à®•à¯à®•à¯ à®®à¯à®©à¯" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 19a1a5bea2b..5183845215a 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,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 "நிலà¯à®µà¯ˆà®¯à®¿à®²à¯à®³à¯à®³" @@ -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] "" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 42e8617601a..2f3a6e88b5d 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 36891b91061..770827b9b97 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "வழà¯" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "பெயரà¯" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "நீகà¯à®•à¯à®•" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 4fd74012754..71d092f0437 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: ta_LK\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 "" -#: 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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 2777ae60f0c..3eaadd0d542 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "மொழி" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "மொழிபெயரà¯à®•à¯à®• உதவி" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/core.po b/l10n/te/core.po index 8c38f93b946..e952beee8cb 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -156,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 "సంవతà±à°¸à°°à°¾à°² à°•à±à°°à°¿à°¤à°‚" diff --git a/l10n/te/files.po b/l10n/te/files.po index 5ec3896b375..81412e02346 100644 --- a/l10n/te/files.po +++ b/l10n/te/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,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 "" @@ -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] "" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 050d9359e38..41c836e21d0 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 <owncloud-bot@tmit.eu>\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_trashbin.po b/l10n/te/files_trashbin.po index 4cf7c03680c..0d93ad1234a 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "పొరపాటà±" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "పేరà±" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "తొలగించà±" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 843489a11c6..3826c2acb7d 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: te\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 "" -#: 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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index be0dfd5ad0e..7dfdba1c728 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "à°à°¾à°·" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/core.pot b/l10n/templates/core.pot index 8957048b270..b768b8e66d0 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-13 20:29-0400\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -157,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 "" @@ -273,144 +273,144 @@ msgstr "" msgid "Error loading file exists template" msgstr "" -#: js/share.js:30 js/share.js:45 js/share.js:87 +#: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" -#: js/share.js:90 +#: js/share.js:109 msgid "Share" msgstr "" -#: js/share.js:130 js/share.js:143 js/share.js:150 js/share.js:667 -#: js/share.js:679 +#: js/share.js:149 js/share.js:162 js/share.js:169 js/share.js:686 +#: js/share.js:698 msgid "Error" msgstr "" -#: js/share.js:132 js/share.js:707 +#: js/share.js:151 js/share.js:726 msgid "Error while sharing" msgstr "" -#: js/share.js:143 +#: js/share.js:162 msgid "Error while unsharing" msgstr "" -#: js/share.js:150 +#: js/share.js:169 msgid "Error while changing permissions" msgstr "" -#: js/share.js:159 +#: js/share.js:178 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:161 +#: js/share.js:180 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:184 +#: js/share.js:203 msgid "Share with" msgstr "" -#: js/share.js:189 +#: js/share.js:208 msgid "Share with link" msgstr "" -#: js/share.js:192 +#: js/share.js:211 msgid "Password protect" msgstr "" -#: js/share.js:194 templates/installation.php:57 templates/login.php:32 +#: js/share.js:213 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:199 +#: js/share.js:218 msgid "Allow Public Upload" msgstr "" -#: js/share.js:203 +#: js/share.js:222 msgid "Email link to person" msgstr "" -#: js/share.js:204 +#: js/share.js:223 msgid "Send" msgstr "" -#: js/share.js:209 +#: js/share.js:228 msgid "Set expiration date" msgstr "" -#: js/share.js:210 +#: js/share.js:229 msgid "Expiration date" msgstr "" -#: js/share.js:243 +#: js/share.js:262 msgid "Share via email:" msgstr "" -#: js/share.js:246 +#: js/share.js:265 msgid "No people found" msgstr "" -#: js/share.js:284 +#: js/share.js:303 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:320 +#: js/share.js:339 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:341 +#: js/share.js:360 msgid "Unshare" msgstr "" -#: js/share.js:353 +#: js/share.js:372 msgid "notify user by email" msgstr "" -#: js/share.js:361 +#: js/share.js:380 msgid "can edit" msgstr "" -#: js/share.js:363 +#: js/share.js:382 msgid "access control" msgstr "" -#: js/share.js:366 +#: js/share.js:385 msgid "create" msgstr "" -#: js/share.js:369 +#: js/share.js:388 msgid "update" msgstr "" -#: js/share.js:372 +#: js/share.js:391 msgid "delete" msgstr "" -#: js/share.js:375 +#: js/share.js:394 msgid "share" msgstr "" -#: js/share.js:409 js/share.js:654 +#: js/share.js:428 js/share.js:673 msgid "Password protected" msgstr "" -#: js/share.js:667 +#: js/share.js:686 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:679 +#: js/share.js:698 msgid "Error setting expiration date" msgstr "" -#: js/share.js:694 +#: js/share.js:713 msgid "Sending ..." msgstr "" -#: js/share.js:705 +#: js/share.js:724 msgid "Email sent" msgstr "" -#: js/share.js:729 +#: js/share.js:748 msgid "Warning" msgstr "" @@ -522,7 +522,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:109 +#: strings.php:7 templates/layout.user.php:110 msgid "Apps" msgstr "" @@ -680,12 +680,12 @@ msgstr "" msgid "Finishing …" msgstr "" -#: templates/layout.user.php:42 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:70 +#: templates/layout.user.php:71 msgid "Log out" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 439b77d4503..776a3ab9acc 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.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-13 20:29-0400\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -28,62 +28,62 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:45 +#: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:27 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:59 +#: ajax/upload.php:64 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:71 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:74 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:70 +#: ajax/upload.php:75 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:76 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:77 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:73 +#: ajax/upload.php:78 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:91 +#: ajax/upload.php:96 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:122 ajax/upload.php:148 +#: ajax/upload.php:127 ajax/upload.php:153 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:138 +#: ajax/upload.php:143 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:165 +#: ajax/upload.php:170 msgid "Invalid directory." msgstr "" @@ -91,52 +91,52 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:224 +#: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:235 +#: js/file-upload.js:239 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:302 +#: js/file-upload.js:306 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:336 +#: js/file-upload.js:340 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:426 +#: js/file-upload.js:430 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:500 +#: js/file-upload.js:504 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:505 lib/app.php:53 +#: js/file-upload.js:509 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:540 js/file-upload.js:556 js/files.js:518 js/files.js:556 +#: js/file-upload.js:544 js/file-upload.js:560 js/files.js:518 js/files.js:556 msgid "Error" msgstr "" -#: js/fileactions.js:119 +#: js/fileactions.js:125 msgid "Share" msgstr "" -#: js/fileactions.js:131 +#: js/fileactions.js:137 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:184 +#: js/fileactions.js:194 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:797 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:736 js/filelist.js:774 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index dc91e848f6a..210e64b1db3 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-13 20:29-0400\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index ccdf00c7d17..295f44f3835 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-13 20:29-0400\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 74010890e42..2043d786975 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-13 20:29-0400\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 11e3716ba4c..c41632cf148 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-13 20:29-0400\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 41506ab82f4..86d28ebb7e0 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-13 20:29-0400\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 5bf1d453de4..159b3371a8a 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-13 20:29-0400\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -49,20 +49,16 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:839 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index ec769e950a7..70cc4a716af 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-13 20:29-0400\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -49,20 +49,16 @@ msgstr "" msgid "Admin" msgstr "" -#: app.php:839 +#: app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: avatar.php:64 +#: avatar.php:60 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 3a5866587f6..d0325fe4d0e 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-13 20:29-0400\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index fffacde7c79..424e1880000 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-13 20:29-0400\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index ce8d87f0f6c..1dd5dca5da5 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-13 20:29-0400\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 73185856e9f..06d769f4370 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:29+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -156,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 "ปี ที่ผ่านมา" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 27ccb709455..ab73f28d762 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,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 "à¸à¸¢à¸¹à¹ˆà¸£à¸°à¸«à¸§à¹ˆà¸²à¸‡à¸”ำเนินà¸à¸²à¸£" @@ -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] "" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 4bdc5618a27..cbfb20ddd2d 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index c349231cc3b..bf17554c817 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "ข้à¸à¸œà¸´à¸”พลาด" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "ไม่มีà¸à¸°à¹„รà¸à¸¢à¸¹à¹ˆà¹ƒà¸™à¸™à¸µà¹‰ ถังขยะขà¸à¸‡à¸„ุณยังว่างà¸à¸¢à¸¹à¹ˆ" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "ชื่à¸" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "คืนค่า" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "ลบà¹à¸¥à¹‰à¸§" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "ลบ" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index cd3e90c37a9..b753c101366 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index ee691f79fbf..b892b378a04 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "ภาษา" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "ช่วยà¸à¸±à¸™à¹à¸›à¸¥" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/tr/core.po b/l10n/tr/core.po index a0f0ac6e01d..94ad3785f9a 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -6,13 +6,14 @@ # Fatih Aşıcı <fatih.asici@gmail.com>, 2013 # ismail yenigül <ismail.yenigul@surgate.com>, 2013 # tridinebandim, 2013 +# volkangezer <volkangezer@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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 <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 19:20+0000\n" +"Last-Translator: volkangezer <volkangezer@gmail.com>\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" @@ -61,7 +62,7 @@ msgstr "%%%d tamamlandı ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Resim veya dosya belirtilmedi" #: avatar/controller.php:81 msgid "Unknown filetype" @@ -73,11 +74,11 @@ 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" @@ -159,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" @@ -217,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" @@ -233,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" @@ -261,19 +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 "" +msgstr "Dosya mevcut ÅŸablonu yüklenirken hata" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" @@ -366,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" @@ -422,7 +423,7 @@ msgstr "Nesne türü belirtilmemiÅŸ." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Yeni girin" #: js/tags.js:27 msgid "Delete" @@ -434,15 +435,15 @@ msgstr "Ekle" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Etiketleri düzenle" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Ä°letiÅŸim ÅŸablonu yüklenirken hata: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Silmek için bir etiket seçilmedi." #: js/update.js:17 msgid "" @@ -538,31 +539,31 @@ msgstr "Yardım" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Etiketler yüklenirken hata" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Etiket zaten mevcut" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Etiket(ler) silinirken hata" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Etiketleme hatası" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Etiket kaldırılırken hata" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "BeÄŸenilirken hata" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "BeÄŸeniden kaldırılırken hata" #: templates/403.php:12 msgid "Access forbidden" @@ -580,18 +581,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Merhaba,\n\nSadece %s sizinle %s paylaşımını yaptığını bildiriyoruz.\nBuradan bakabilirsiniz: %s\n\n" #: templates/altmail.php:4 #, php-format msgid "" "The share will expire on %s.\n" "\n" -msgstr "" +msgstr "Paylaşım %s tarihinde bitecektir.\n\n" #: templates/altmail.php:6 templates/mail.php:19 msgid "Cheers!" -msgstr "" +msgstr "Åžerefe!" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -680,7 +681,7 @@ msgstr "Kurulumu tamamla" #: templates/installation.php:184 msgid "Finishing …" -msgstr "" +msgstr "Tamamlanıyor .." #: templates/layout.user.php:42 #, php-format @@ -707,11 +708,11 @@ msgstr "Hesabınızı korumak için lütfen parolanızı deÄŸiÅŸtirin." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Sunucu taraflı yetkilendirme baÅŸarısız!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Lütfen sistem yöneticisi ile iletiÅŸime geçin." #: templates/login.php:38 msgid "Lost your password?" @@ -734,12 +735,12 @@ msgstr "Alternatif GiriÅŸler" msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " "href=\"%s\">View it!</a><br><br>" -msgstr "" +msgstr "Merhaba, <br><br> %s sizinle »%s« paylaşımında bulundu.<br><a href=\"%s\">Paylaşımı gör!</a><br><br>Ä°yi günler!" #: templates/mail.php:17 #, php-format msgid "The share will expire on %s.<br><br>" -msgstr "" +msgstr "Bu paylaşım %s tarihinde dolacaktır.<br><br>" #: templates/update.php:3 #, php-format diff --git a/l10n/tr/files.po b/l10n/tr/files.po index a28838f2fbe..3359a4c5ac3 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -6,13 +6,14 @@ # alicanbatur <alicanbatur@hotmail.com>, 2013 # ismail yenigül <ismail.yenigul@surgate.com>, 2013 # tridinebandim, 2013 +# volkangezer <volkangezer@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 16:30+0000\n" +"Last-Translator: volkangezer <volkangezer@gmail.com>\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" @@ -79,11 +80,11 @@ msgstr "Yeterli disk alanı yok" #: 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:138 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Yükleme baÅŸarısız. Yüklenen dosya bulunamadı" #: ajax/upload.php:165 msgid "Invalid directory." @@ -95,7 +96,7 @@ msgstr "Dosyalar" #: 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:235 msgid "Not enough space available" @@ -107,7 +108,7 @@ msgstr "Yükleme iptal edildi." #: js/file-upload.js:336 msgid "Could not get result from server." -msgstr "" +msgstr "Sunucudan sonuç alınamadı." #: js/file-upload.js:426 msgid "" @@ -138,7 +139,7 @@ msgstr "Kalıcı olarak sil" 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" @@ -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 "" @@ -237,7 +238,7 @@ msgstr "Ä°ndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." #: js/files.js:518 js/files.js:556 msgid "Error moving file" -msgstr "" +msgstr "Dosya taşıma hatası" #: js/files.js:569 templates/index.php:56 msgid "Name" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 90d4fe2ca5b..cfb6e7f2ed5 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 <owncloud-bot@tmit.eu>\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 24c29df717e..eb3422d03f1 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 <volkangezer@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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 <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 16:30+0000\n" +"Last-Translator: volkangezer <volkangezer@gmail.com>\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,11 +20,11 @@ msgstr "" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "Bu paylaşım parola korumalı" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Parola hatalı. Yeniden deneyin." #: templates/authenticate.php:10 msgid "Password" @@ -31,27 +32,27 @@ msgstr "Parola" #: 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:17 #, php-format diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index fde740bdd34..2e63ef8378a 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Hata" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Ä°sim" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Geri yükle" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Silindi" -#: templates/index.php:37 templates/index.php:38 +#: 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 57a5449a014..b6fd8395583 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 <volkangezer@gmail.com>, 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 <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 19:10+0000\n" +"Last-Translator: volkangezer <volkangezer@gmail.com>\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 3d7178c5ba1..f93f7b57727 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-08 21:50+0000\n" -"Last-Translator: Caner BAÅžARAN <basaran.caner@gmail.com>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,20 +51,16 @@ msgstr "Kullanıcılar" msgid "Admin" msgstr "Yönetici" -#: private/app.php:839 +#: private/app.php:872 #, 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 "Hala özel profil resminiz ÅŸifreleme ile çalışmıyor" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "Bilinmeyen dosya türü" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "Geçersiz resim" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 7f1ee5060c3..b04460e51a9 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 <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 19:10+0000\n" +"Last-Translator: volkangezer <volkangezer@gmail.com>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -505,60 +505,60 @@ msgstr "Profil resmi" #: templates/personal.php:90 msgid "Upload new" -msgstr "" +msgstr "Yeni yükle" #: templates/personal.php:92 msgid "Select new from Files" -msgstr "" +msgstr "Dosyalardan seç" #: templates/personal.php:93 msgid "Remove image" -msgstr "" +msgstr "Resmi kaldır" #: templates/personal.php:94 msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "" +msgstr "PNG veya JPG. Genellikle karedir ancak kesebileceksiniz." #: templates/personal.php:97 msgid "Abort" -msgstr "" +msgstr "Ä°ptal Et" #: templates/personal.php:98 msgid "Choose as profile image" -msgstr "" +msgstr "Profil resmi olarak seç" #: templates/personal.php:106 templates/personal.php:107 msgid "Language" msgstr "Dil" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Çevirilere yardım edin" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr " <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">Dosyalarınıza WebDAV üzerinen eriÅŸme </a> 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_webdavauth.po b/l10n/tr/user_webdavauth.po index d138eeec592..0844a027bc5 100644 --- a/l10n/tr/user_webdavauth.po +++ b/l10n/tr/user_webdavauth.po @@ -6,14 +6,15 @@ # alpere <info@beyboo.de>, 2012 # Necdet Yücel <necdetyucel@gmail.com>, 2012 # atakan96 <tayancatakan@gmail.com>, 2013 +# volkangezer <volkangezer@gmail.com>, 2013 # KAT.RAT12 <spanish.katerina@gmail.com>, 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 <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"PO-Revision-Date: 2013-10-14 16:30+0000\n" +"Last-Translator: volkangezer <volkangezer@gmail.com>\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 77f0612a2cb..775b4e4459d 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -156,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 "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 7fe8a8d7a3a..3d80546de01 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,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 "كۈتۈۋاتىدۇ" @@ -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] "" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index aa208797848..0b0070f3096 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 <sahran.ug@gmail.com>\n" -"Language-Team: Uighur <uqkun@outlook.com>\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_trashbin.po b/l10n/ug/files_trashbin.po index 43620ad0c2e..5b6c67d9e3e 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "خاتالىق" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "ئاتى" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "ئۆچۈرۈلدى" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "ئۆچۈر" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 58fd4e0c96f..1370c6fe4af 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,61 +7,57 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "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-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" -"Language-Team: Uighur <uqkun@outlook.com>\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" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 95ccc43e5f4..cdb75a75772 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 <owncloud-bot@tmit.eu>\n" -"Language-Team: Uighur <uqkun@outlook.com>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -528,34 +528,34 @@ msgstr "" msgid "Language" msgstr "تىل" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "تەرجىمىگە ياردەم" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/core.po b/l10n/uk/core.po index c9dc1acce53..40c494f87d0 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -156,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 "роки тому" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 36b41721db8..e15a3304621 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -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 "ОчікуваннÑ" @@ -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] "" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index a6bc125a32b..04a07147621 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 <warlock.rf@gmail.com>\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_trashbin.po b/l10n/uk/files_trashbin.po index 48733531cca..2de60eeacdf 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "Помилка" msgid "restored" msgstr "відновлено" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ðічого немає. Ваший кошик Ð´Ð»Ñ ÑÐ¼Ñ–Ñ‚Ñ‚Ñ Ð¿ÑƒÑтий!" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "Ім'Ñ" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Відновити" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Видалено" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Видалити" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index c5b93ce8991..cdee5129428 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: 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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 9eb33b3246a..857b6457b8a 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -528,34 +528,34 @@ msgstr "" msgid "Language" msgstr "Мова" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Допомогти з перекладом" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/ur_PK/lib.po b/l10n/ur_PK/lib.po index bdc24e477e2..a5e239e5af5 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: ur_PK\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 "" -#: 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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 583a1258406..47f0bfdb455 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -157,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" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index df55610bf66..0bff2bfa232 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "Xóa vÄ©nh vá»…n" 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á»" @@ -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] "" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 0d5260e98e7..a05ce082163 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 <truong.tx8@gmail.com>\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_trashbin.po b/l10n/vi/files_trashbin.po index 2f8df273041..dec54c2a7a6 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "Lá»—i" 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:23 +#: templates/index.php:22 msgid "Name" msgstr "Tên" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "Khôi phục" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "Äã xóa" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "Xóa" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index e17c35b1e78..6041bdc5497 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:20+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\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 "Giúp đỡ" -#: private/app.php:365 +#: private/app.php:372 msgid "Personal" msgstr "Cá nhân" -#: private/app.php:376 +#: private/app.php:383 msgid "Settings" msgstr "Cà i đặt" -#: private/app.php:388 +#: private/app.php:395 msgid "Users" msgstr "NgÆ°á»i dùng" -#: private/app.php:401 +#: private/app.php:408 msgid "Admin" msgstr "Quản trị" -#: private/app.php:832 +#: private/app.php:872 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 16e90c1a643..c743f2a85d0 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "Ngôn ngữ" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "Há»— trợ dịch thuáºt" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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/zh_CN/core.po b/l10n/zh_CN/core.po index dd547cc443a..46282f4b063 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -159,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 "å¹´å‰" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 54b373a24c8..eb4a0fef3e9 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -138,7 +138,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[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] "" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 3a5df5a89f1..240f27b238f 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 47a77f55a41..62a8ff751df 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "错误" msgid "restored" msgstr "å·²æ¢å¤" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "这里没有东西. ä½ çš„å›žæ”¶ç«™æ˜¯ç©ºçš„!" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "å称" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "æ¢å¤" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "å·²åˆ é™¤" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "åˆ é™¤" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index f79a9210b9c..7358a8ace13 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/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:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -20,51 +20,47 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index d24fe6ee6d6..9b49e6cbff2 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -532,34 +532,34 @@ msgstr "" msgid "Language" msgstr "è¯è¨€" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "使用该链接 <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">通过WebDAVè®¿é—®ä½ çš„æ–‡ä»¶</a>" -#: 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_HK/core.po b/l10n/zh_HK/core.po index a5d8b18d6f1..f1980c06f46 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -156,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 "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index f7e5e4000ac..2ba22b59e24 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-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 <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -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_external.po b/l10n/zh_HK/files_external.po index a0ce717aa25..3cd38cee71e 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index a40b83f46b6..962276b3006 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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -35,23 +35,23 @@ msgstr "錯誤" msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "å稱" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "刪除" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 0b9662277b0..7c31a87f00c 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-06 19:07-0400\n" -"PO-Revision-Date: 2013-10-02 13:21+0000\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,47 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\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 "" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 1f4b86c3bb7..b6d9bd402de 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 <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -527,34 +527,34 @@ msgstr "" msgid "Language" msgstr "" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" 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_TW/core.po b/l10n/zh_TW/core.po index 8d8a73d30e2..e1769c4b251 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-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-14 00:30+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -158,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 "幾年å‰" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index e58163eea68..32016f23965 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-13 20:29-0400\n" -"PO-Revision-Date: 2013-10-11 02:31+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 <nfsmwlin@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -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 "ç‰å€™ä¸" @@ -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 個檔案æ£åœ¨ä¸Šå‚³" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 0bd4012e4a2..eb02a27d710 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 <nfsmwlin@gmail.com>\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_trashbin.po b/l10n/zh_TW/files_trashbin.po index c5eb5e0a270..8f4bf86f670 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/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-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+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 <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -36,23 +36,23 @@ msgstr "錯誤" msgid "restored" msgstr "已還原" -#: templates/index.php:9 +#: templates/index.php:8 msgid "Nothing in here. Your trash bin is empty!" msgstr "您的回收桶是空的ï¼" -#: templates/index.php:23 +#: templates/index.php:22 msgid "Name" msgstr "å稱" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:25 templates/index.php:27 msgid "Restore" msgstr "還原" -#: templates/index.php:34 +#: templates/index.php:33 msgid "Deleted" msgstr "已刪除" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:36 templates/index.php:37 msgid "Delete" msgstr "刪除" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index bc8ee7c2a27..6af0762d090 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/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-05 16:00+0000\n" -"Last-Translator: pellaeon <nfsmwlin@gmail.com>\n" +"POT-Creation-Date: 2013-10-17 13:47-0400\n" +"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,47 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\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 "無法安è£æ‡‰ç”¨ç¨‹å¼ %s å› ç‚ºå®ƒå’Œæ¤ç‰ˆæœ¬çš„ ownCloud ä¸ç›¸å®¹ã€‚" -#: 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 "å‡ç´šå¤±æ•—:%s" -#: private/avatar.php:56 -msgid "Custom profile pictures don't work with encryption yet" -msgstr "自訂大é 貼暫時ä¸èƒ½å’ŒåŠ 密功能åŒæ™‚使用" - -#: private/avatar.php:64 +#: private/avatar.php:60 msgid "Unknown filetype" msgstr "未知的檔案類型" -#: private/avatar.php:69 +#: private/avatar.php:65 msgid "Invalid image" msgstr "無效的圖片" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index e7728f4604b..673e47003b0 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 <nfsmwlin@gmail.com>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -528,34 +528,34 @@ msgstr "è¨å®šç‚ºå¤§é è²¼" msgid "Language" msgstr "語言" -#: templates/personal.php:119 +#: templates/personal.php:126 msgid "Help translate" msgstr "幫助翻è¯" -#: templates/personal.php:125 +#: templates/personal.php:133 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:127 +#: templates/personal.php:135 #, php-format msgid "" "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " "target=\"_blank\">access your Files via WebDAV</a>" msgstr "以上的 WebDAV ä½å€å¯ä»¥è®“您<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">é€éŽ WebDAV å”定å˜å–檔案</a>" -#: 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/lib/base.php b/lib/base.php index 9068fe76981..ee925b8f736 100644 --- a/lib/base.php +++ b/lib/base.php @@ -69,8 +69,9 @@ class OC { * check if owncloud runs in cli mode */ public static $CLI = false; - /* - * OC router + + /** + * @var OC_Router */ protected static $router = null; @@ -343,6 +344,9 @@ class OC { return OC_Config::getValue('session_lifetime', 60 * 60 * 24); } + /** + * @return OC_Router + */ public static function getRouter() { if (!isset(OC::$router)) { OC::$router = new OC_Router(); @@ -824,6 +828,7 @@ class OC { OC_User::setMagicInCookie($_COOKIE['oc_username'], $token); // login OC_User::setUserId($_COOKIE['oc_username']); + OC_User::setDisplayName($_COOKIE['oc_username'], $_COOKIE['display_name']); OC_Util::redirectToDefaultPage(); // doesn't return } diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index fef5dc3cb22..f0cbe6a5a07 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Usuaris", "Admin" => "Administració", "Failed to upgrade \"%s\"." => "Ha fallat l'actualització \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Les imatges de perfil personals encara no funcionen amb encriptació", "Unknown filetype" => "Tipus de fitxer desconegut", "Invalid image" => "Imatge no và lida", "web services under your control" => "controleu els vostres serveis web", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 145078c0bd2..0b09997ee2f 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Uživatelé", "Admin" => "Administrace", "Failed to upgrade \"%s\"." => "Selhala aktualizace verze \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Vlastnà profilové obrázky zatÃm nefungujà v kombinaci se Å¡ifrovánÃm", "Unknown filetype" => "Neznámý typ souboru", "Invalid image" => "Chybný obrázek", "web services under your control" => "webové služby pod VaÅ¡Ã kontrolou", diff --git a/lib/l10n/da.php b/lib/l10n/da.php index e4734755ae0..bf233e0338d 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Brugere", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Upgradering af \"%s\" fejlede", -"Custom profile pictures don't work with encryption yet" => "Personligt profilbillede virker endnu ikke sammen med kryptering", "Unknown filetype" => "Ukendt filtype", "Invalid image" => "Ugyldigt billede", "web services under your control" => "Webtjenester under din kontrol", diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 136cdc6476f..84543fa75d2 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Benutzer", "Admin" => "Administration", "Failed to upgrade \"%s\"." => "Konnte \"%s\" nicht aktualisieren.", -"Custom profile pictures don't work with encryption yet" => "Individuelle Profilbilder werden noch nicht von der Verschlüsselung unterstützt", "Unknown filetype" => "Unbekannter Dateityp", "Invalid image" => "Ungültiges Bild", "web services under your control" => "Web-Services unter Deiner Kontrolle", @@ -58,13 +57,13 @@ $TRANSLATIONS = array( "Please double check the <a href='%s'>installation guides</a>." => "Bitte prüfe die <a href='%s'>Installationsanleitungen</a>.", "Could not find category \"%s\"" => "Die Kategorie \"%s\" konnte nicht gefunden werden.", "seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array("","Vor %n Minuten"), -"_%n hour ago_::_%n hours ago_" => array("","Vor %n Stunden"), +"_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), +"_%n hour ago_::_%n hours ago_" => array("Vor %n Stunde","Vor %n Stunden"), "today" => "Heute", "yesterday" => "Gestern", -"_%n day go_::_%n days ago_" => array("","Vor %n Tagen"), +"_%n day go_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), "last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array("","Vor %n Monaten"), +"_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Caused by:" => "Verursacht durch:" diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index 76f0ee8457e..a84b954eb44 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Benutzer", "Admin" => "Administrator", "Failed to upgrade \"%s\"." => "Konnte \"%s\" nicht aktualisieren.", -"Custom profile pictures don't work with encryption yet" => "Individuelle Profilbilder werden noch nicht von der Verschlüsselung unterstützt", "Unknown filetype" => "Unbekannter Dateityp", "Invalid image" => "Ungültiges Bild", "web services under your control" => "Web-Services unter Ihrer Kontrolle", diff --git a/lib/l10n/en_GB.php b/lib/l10n/en_GB.php index 26d44f39893..73697d101c1 100644 --- a/lib/l10n/en_GB.php +++ b/lib/l10n/en_GB.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Users", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Failed to upgrade \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Custom profile pictures don't work with encryption yet", "Unknown filetype" => "Unknown filetype", "Invalid image" => "Invalid image", "web services under your control" => "web services under your control", diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 289ef360d1c..7e56e31aeaf 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Usuarios", "Admin" => "Administración", "Failed to upgrade \"%s\"." => "Falló la actualización \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Las imágenes de perfil personalizadas no funcionan con el cifrado aún", "Unknown filetype" => "Tipo de archivo desconocido", "Invalid image" => "Imagen inválida", "web services under your control" => "Servicios web bajo su control", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index c1881141636..e307979fa74 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Kasutajad", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Ebaõnnestunud uuendus \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Kohandatud profiili pildid ei toimi veel koos krüpteeringuga", "Unknown filetype" => "Tundmatu failitüüp", "Invalid image" => "Vigane pilt", "web services under your control" => "veebitenused sinu kontrolli all", diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 5e9a9a1a1f3..68f51d34441 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Käyttäjät", "Admin" => "Ylläpitäjä", "Failed to upgrade \"%s\"." => "Kohteen \"%s\" päivitys epäonnistui.", -"Custom profile pictures don't work with encryption yet" => "Omavalintaiset profiilikuvat eivät toimi salauksen kanssa vielä", "Unknown filetype" => "Tuntematon tiedostotyyppi", "Invalid image" => "Virheellinen kuva", "web services under your control" => "verkkopalvelut hallinnassasi", diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 73cb724a58a..895daa5b452 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Utilisateurs", "Admin" => "Administration", "Failed to upgrade \"%s\"." => "Echec de la mise à niveau \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Les images de profil personnalisées ne fonctionnent pas encore avec le système de chiffrement.", "Unknown filetype" => "Type de fichier inconnu", "Invalid image" => "Image invalide", "web services under your control" => "services web sous votre contrôle", diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index ce3c7ecf488..72ee66b6f57 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Usuarios", "Admin" => "Administración", "Failed to upgrade \"%s\"." => "Non foi posÃbel anovar «%s».", -"Custom profile pictures don't work with encryption yet" => "As imaxes personalizadas de perfil aÃnda non funcionan co cifrado", "Unknown filetype" => "Tipo de ficheiro descoñecido", "Invalid image" => "Imaxe incorrecta", "web services under your control" => "servizos web baixo o seu control", diff --git a/lib/l10n/it.php b/lib/l10n/it.php index 91efcca7f49..240442d396d 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Utenti", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Aggiornamento non riuscito \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Le immagini personalizzate del profilo non funzionano ancora con la cifratura", "Unknown filetype" => "Tipo di file sconosciuto", "Invalid image" => "Immagine non valida", "web services under your control" => "servizi web nelle tue mani", diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 7023c829f8f..e4e45462779 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "ユーザ", "Admin" => "管ç†", "Failed to upgrade \"%s\"." => "\"%s\" ã¸ã®ã‚¢ãƒƒãƒ—グレードã«å¤±æ•—ã—ã¾ã—ãŸã€‚", -"Custom profile pictures don't work with encryption yet" => "æš—å·ç„¡ã—ã§ã¯åˆ©ç”¨ä¸å¯ãªã‚«ã‚¹ã‚¿ãƒ プãƒãƒ•ã‚£ãƒ¼ãƒ«ç”»åƒ", "Unknown filetype" => "ä¸æ˜Žãªãƒ•ã‚¡ã‚¤ãƒ«ã‚¿ã‚¤ãƒ—", "Invalid image" => "無効ãªç”»åƒ", "web services under your control" => "管ç†ä¸‹ã®ã‚¦ã‚§ãƒ–サービス", diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index 3ef39fefa60..297e7ac5805 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "사용ìž", "Admin" => "관리ìž", "Failed to upgrade \"%s\"." => "\"%s\" ì—…ê·¸ë ˆì´ë“œì— 실패했습니다.", -"Custom profile pictures don't work with encryption yet" => "개개ì¸ì˜ 프로필 ì‚¬ì§„ì€ ì•„ì§ì€ 암호화 ë˜ì§€ 않습니다", "Unknown filetype" => "알수없는 파ì¼í˜•ì‹", "Invalid image" => "ìž˜ëª»ëœ ê·¸ë¦¼", "web services under your control" => "ë‚´ê°€ 관리하는 웹 서비스", diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index 72e84bc4b00..e322c9141d8 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Vartotojai", "Admin" => "Administravimas", "Failed to upgrade \"%s\"." => "Nepavyko pakelti „%s“ versijos.", -"Custom profile pictures don't work with encryption yet" => "Saviti profilio paveiksliukai dar neveikia su Å¡ifravimu", "Unknown filetype" => "Nežinomas failo tipas", "Invalid image" => "Netinkamas paveikslÄ—lis", "web services under your control" => "jÅ«sų valdomos web paslaugos", diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index d6dc9845d58..91ce25c13cc 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Gebruikers", "Admin" => "Beheerder", "Failed to upgrade \"%s\"." => "Upgrade \"%s\" mislukt.", -"Custom profile pictures don't work with encryption yet" => "Maatwerk profielafbeelding werkt nog niet met versleuteling", "Unknown filetype" => "Onbekend bestandsformaat", "Invalid image" => "Ongeldige afbeelding", "web services under your control" => "Webdiensten in eigen beheer", diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index 270559b4e50..72f01d784c4 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Użytkownicy", "Admin" => "Administrator", "Failed to upgrade \"%s\"." => "BÅ‚Ä…d przy aktualizacji \"%s\".", -"Custom profile pictures don't work with encryption yet" => "DomyÅ›lny profil zdjęć nie dziaÅ‚a z szyfrowaniem jeszcze", "Unknown filetype" => "Nieznany typ pliku", "Invalid image" => "BÅ‚Ä™dne zdjÄ™cie", "web services under your control" => "Kontrolowane serwisy", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index 59bc7831619..784f9fe9f66 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Usuários", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Falha na atualização de \"%s\".", -"Custom profile pictures don't work with encryption yet" => "Fotos de perfil personalizados ainda não funcionam com criptografia", "Unknown filetype" => "Tipo de arquivo desconhecido", "Invalid image" => "Imagem inválida", "web services under your control" => "serviços web sob seu controle", diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index c52248273a6..e77daa7dfdb 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "Пользователи", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Ðе Ñмог обновить \"%s\".", -"Custom profile pictures don't work with encryption yet" => "ПользовательÑкие картинки Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ ÐµÑ‰Ñ‘ не поддерживают шифрование", "Unknown filetype" => "ÐеизвеÑтный тип файла", "Invalid image" => "Изображение повреждено", "web services under your control" => "веб-ÑервиÑÑ‹ под вашим управлением", diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 8ce6d005ca4..5432eed5858 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -8,7 +8,6 @@ $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", diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 80288ed0516..eb838f6c537 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -8,7 +8,6 @@ $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", diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index e56a451f8a9..0081a37dadd 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Users" => "使用者", "Admin" => "管ç†", "Failed to upgrade \"%s\"." => "å‡ç´šå¤±æ•—:%s", -"Custom profile pictures don't work with encryption yet" => "自訂大é 貼暫時ä¸èƒ½å’ŒåŠ 密功能åŒæ™‚使用", "Unknown filetype" => "未知的檔案類型", "Invalid image" => "無效的圖片", "web services under your control" => "由您控制的網路æœå‹™", diff --git a/lib/private/app.php b/lib/private/app.php index 1a242ad968e..6f45b6e6dd7 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -770,12 +770,12 @@ class OC_App{ } // prio 2: shipped - if ($a['shipped'] != $b['shipped']) { - $atemp = ($a['shipped'] == true ? 1 : 0); - $btemp = ($b['shipped'] == true ? 1 : 0); - return ($btemp - $atemp); + $ashipped = (array_key_exists('shipped', $a) && $a['shipped'] === 'true') ? 1 : 0; + $bshipped = (array_key_exists('shipped', $b) && $b['shipped'] === 'true') ? 1 : 0; + if ($ashipped !== $bshipped) { + return ($bshipped - $ashipped); } - + // prio 3: recommended if ($a['internalclass'] != $b['internalclass']) { $atemp = ($a['internalclass'] == 'recommendedapp' ? 1 : 0); diff --git a/lib/private/appconfig.php b/lib/private/appconfig.php index e615d838173..4f170e054e9 100644 --- a/lib/private/appconfig.php +++ b/lib/private/appconfig.php @@ -134,6 +134,12 @@ class OC_Appconfig{ .' WHERE `appid` = ? AND `configkey` = ?' ); $query->execute( array( $value, $app, $key )); } + // TODO where should this be documented? + \OC_Hook::emit('OC_Appconfig', 'post_set_value', array( + 'app' => $app, + 'key' => $key, + 'value' => $value + )); } /** diff --git a/lib/private/appframework/app.php b/lib/private/appframework/app.php index 7ff55bb809d..6d3effbf1fa 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/core/api.php b/lib/private/appframework/core/api.php index 39522ee3dd5..e7269373bb0 100644 --- a/lib/private/appframework/core/api.php +++ b/lib/private/appframework/core/api.php @@ -100,89 +100,6 @@ class API implements IApi{ /** - * Returns the translation object - * @return \OC_L10N the translation object - */ - public function getTrans(){ - # TODO: use public api - return \OC_L10N::get($this->appName); - } - - - /** - * Returns the URL for a route - * @param string $routeName the name of the route - * @param array $arguments an array with arguments which will be filled into the url - * @return string the url - */ - public function linkToRoute($routeName, $arguments=array()){ - return \OCP\Util::linkToRoute($routeName, $arguments); - } - - - /** - * Returns an URL for an image or file - * @param string $file the name of the file - * @param string $appName the name of the app, defaults to the current one - */ - public function linkTo($file, $appName=null){ - if($appName === null){ - $appName = $this->appName; - } - return \OCP\Util::linkTo($appName, $file); - } - - - /** - * Returns the link to an image, like link to but only with prepending img/ - * @param string $file the name of the file - * @param string $appName the name of the app, defaults to the current one - */ - public function imagePath($file, $appName=null){ - if($appName === null){ - $appName = $this->appName; - } - return \OCP\Util::imagePath($appName, $file); - } - - - /** - * Makes an URL absolute - * @param string $url the url - * @return string the absolute url - */ - public function getAbsoluteURL($url){ - # TODO: use public api - return \OC_Helper::makeURLAbsolute($url); - } - - - /** - * links to a file - * @param string $file the name of the file - * @param string $appName the name of the app, defaults to the current one - * @deprecated replaced with linkToRoute() - * @return string the url - */ - public function linkToAbsolute($file, $appName=null){ - if($appName === null){ - $appName = $this->appName; - } - return \OCP\Util::linkToAbsolute($appName, $file); - } - - - /** - * Checks if the CSRF check was correct - * @return bool true if CSRF check passed - */ - public function passesCSRFCheck(){ - # TODO: use public api - return \OC_Util::isCallRegistered(); - } - - - /** * Checks if an app is enabled * @param string $appName the name of an app * @return bool true if app is enabled @@ -193,44 +110,6 @@ class API implements IApi{ /** - * Writes a function into the error log - * @param string $msg the error message to be logged - * @param int $level the error level - */ - public function log($msg, $level=null){ - switch($level){ - case 'debug': - $level = \OCP\Util::DEBUG; - break; - case 'info': - $level = \OCP\Util::INFO; - break; - case 'warn': - $level = \OCP\Util::WARN; - break; - case 'fatal': - $level = \OCP\Util::FATAL; - break; - default: - $level = \OCP\Util::ERROR; - break; - } - \OCP\Util::writeLog($this->appName, $msg, $level); - } - - - /** - * turns an owncloud path into a path on the filesystem - * @param string path the path to the file on the oc filesystem - * @return string the filepath in the filesystem - */ - public function getLocalFilePath($path){ - # TODO: use public api - return \OC_Filesystem::getLocalFile($path); - } - - - /** * used to return and open a new eventsource * @return \OC_EventSource a new open EventSource class */ @@ -275,15 +154,6 @@ class API implements IApi{ } } - /** - * Gets the content of an URL by using CURL or a fallback if it is not - * installed - * @param string $url the url that should be fetched - * @return string the content of the webpage - */ - public function getUrlContent($url) { - return \OC_Util::getUrlContent($url); - } /** * Register a backgroundjob task @@ -295,25 +165,6 @@ class API implements IApi{ \OCP\Backgroundjob::addRegularTask($className, $methodName); } - /** - * Returns a template - * @param string $templateName the name of the template - * @param string $renderAs how it should be rendered - * @param string $appName the name of the app - * @return \OCP\Template a new template - */ - public function getTemplate($templateName, $renderAs='user', $appName=null){ - if($appName === null){ - $appName = $this->appName; - } - - if($renderAs === 'blank'){ - return new \OCP\Template($appName, $templateName); - } else { - return new \OCP\Template($appName, $templateName, $renderAs); - } - } - /** * Tells ownCloud to include a template in the admin overview @@ -330,19 +181,4 @@ class API implements IApi{ } - /** - * get the filesystem info - * - * @param string $path - * @return array with the following keys: - * - size - * - mtime - * - mimetype - * - encrypted - * - versioned - */ - public function getFileInfo($path) { - return \OC\Files\Filesystem::getFileInfo($path); - } - } diff --git a/lib/private/appframework/dependencyinjection/dicontainer.php b/lib/private/appframework/dependencyinjection/dicontainer.php index e62b72fd973..81910df6990 100644 --- a/lib/private/appframework/dependencyinjection/dicontainer.php +++ b/lib/private/appframework/dependencyinjection/dicontainer.php @@ -35,6 +35,7 @@ use OC\AppFramework\Utility\TimeFactory; use OCP\AppFramework\IApi; use OCP\AppFramework\IAppContainer; use OCP\AppFramework\IMiddleWare; +use OCP\AppFramework\Middleware; use OCP\IServerContainer; @@ -49,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); @@ -66,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(); }); @@ -86,7 +89,7 @@ class DIContainer extends SimpleContainer implements IAppContainer{ * Middleware */ $this['SecurityMiddleware'] = $this->share(function($c){ - return new SecurityMiddleware($c['API'], $c['Request']); + return new SecurityMiddleware($this, $c['Request']); }); $middleWares = $this->middleWares; @@ -130,10 +133,10 @@ class DIContainer extends SimpleContainer implements IAppContainer{ } /** - * @param IMiddleWare $middleWare + * @param Middleware $middleWare * @return boolean */ - function registerMiddleWare(IMiddleWare $middleWare) { + function registerMiddleWare(Middleware $middleWare) { array_push($this->middleWares, $middleWare); } @@ -144,4 +147,49 @@ class DIContainer extends SimpleContainer implements IAppContainer{ function getAppName() { return $this->query('AppName'); } + + /** + * @return boolean + */ + function isLoggedIn() { + return \OC_User::isLoggedIn(); + } + + /** + * @return boolean + */ + function isAdminUser() { + $uid = $this->getUserId(); + return \OC_User::isAdminUser($uid); + } + + private function getUserId() { + return \OC::$session->get('user_id'); + } + + /** + * @param $message + * @param $level + * @return mixed + */ + function log($message, $level) { + switch($level){ + case 'debug': + $level = \OCP\Util::DEBUG; + break; + case 'info': + $level = \OCP\Util::INFO; + break; + case 'warn': + $level = \OCP\Util::WARN; + break; + case 'fatal': + $level = \OCP\Util::FATAL; + break; + default: + $level = \OCP\Util::ERROR; + break; + } + \OCP\Util::writeLog($this->getAppName(), $message, $level); + } } diff --git a/lib/private/appframework/http/dispatcher.php b/lib/private/appframework/http/dispatcher.php index ea57a6860cc..51283fd64e7 100644 --- a/lib/private/appframework/http/dispatcher.php +++ b/lib/private/appframework/http/dispatcher.php @@ -24,8 +24,8 @@ namespace OC\AppFramework\Http; -use \OC\AppFramework\Controller\Controller; use \OC\AppFramework\Middleware\MiddlewareDispatcher; +use OCP\AppFramework\Controller; /** diff --git a/lib/private/appframework/middleware/middlewaredispatcher.php b/lib/private/appframework/middleware/middlewaredispatcher.php index c2377b8844b..681140c2242 100644 --- a/lib/private/appframework/middleware/middlewaredispatcher.php +++ b/lib/private/appframework/middleware/middlewaredispatcher.php @@ -24,7 +24,7 @@ namespace OC\AppFramework\Middleware; -use OC\AppFramework\Controller\Controller; +use OCP\AppFramework\Controller; use OCP\AppFramework\Http\Response; use OCP\AppFramework\MiddleWare; diff --git a/lib/private/appframework/middleware/security/securitymiddleware.php b/lib/private/appframework/middleware/security/securitymiddleware.php index d6daf737bb4..f103a40ee7f 100644 --- a/lib/private/appframework/middleware/security/securitymiddleware.php +++ b/lib/private/appframework/middleware/security/securitymiddleware.php @@ -24,15 +24,14 @@ namespace OC\AppFramework\Middleware\Security; -use OC\AppFramework\Controller\Controller; use OC\AppFramework\Http\Http; -use OC\AppFramework\Http\Request; use OC\AppFramework\Http\RedirectResponse; use OC\AppFramework\Utility\MethodAnnotationReader; -use OC\AppFramework\Core\API; use OCP\AppFramework\Middleware; use OCP\AppFramework\Http\Response; use OCP\AppFramework\Http\JSONResponse; +use OCP\AppFramework\IAppContainer; +use OCP\IRequest; /** @@ -43,18 +42,22 @@ use OCP\AppFramework\Http\JSONResponse; */ class SecurityMiddleware extends Middleware { - private $api; + /** + * @var \OCP\AppFramework\IAppContainer + */ + private $app; /** - * @var \OC\AppFramework\Http\Request + * @var \OCP\IRequest */ private $request; /** - * @param API $api an instance of the api + * @param IAppContainer $app + * @param IRequest $request */ - public function __construct(API $api, Request $request){ - $this->api = $api; + public function __construct(IAppContainer $app, IRequest $request){ + $this->app = $app; $this->request = $request; } @@ -74,24 +77,24 @@ class SecurityMiddleware extends Middleware { // this will set the current navigation entry of the app, use this only // for normal HTML requests and not for AJAX requests - $this->api->activateNavigationEntry(); + $this->app->getServer()->getNavigationManager()->setActiveEntry($this->app->getAppName()); // security checks $isPublicPage = $annotationReader->hasAnnotation('PublicPage'); if(!$isPublicPage) { - if(!$this->api->isLoggedIn()) { + if(!$this->app->isLoggedIn()) { throw new SecurityException('Current user is not logged in', Http::STATUS_UNAUTHORIZED); } if(!$annotationReader->hasAnnotation('NoAdminRequired')) { - if(!$this->api->isAdminUser($this->api->getUserId())) { + if(!$this->app->isAdminUser()) { throw new SecurityException('Logged in user must be an admin', Http::STATUS_FORBIDDEN); } } } if(!$annotationReader->hasAnnotation('NoCSRFRequired')) { - if(!$this->api->passesCSRFCheck()) { + if(!$this->request->passesCSRFCheck()) { throw new SecurityException('CSRF check failed', Http::STATUS_PRECONDITION_FAILED); } } @@ -118,12 +121,13 @@ class SecurityMiddleware extends Middleware { array('message' => $exception->getMessage()), $exception->getCode() ); - $this->api->log($exception->getMessage(), 'debug'); + $this->app->log($exception->getMessage(), 'debug'); } else { - $url = $this->api->linkToAbsolute('index.php', ''); // TODO: replace with link to route + // TODO: replace with link to route + $url = $this->app->getServer()->getURLGenerator()->getAbsoluteURL('index.php'); $response = new RedirectResponse($url); - $this->api->log($exception->getMessage(), 'debug'); + $this->app->log($exception->getMessage(), 'debug'); } return $response; diff --git a/lib/apphelper.php b/lib/private/apphelper.php index bd02f3aabfa..bd02f3aabfa 100644 --- a/lib/apphelper.php +++ b/lib/private/apphelper.php diff --git a/lib/private/avatar.php b/lib/private/avatar.php index f20980c364b..720740569df 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/connector/sabre/auth.php b/lib/private/connector/sabre/auth.php index d2fd74c44f9..0c84fa6b757 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/server.php b/lib/private/connector/sabre/server.php new file mode 100644 index 00000000000..41e8885917a --- /dev/null +++ b/lib/private/connector/sabre/server.php @@ -0,0 +1,235 @@ +<?php +/** + * ownCloud / SabreDAV + * + * @author Markus Goetz + * + * @copyright Copyright (C) 2007-2013 Rooftop Solutions. All rights reserved. + * @author Evert Pot (http://www.rooftopsolutions.nl/) + * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License + */ + +/** + * Class OC_Connector_Sabre_Server + * + * This class reimplements some methods from @see Sabre_DAV_Server. + * + * Basically we add handling of depth: infinity. + * + * The right way to handle this would have been to submit a patch to the upstream project + * and grab the corresponding version one merged. + * + * Due to time constrains and the limitations where we don't want to upgrade 3rdparty code in + * this stage of the release cycle we did choose this approach. + * + * For ownCloud 7 we will upgrade SabreDAV and submit the patch - if needed. + * + * @see Sabre_DAV_Server + */ +class OC_Connector_Sabre_Server extends Sabre_DAV_Server { + + /** + * @see Sabre_DAV_Server + */ + protected function httpPropfind($uri) { + + // $xml = new Sabre_DAV_XMLReader(file_get_contents('php://input')); + $requestedProperties = $this->parsePropFindRequest($this->httpRequest->getBody(true)); + + $depth = $this->getHTTPDepth(1); + // The only two options for the depth of a propfind is 0 or 1 + // if ($depth!=0) $depth = 1; + + $newProperties = $this->getPropertiesForPath($uri,$requestedProperties,$depth); + + // This is a multi-status response + $this->httpResponse->sendStatus(207); + $this->httpResponse->setHeader('Content-Type','application/xml; charset=utf-8'); + $this->httpResponse->setHeader('Vary','Brief,Prefer'); + + // Normally this header is only needed for OPTIONS responses, however.. + // iCal seems to also depend on these being set for PROPFIND. Since + // this is not harmful, we'll add it. + $features = array('1','3', 'extended-mkcol'); + foreach($this->plugins as $plugin) { + $features = array_merge($features,$plugin->getFeatures()); + } + + $this->httpResponse->setHeader('DAV',implode(', ',$features)); + + $prefer = $this->getHTTPPrefer(); + $minimal = $prefer['return-minimal']; + + $data = $this->generateMultiStatus($newProperties, $minimal); + $this->httpResponse->sendBody($data); + + } + + /** + * Small helper to support PROPFIND with DEPTH_INFINITY. + */ + private function addPathNodesRecursively(&$nodes, $path) { + foreach($this->tree->getChildren($path) as $childNode) { + $nodes[$path . '/' . $childNode->getName()] = $childNode; + if ($childNode instanceof Sabre_DAV_ICollection) + $this->addPathNodesRecursively($nodes, $path . '/' . $childNode->getName()); + } + } + + public function getPropertiesForPath($path, $propertyNames = array(), $depth = 0) { + + // if ($depth!=0) $depth = 1; + + $path = rtrim($path,'/'); + + $returnPropertyList = array(); + + $parentNode = $this->tree->getNodeForPath($path); + $nodes = array( + $path => $parentNode + ); + if ($depth==1 && $parentNode instanceof Sabre_DAV_ICollection) { + foreach($this->tree->getChildren($path) as $childNode) + $nodes[$path . '/' . $childNode->getName()] = $childNode; + } else if ($depth == self::DEPTH_INFINITY && $parentNode instanceof Sabre_DAV_ICollection) { + $this->addPathNodesRecursively($nodes, $path); + } + + // If the propertyNames array is empty, it means all properties are requested. + // We shouldn't actually return everything we know though, and only return a + // sensible list. + $allProperties = count($propertyNames)==0; + + foreach($nodes as $myPath=>$node) { + + $currentPropertyNames = $propertyNames; + + $newProperties = array( + '200' => array(), + '404' => array(), + ); + + if ($allProperties) { + // Default list of propertyNames, when all properties were requested. + $currentPropertyNames = array( + '{DAV:}getlastmodified', + '{DAV:}getcontentlength', + '{DAV:}resourcetype', + '{DAV:}quota-used-bytes', + '{DAV:}quota-available-bytes', + '{DAV:}getetag', + '{DAV:}getcontenttype', + ); + } + + // If the resourceType was not part of the list, we manually add it + // and mark it for removal. We need to know the resourcetype in order + // to make certain decisions about the entry. + // WebDAV dictates we should add a / and the end of href's for collections + $removeRT = false; + if (!in_array('{DAV:}resourcetype',$currentPropertyNames)) { + $currentPropertyNames[] = '{DAV:}resourcetype'; + $removeRT = true; + } + + $result = $this->broadcastEvent('beforeGetProperties',array($myPath, $node, &$currentPropertyNames, &$newProperties)); + // If this method explicitly returned false, we must ignore this + // node as it is inaccessible. + if ($result===false) continue; + + if (count($currentPropertyNames) > 0) { + + if ($node instanceof Sabre_DAV_IProperties) { + $nodeProperties = $node->getProperties($currentPropertyNames); + + // The getProperties method may give us too much, + // properties, in case the implementor was lazy. + // + // So as we loop through this list, we will only take the + // properties that were actually requested and discard the + // rest. + foreach($currentPropertyNames as $k=>$currentPropertyName) { + if (isset($nodeProperties[$currentPropertyName])) { + unset($currentPropertyNames[$k]); + $newProperties[200][$currentPropertyName] = $nodeProperties[$currentPropertyName]; + } + } + + } + + } + + foreach($currentPropertyNames as $prop) { + + if (isset($newProperties[200][$prop])) continue; + + switch($prop) { + case '{DAV:}getlastmodified' : if ($node->getLastModified()) $newProperties[200][$prop] = new Sabre_DAV_Property_GetLastModified($node->getLastModified()); break; + case '{DAV:}getcontentlength' : + if ($node instanceof Sabre_DAV_IFile) { + $size = $node->getSize(); + if (!is_null($size)) { + $newProperties[200][$prop] = (int)$node->getSize(); + } + } + break; + case '{DAV:}quota-used-bytes' : + if ($node instanceof Sabre_DAV_IQuota) { + $quotaInfo = $node->getQuotaInfo(); + $newProperties[200][$prop] = $quotaInfo[0]; + } + break; + case '{DAV:}quota-available-bytes' : + if ($node instanceof Sabre_DAV_IQuota) { + $quotaInfo = $node->getQuotaInfo(); + $newProperties[200][$prop] = $quotaInfo[1]; + } + break; + case '{DAV:}getetag' : if ($node instanceof Sabre_DAV_IFile && $etag = $node->getETag()) $newProperties[200][$prop] = $etag; break; + case '{DAV:}getcontenttype' : if ($node instanceof Sabre_DAV_IFile && $ct = $node->getContentType()) $newProperties[200][$prop] = $ct; break; + case '{DAV:}supported-report-set' : + $reports = array(); + foreach($this->plugins as $plugin) { + $reports = array_merge($reports, $plugin->getSupportedReportSet($myPath)); + } + $newProperties[200][$prop] = new Sabre_DAV_Property_SupportedReportSet($reports); + break; + case '{DAV:}resourcetype' : + $newProperties[200]['{DAV:}resourcetype'] = new Sabre_DAV_Property_ResourceType(); + foreach($this->resourceTypeMapping as $className => $resourceType) { + if ($node instanceof $className) $newProperties[200]['{DAV:}resourcetype']->add($resourceType); + } + break; + + } + + // If we were unable to find the property, we will list it as 404. + if (!$allProperties && !isset($newProperties[200][$prop])) $newProperties[404][$prop] = null; + + } + + $this->broadcastEvent('afterGetProperties',array(trim($myPath,'/'),&$newProperties, $node)); + + $newProperties['href'] = trim($myPath,'/'); + + // Its is a WebDAV recommendation to add a trailing slash to collectionnames. + // Apple's iCal also requires a trailing slash for principals (rfc 3744), though this is non-standard. + if ($myPath!='' && isset($newProperties[200]['{DAV:}resourcetype'])) { + $rt = $newProperties[200]['{DAV:}resourcetype']; + if ($rt->is('{DAV:}collection') || $rt->is('{DAV:}principal')) { + $newProperties['href'] .='/'; + } + } + + // If the resourcetype property was manually added to the requested property list, + // we will remove it again. + if ($removeRT) unset($newProperties[200]['{DAV:}resourcetype']); + + $returnPropertyList[] = $newProperties; + + } + + return $returnPropertyList; + + } +} diff --git a/lib/private/davclient.php b/lib/private/davclient.php new file mode 100644 index 00000000000..28f48f3b921 --- /dev/null +++ b/lib/private/davclient.php @@ -0,0 +1,46 @@ +<?php +/** + * ownCloud + * + * @author Vincent Petry + * @copyright 2013 Vincent Petry <pvince81@owncloud.com> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see <http://www.gnu.org/licenses/>. + * + */ + +/** + * This class extends the SabreDAV client with additional functionality + * like request timeout. + */ + +class OC_DAVClient extends \Sabre_DAV_Client { + + protected $requestTimeout; + + /** + * @brief Sets the request timeout or 0 to disable timeout. + * @param int timeout in seconds or 0 to disable + */ + public function setRequestTimeout($timeout) { + $this->requestTimeout = (int)$timeout; + } + + protected function curlRequest($url, $settings) { + if ($this->requestTimeout > 0) { + $settings[CURLOPT_TIMEOUT] = $this->requestTimeout; + } + return parent::curlRequest($url, $settings); + } +} diff --git a/lib/private/db/mdb2schemamanager.php b/lib/private/db/mdb2schemamanager.php index 8e76f46c78f..fc13e881bff 100644 --- a/lib/private/db/mdb2schemamanager.php +++ b/lib/private/db/mdb2schemamanager.php @@ -53,7 +53,7 @@ class MDB2SchemaManager { * @param string $file file to read structure from * @return bool */ - public function updateDbFromStructure($file) { + public function updateDbFromStructure($file, $generateSql = false) { $sm = $this->conn->getSchemaManager(); $fromSchema = $sm->createSchema(); @@ -82,6 +82,10 @@ class MDB2SchemaManager { $tableDiff->name = $platform->quoteIdentifier($tableDiff->name); } + if ($generateSql) { + return $this->generateChangeScript($schemaDiff); + } + return $this->executeSchemaChange($schemaDiff); } @@ -147,4 +151,20 @@ class MDB2SchemaManager { $this->conn->commit(); return true; } + + /** + * @param \Doctrine\DBAL\Schema\Schema $schema + * @return string + */ + public function generateChangeScript($schema) { + + $script = ''; + $sqls = $schema->toSql($this->conn->getDatabasePlatform()); + foreach($sqls as $sql) { + $script .= $sql . ';'; + $script .= PHP_EOL; + } + + return $script; + } } diff --git a/lib/private/files/view.php b/lib/private/files/view.php index a56135d9b3c..c0b9f0fc9c8 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -904,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/helper.php b/lib/private/helper.php index a34640d8e36..e9b129db0ca 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -81,7 +81,7 @@ class OC_Helper { * Returns a absolute url to the given app and file. */ public static function makeURLAbsolute($url) { - return OC::$server->getURLGenerator()->makeURLAbsolute($url); + return OC::$server->getURLGenerator()->getAbsoluteURL($url); } /** @@ -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/l10n/factory.php b/lib/private/l10n/factory.php index ba168872acd..8c65f368171 100644 --- a/lib/private/l10n/factory.php +++ b/lib/private/l10n/factory.php @@ -22,7 +22,7 @@ class Factory { * get an L10N instance * @param $app string * @param $lang string|null - * @return OC_L10N + * @return \OC_L10N */ public function get($app) { if (!isset($this->instances[$app])) { diff --git a/lib/private/preview/movies.php b/lib/private/preview/movies.php index c318137ff0e..4d85e23c63c 100644 --- a/lib/private/preview/movies.php +++ b/lib/private/preview/movies.php @@ -8,40 +8,44 @@ */ namespace OC\Preview; -$isShellExecEnabled = !in_array('shell_exec', explode(', ', ini_get('disable_functions'))); -$whichAVCONV = shell_exec('which avconv'); -$isAVCONVAvailable = !empty($whichAVCONV); +// movie preview is currently not supported on Windows +if (!\OC_Util::runningOnWindows()) { + $isShellExecEnabled = !in_array('shell_exec', explode(', ', ini_get('disable_functions'))); + $whichAVCONV = ($isShellExecEnabled ? shell_exec('which avconv') : ''); + $isAVCONVAvailable = !empty($whichAVCONV); -if($isShellExecEnabled && $isAVCONVAvailable) { + if($isShellExecEnabled && $isAVCONVAvailable) { - class Movie extends Provider { + class Movie extends Provider { - public function getMimeType() { - return '/video\/.*/'; - } + public function getMimeType() { + return '/video\/.*/'; + } + + public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { + $absPath = \OC_Helper::tmpFile(); + $tmpPath = \OC_Helper::tmpFile(); - public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { - $absPath = \OC_Helper::tmpFile(); - $tmpPath = \OC_Helper::tmpFile(); + $handle = $fileview->fopen($path, 'rb'); - $handle = $fileview->fopen($path, 'rb'); + $firstmb = stream_get_contents($handle, 1048576); //1024 * 1024 = 1048576 + file_put_contents($absPath, $firstmb); - $firstmb = stream_get_contents($handle, 1048576); //1024 * 1024 = 1048576 - file_put_contents($absPath, $firstmb); + //$cmd = 'ffmpeg -y -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1 -ss 1 -s ' . escapeshellarg($maxX) . 'x' . escapeshellarg($maxY) . ' ' . $tmpPath; + $cmd = 'avconv -an -y -ss 1 -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1 ' . escapeshellarg($tmpPath); - //$cmd = 'ffmpeg -y -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1 -ss 1 -s ' . escapeshellarg($maxX) . 'x' . escapeshellarg($maxY) . ' ' . $tmpPath; - $cmd = 'avconv -an -y -ss 1 -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1 ' . escapeshellarg($tmpPath); - - shell_exec($cmd); + shell_exec($cmd); - $image = new \OC_Image($tmpPath); + $image = new \OC_Image($tmpPath); - unlink($absPath); - unlink($tmpPath); + unlink($absPath); + unlink($tmpPath); - return $image->valid() ? $image : false; + return $image->valid() ? $image : false; + } } + + \OC\Preview::registerProvider('OC\Preview\Movie'); } +} - \OC\Preview::registerProvider('OC\Preview\Movie'); -}
\ No newline at end of file diff --git a/lib/private/preview/office-cl.php b/lib/private/preview/office-cl.php index 112909d6523..8f2e06c050b 100644 --- a/lib/private/preview/office-cl.php +++ b/lib/private/preview/office-cl.php @@ -7,128 +7,132 @@ */ namespace OC\Preview; -//we need imagick to convert -class Office extends Provider { +// office preview is currently not supported on Windows +if (!\OC_Util::runningOnWindows()) { - private $cmd; + //we need imagick to convert + class Office extends Provider { - public function getMimeType() { - return null; - } + private $cmd; - public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { - $this->initCmd(); - if(is_null($this->cmd)) { - return false; + public function getMimeType() { + return null; } - $absPath = $fileview->toTmpFile($path); + public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { + $this->initCmd(); + if(is_null($this->cmd)) { + return false; + } + + $absPath = $fileview->toTmpFile($path); + + $tmpDir = get_temp_dir(); - $tmpDir = get_temp_dir(); + $defaultParameters = ' --headless --nologo --nofirststartwizard --invisible --norestore -convert-to pdf -outdir '; + $clParameters = \OCP\Config::getSystemValue('preview_office_cl_parameters', $defaultParameters); - $defaultParameters = ' --headless --nologo --nofirststartwizard --invisible --norestore -convert-to pdf -outdir '; - $clParameters = \OCP\Config::getSystemValue('preview_office_cl_parameters', $defaultParameters); + $exec = $this->cmd . $clParameters . escapeshellarg($tmpDir) . ' ' . escapeshellarg($absPath); + $export = 'export HOME=/' . $tmpDir; - $exec = $this->cmd . $clParameters . escapeshellarg($tmpDir) . ' ' . escapeshellarg($absPath); - $export = 'export HOME=/' . $tmpDir; + shell_exec($export . "\n" . $exec); - shell_exec($export . "\n" . $exec); + //create imagick object from pdf + try{ + $pdf = new \imagick($absPath . '.pdf' . '[0]'); + $pdf->setImageFormat('jpg'); + } catch (\Exception $e) { + unlink($absPath); + unlink($absPath . '.pdf'); + \OC_Log::write('core', $e->getmessage(), \OC_Log::ERROR); + return false; + } + + $image = new \OC_Image($pdf); - //create imagick object from pdf - try{ - $pdf = new \imagick($absPath . '.pdf' . '[0]'); - $pdf->setImageFormat('jpg'); - } catch (\Exception $e) { unlink($absPath); unlink($absPath . '.pdf'); - \OC_Log::write('core', $e->getmessage(), \OC_Log::ERROR); - return false; + + return $image->valid() ? $image : false; } - $image = new \OC_Image($pdf); + private function initCmd() { + $cmd = ''; - unlink($absPath); - unlink($absPath . '.pdf'); + if(is_string(\OC_Config::getValue('preview_libreoffice_path', null))) { + $cmd = \OC_Config::getValue('preview_libreoffice_path', null); + } - return $image->valid() ? $image : false; - } + $whichLibreOffice = shell_exec('which libreoffice'); + if($cmd === '' && !empty($whichLibreOffice)) { + $cmd = 'libreoffice'; + } - private function initCmd() { - $cmd = ''; + $whichOpenOffice = shell_exec('which openoffice'); + if($cmd === '' && !empty($whichOpenOffice)) { + $cmd = 'openoffice'; + } - if(is_string(\OC_Config::getValue('preview_libreoffice_path', null))) { - $cmd = \OC_Config::getValue('preview_libreoffice_path', null); - } + if($cmd === '') { + $cmd = null; + } - $whichLibreOffice = shell_exec('which libreoffice'); - if($cmd === '' && !empty($whichLibreOffice)) { - $cmd = 'libreoffice'; + $this->cmd = $cmd; } + } - $whichOpenOffice = shell_exec('which openoffice'); - if($cmd === '' && !empty($whichOpenOffice)) { - $cmd = 'openoffice'; - } + //.doc, .dot + class MSOfficeDoc extends Office { - if($cmd === '') { - $cmd = null; + public function getMimeType() { + return '/application\/msword/'; } - $this->cmd = $cmd; - } -} - -//.doc, .dot -class MSOfficeDoc extends Office { - - public function getMimeType() { - return '/application\/msword/'; } -} + \OC\Preview::registerProvider('OC\Preview\MSOfficeDoc'); -\OC\Preview::registerProvider('OC\Preview\MSOfficeDoc'); + //.docm, .dotm, .xls(m), .xlt(m), .xla(m), .ppt(m), .pot(m), .pps(m), .ppa(m) + class MSOffice2003 extends Office { -//.docm, .dotm, .xls(m), .xlt(m), .xla(m), .ppt(m), .pot(m), .pps(m), .ppa(m) -class MSOffice2003 extends Office { + public function getMimeType() { + return '/application\/vnd.ms-.*/'; + } - public function getMimeType() { - return '/application\/vnd.ms-.*/'; } -} + \OC\Preview::registerProvider('OC\Preview\MSOffice2003'); -\OC\Preview::registerProvider('OC\Preview\MSOffice2003'); + //.docx, .dotx, .xlsx, .xltx, .pptx, .potx, .ppsx + class MSOffice2007 extends Office { -//.docx, .dotx, .xlsx, .xltx, .pptx, .potx, .ppsx -class MSOffice2007 extends Office { + public function getMimeType() { + return '/application\/vnd.openxmlformats-officedocument.*/'; + } - public function getMimeType() { - return '/application\/vnd.openxmlformats-officedocument.*/'; } -} + \OC\Preview::registerProvider('OC\Preview\MSOffice2007'); -\OC\Preview::registerProvider('OC\Preview\MSOffice2007'); + //.odt, .ott, .oth, .odm, .odg, .otg, .odp, .otp, .ods, .ots, .odc, .odf, .odb, .odi, .oxt + class OpenDocument extends Office { -//.odt, .ott, .oth, .odm, .odg, .otg, .odp, .otp, .ods, .ots, .odc, .odf, .odb, .odi, .oxt -class OpenDocument extends Office { + public function getMimeType() { + return '/application\/vnd.oasis.opendocument.*/'; + } - public function getMimeType() { - return '/application\/vnd.oasis.opendocument.*/'; } -} + \OC\Preview::registerProvider('OC\Preview\OpenDocument'); -\OC\Preview::registerProvider('OC\Preview\OpenDocument'); + //.sxw, .stw, .sxc, .stc, .sxd, .std, .sxi, .sti, .sxg, .sxm + class StarOffice extends Office { -//.sxw, .stw, .sxc, .stc, .sxd, .std, .sxi, .sti, .sxg, .sxm -class StarOffice extends Office { + public function getMimeType() { + return '/application\/vnd.sun.xml.*/'; + } - public function getMimeType() { - return '/application\/vnd.sun.xml.*/'; } + \OC\Preview::registerProvider('OC\Preview\StarOffice'); } - -\OC\Preview::registerProvider('OC\Preview\StarOffice');
\ No newline at end of file diff --git a/lib/private/preview/office.php b/lib/private/preview/office.php index 5287bbd6ac1..318ab51f851 100644 --- a/lib/private/preview/office.php +++ b/lib/private/preview/office.php @@ -8,15 +8,22 @@ //both, libreoffice backend and php fallback, need imagick if (extension_loaded('imagick')) { $isShellExecEnabled = !in_array('shell_exec', explode(', ', ini_get('disable_functions'))); - $whichLibreOffice = shell_exec('which libreoffice'); - $isLibreOfficeAvailable = !empty($whichLibreOffice); - $whichOpenOffice = shell_exec('which libreoffice'); - $isOpenOfficeAvailable = !empty($whichOpenOffice); - //let's see if there is libreoffice or openoffice on this machine - if($isShellExecEnabled && ($isLibreOfficeAvailable || $isOpenOfficeAvailable || is_string(\OC_Config::getValue('preview_libreoffice_path', null)))) { - require_once('office-cl.php'); - }else{ + + // LibreOffice preview is currently not supported on Windows + if (!\OC_Util::runningOnWindows()) { + $whichLibreOffice = ($isShellExecEnabled ? shell_exec('which libreoffice') : ''); + $isLibreOfficeAvailable = !empty($whichLibreOffice); + $whichOpenOffice = ($isShellExecEnabled ? shell_exec('which libreoffice') : ''); + $isOpenOfficeAvailable = !empty($whichOpenOffice); + //let's see if there is libreoffice or openoffice on this machine + if($isShellExecEnabled && ($isLibreOfficeAvailable || $isOpenOfficeAvailable || is_string(\OC_Config::getValue('preview_libreoffice_path', null)))) { + require_once('office-cl.php'); + }else{ + //in case there isn't, use our fallback + require_once('office-fallback.php'); + } + } else { //in case there isn't, use our fallback require_once('office-fallback.php'); } -}
\ No newline at end of file +} diff --git a/lib/private/preview/provider.php b/lib/private/preview/provider.php index e4a730bafc8..65d09705f40 100644 --- a/lib/private/preview/provider.php +++ b/lib/private/preview/provider.php @@ -11,9 +11,15 @@ abstract class Provider { abstract public function getMimeType(); /** - * search for $query - * @param string $query - * @return + * get thumbnail for file at path $path + * @param string $path Path of file + * @param int $maxX The maximum X size of the thumbnail. It can be smaller depending on the shape of the image + * @param int $maxY The maximum Y size of the thumbnail. It can be smaller depending on the shape of the image + * @param bool $scalingUp Disable/Enable upscaling of previews + * @param object $fileview fileview object of user folder + * @return mixed + * false if no preview was generated + * OC_Image object of the preview */ abstract public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview); } diff --git a/lib/private/preview/txt.php b/lib/private/preview/txt.php index 77e728eb364..c9aa20968d8 100644 --- a/lib/private/preview/txt.php +++ b/lib/private/preview/txt.php @@ -9,20 +9,19 @@ namespace OC\Preview; class TXT extends Provider { - private static $blacklist = array( - 'text/calendar', - 'text/vcard', - ); - public function getMimeType() { - return '/text\/.*/'; + return '/text\/plain/'; } + /** + * @param string $path + * @param int $maxX + * @param int $maxY + * @param boolean $scalingup + * @param \OC\Files\View $fileview + * @return bool|\OC_Image + */ public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { - $mimetype = $fileview->getMimeType($path); - if(in_array($mimetype, self::$blacklist)) { - return false; - } $content = $fileview->fopen($path, 'r'); $content = stream_get_contents($content); @@ -62,22 +61,12 @@ class TXT extends Provider { \OC\Preview::registerProvider('OC\Preview\TXT'); -class PHP extends TXT { - - public function getMimeType() { - return '/application\/x-php/'; - } - -} - -\OC\Preview::registerProvider('OC\Preview\PHP'); - -class JavaScript extends TXT { +class MarkDown extends TXT { public function getMimeType() { - return '/application\/javascript/'; + return '/text\/(x-)?markdown/'; } } -\OC\Preview::registerProvider('OC\Preview\JavaScript');
\ No newline at end of file +\OC\Preview::registerProvider('OC\Preview\MarkDown'); diff --git a/lib/private/preview/unknown.php b/lib/private/preview/unknown.php index 9e6cd68d401..4747f9e25ed 100644 --- a/lib/private/preview/unknown.php +++ b/lib/private/preview/unknown.php @@ -20,8 +20,30 @@ class Unknown extends Provider { $path = \OC_Helper::mimetypeIcon($mimetype); $path = \OC::$SERVERROOT . substr($path, strlen(\OC::$WEBROOT)); - return new \OC_Image($path); + $svgPath = substr_replace($path, 'svg', -3); + + if (extension_loaded('imagick') && file_exists($svgPath)) { + + // http://www.php.net/manual/de/imagick.setresolution.php#85284 + $svg = new \Imagick(); + $svg->readImage($svgPath); + $res = $svg->getImageResolution(); + $x_ratio = $res['x'] / $svg->getImageWidth(); + $y_ratio = $res['y'] / $svg->getImageHeight(); + $svg->removeImage(); + $svg->setResolution($maxX * $x_ratio, $maxY * $y_ratio); + $svg->setBackgroundColor(new \ImagickPixel('transparent')); + $svg->readImage($svgPath); + $svg->setImageFormat('png32'); + + $image = new \OC_Image(); + $image->loadFromData($svg); + } else { + $image = new \OC_Image($path); + } + + return $image; } } -\OC\Preview::registerProvider('OC\Preview\Unknown');
\ No newline at end of file +\OC\Preview::registerProvider('OC\Preview\Unknown'); diff --git a/lib/private/server.php b/lib/private/server.php index 73a0cbd6ce6..e55f59f6a1c 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -34,7 +34,6 @@ class Server extends SimpleContainer implements IServerContainer { $requesttoken = false; } - return new Request( array( 'get' => $_GET, @@ -46,7 +45,6 @@ class Server extends SimpleContainer implements IServerContainer { 'method' => (isset($_SERVER) && isset($_SERVER['REQUEST_METHOD'])) ? $_SERVER['REQUEST_METHOD'] : null, - 'params' => $params, 'urlParams' => $urlParams, 'requesttoken' => $requesttoken, ) @@ -290,4 +288,5 @@ class Server extends SimpleContainer implements IServerContainer { function getDatabaseConnection() { return \OC_DB::getConnection(); } + } diff --git a/lib/urlgenerator.php b/lib/private/urlgenerator.php index 1db4c36cc58..5c1d9d825b6 100644 --- a/lib/urlgenerator.php +++ b/lib/private/urlgenerator.php @@ -8,18 +8,20 @@ */ namespace OC; +use OCP\IURLGenerator; +use RuntimeException; /** * Class to generate URLs */ -class URLGenerator { +class URLGenerator implements IURLGenerator { /** * @brief Creates an url using a defined route * @param $route * @param array $parameters * @return * @internal param array $args with param=>value, will be appended to the returned url - * @returns the url + * @returns string the url * * Returns a url to the given app and file. */ @@ -97,15 +99,13 @@ class URLGenerator { } } + /** - * @brief Makes an $url absolute - * @param string $url the url - * @return string the absolute url - * - * Returns a absolute url to the given app and file. + * Makes an URL absolute + * @param string $url the url in the owncloud host + * @return string the absolute version of the url */ - public function makeURLAbsolute($url) { + public function getAbsoluteURL($url) { return \OC_Request::serverProtocol() . '://' . \OC_Request::serverHost() . $url; } - } diff --git a/lib/private/user.php b/lib/private/user.php index b68786c773c..6b350d4cf1b 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -325,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/util.php b/lib/private/util.php index 6c0a8d7bab5..885cce87541 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -754,6 +754,10 @@ class OC_Util { * file in the data directory and trying to access via http */ public static function isHtAccessWorking() { + if (!\OC_Config::getValue("check_for_working_htaccess", true)) { + return true; + } + // testdata $fileName = '/htaccesstest.txt'; $testContent = 'testcontent'; @@ -802,11 +806,16 @@ class OC_Util { if (!function_exists('curl_init')) { return true; } + if (!\OC_Config::getValue("check_for_working_webdav", true)) { + return true; + } $settings = array( 'baseUri' => OC_Helper::linkToRemote('webdav'), ); - $client = new \Sabre_DAV_Client($settings); + $client = new \OC_DAVClient($settings); + + $client->setRequestTimeout(10); // for this self test we don't care if the ssl certificate is self signed and the peer cannot be verified. $client->setVerifyPeer(false); diff --git a/lib/public/app.php b/lib/public/app.php index 0a5721b334e..18681670ddd 100644 --- a/lib/public/app.php +++ b/lib/public/app.php @@ -35,14 +35,12 @@ namespace OCP; */ class App { /** - * @brief Makes ownCloud aware of this app - * @brief This call is deprecated and not necessary to use. - * @param $data array with all information - * @returns boolean + * Makes ownCloud aware of this app + * @param array with all information + * @return boolean * - * @deprecated this method is deprecated - * Do not call it anymore - * It'll remain in our public API for compatibility reasons + * @deprecated This method is deprecated. Do not call it anymore. + * It'll remain in our public API for compatibility reasons. * */ public static function register( $data ) { @@ -50,9 +48,9 @@ class App { } /** - * @brief adds an entry to the navigation - * @param $data array containing the data - * @returns boolean + * Adds an entry to the navigation + * @param array containing the data + * @return boolean * * This function adds a new entry to the navigation visible to users. $data * is an associative array. @@ -71,9 +69,9 @@ class App { } /** - * @brief marks a navigation entry as active - * @param $id string id of the entry - * @returns boolean + * Marks a navigation entry as active + * @param string id of the entry + * @return boolean * * This function sets a navigation entry as active and removes the 'active' * property from all other entries. The templates can use this for @@ -84,7 +82,7 @@ class App { } /** - * @brief Register a Configuration Screen that should appear in the personal settings section. + * Register a Configuration Screen that should appear in the personal settings section. * @param $app string appid * @param $page string page to be included */ @@ -93,7 +91,7 @@ class App { } /** - * @brief Register a Configuration Screen that should appear in the Admin section. + * Register a Configuration Screen that should appear in the Admin section. * @param $app string appid * @param $page string page to be included */ @@ -102,19 +100,19 @@ class App { } /** - * @brief Read app metadata from the info.xml file + * Read app metadata from the info.xml file * @param string $app id of the app or the path of the info.xml file * @param boolean $path (optional) - * @returns array + * @return array */ public static function getAppInfo( $app, $path=false ) { return \OC_App::getAppInfo( $app, $path); } /** - * @brief checks whether or not an app is enabled - * @param $app app - * @returns boolean + * checks whether or not an app is enabled + * @param string + * @return boolean * * This function checks whether or not an app is enabled. */ @@ -123,17 +121,17 @@ class App { } /** - * @brief Check if the app is enabled, redirects to home if not - * @param $app app + * Check if the app is enabled, redirects to home if not + * @param string */ public static function checkAppEnabled( $app ) { \OC_Util::checkAppEnabled( $app ); } /** - * @brief Get the last version of the app, either from appinfo/version or from appinfo/info.xml - * @param $app app - * @returns boolean + * Get the last version of the app, either from appinfo/version or from appinfo/info.xml + * @param string + * @return boolean */ public static function getAppVersion( $app ) { return \OC_App::getAppVersion( $app ); diff --git a/lib/public/appframework/app.php b/lib/public/appframework/app.php index d97c5c81848..6ac48bf102a 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/private/appframework/controller/controller.php b/lib/public/appframework/controller.php index 0ea0a38cc09..1642b508572 100644 --- a/lib/private/appframework/controller/controller.php +++ b/lib/public/appframework/controller.php @@ -22,11 +22,11 @@ */ -namespace OC\AppFramework\Controller; +namespace OCP\AppFramework; -use OC\AppFramework\Http\Request; -use OC\AppFramework\Core\API; use OCP\AppFramework\Http\TemplateResponse; +use OCP\AppFramework\IAppContainer; +use OCP\IRequest; /** @@ -35,18 +35,21 @@ use OCP\AppFramework\Http\TemplateResponse; abstract class Controller { /** - * @var API instance of the api layer + * @var \OCP\AppFramework\IAppContainer */ - protected $api; + protected $app; + /** + * @var \OCP\IRequest + */ protected $request; /** - * @param API $api an api wrapper instance - * @param Request $request an instance of the request + * @param IAppContainer $app interface to the app + * @param IRequest $request an instance of the request */ - public function __construct(API $api, Request $request){ - $this->api = $api; + public function __construct(IAppContainer $app, IRequest $request){ + $this->app = $app; $this->request = $request; } @@ -127,7 +130,7 @@ abstract class Controller { */ public function render($templateName, array $params=array(), $renderAs='user', array $headers=array()){ - $response = new TemplateResponse($this->api, $templateName); + $response = new TemplateResponse($this->app->getAppName(), $templateName); $response->setParams($params); $response->renderAs($renderAs); diff --git a/lib/public/appframework/http/response.php b/lib/public/appframework/http/response.php index 64477258948..5ca389b9946 100644 --- a/lib/public/appframework/http/response.php +++ b/lib/public/appframework/http/response.php @@ -26,12 +26,15 @@ namespace OCP\AppFramework\Http; /** - * Base class for responses. Also used to just send headers + * Base class for responses. Also used to just send headers. + * + * It handles headers, HTTP status code, last modified and ETag. */ class Response { /** - * @var array default headers + * Headers - defaults to ['Cache-Control' => 'no-cache, must-revalidate'] + * @var array */ private $headers = array( 'Cache-Control' => 'no-cache, must-revalidate' @@ -39,18 +42,21 @@ class Response { /** + * HTTP status code - defaults to STATUS OK * @var string */ private $status = Http::STATUS_OK; /** + * Last modified date * @var \DateTime */ private $lastModified; /** + * ETag * @var string */ private $ETag; @@ -135,6 +141,7 @@ class Response { /** + * Get the ETag * @return string the etag */ public function getETag() { @@ -143,6 +150,7 @@ class Response { /** + * Get "last modified" date * @return string RFC2822 formatted last modified date */ public function getLastModified() { @@ -151,6 +159,7 @@ class Response { /** + * Set the ETag * @param string $ETag */ public function setETag($ETag) { @@ -159,6 +168,7 @@ class Response { /** + * Set "last modified" date * @param \DateTime $lastModified */ public function setLastModified($lastModified) { diff --git a/lib/public/appframework/http/templateresponse.php b/lib/public/appframework/http/templateresponse.php index 97678c96cba..594530651aa 100644 --- a/lib/public/appframework/http/templateresponse.php +++ b/lib/public/appframework/http/templateresponse.php @@ -24,8 +24,6 @@ namespace OCP\AppFramework\Http; -use OC\AppFramework\Core\API; - /** * Response for a normal template @@ -34,20 +32,16 @@ class TemplateResponse extends Response { protected $templateName; protected $params; - protected $api; protected $renderAs; protected $appName; /** - * @param API $api an API instance * @param string $templateName the name of the template - * @param string $appName optional if you want to include a template from - * a different app + * @param string $appName the name of the app to load the template from */ - public function __construct(API $api, $templateName, $appName=null) { + public function __construct($appName, $templateName) { $this->templateName = $templateName; $this->appName = $appName; - $this->api = $api; $this->params = array(); $this->renderAs = 'user'; } @@ -108,13 +102,7 @@ class TemplateResponse extends Response { */ public function render(){ - if($this->appName !== null){ - $appName = $this->appName; - } else { - $appName = $this->api->getAppName(); - } - - $template = $this->api->getTemplate($this->templateName, $this->renderAs, $appName); + $template = new \OCP\Template($this->appName, $this->templateName, $this->renderAs); foreach($this->params as $key => $value){ $template->assign($key, $value); diff --git a/lib/public/appframework/iapi.php b/lib/public/appframework/iapi.php index fa6af5f5965..3bde4c9d4e7 100644 --- a/lib/public/appframework/iapi.php +++ b/lib/public/appframework/iapi.php @@ -67,59 +67,6 @@ interface IApi { */ function add3rdPartyStyle($name); - /** - * Returns the translation object - * @return \OC_L10N the translation object - * - * FIXME: returns private object / should be retrieved from teh ServerContainer - */ - function getTrans(); - - - /** - * Returns the URL for a route - * @param string $routeName the name of the route - * @param array $arguments an array with arguments which will be filled into the url - * @return string the url - */ - function linkToRoute($routeName, $arguments=array()); - - - /** - * Returns an URL for an image or file - * @param string $file the name of the file - * @param string $appName the name of the app, defaults to the current one - */ - function linkTo($file, $appName=null); - - - /** - * Returns the link to an image, like link to but only with prepending img/ - * @param string $file the name of the file - * @param string $appName the name of the app, defaults to the current one - */ - function imagePath($file, $appName = null); - - - /** - * Makes an URL absolute - * @param string $url the url - * @return string the absolute url - * - * FIXME: function should live in Request / Response - */ - function getAbsoluteURL($url); - - - /** - * links to a file - * @param string $file the name of the file - * @param string $appName the name of the app, defaults to the current one - * @deprecated replaced with linkToRoute() - * @return string the url - */ - function linkToAbsolute($file, $appName = null); - /** * Checks if an app is enabled @@ -128,24 +75,4 @@ interface IApi { */ public function isAppEnabled($appName); - - /** - * Writes a function into the error log - * @param string $msg the error message to be logged - * @param int $level the error level - * - * FIXME: add logger instance to ServerContainer - */ - function log($msg, $level = null); - - - /** - * Returns a template - * @param string $templateName the name of the template - * @param string $renderAs how it should be rendered - * @param string $appName the name of the app - * @return \OCP\Template a new template - */ - function getTemplate($templateName, $renderAs='user', $appName=null); - } diff --git a/lib/public/appframework/iappcontainer.php b/lib/public/appframework/iappcontainer.php index 7d3b4b3bac7..7e6ec6016b7 100644 --- a/lib/public/appframework/iappcontainer.php +++ b/lib/public/appframework/iappcontainer.php @@ -50,8 +50,26 @@ interface IAppContainer extends IContainer{ function getServer(); /** - * @param IMiddleWare $middleWare + * @param Middleware $middleWare * @return boolean */ - function registerMiddleWare(IMiddleWare $middleWare); + function registerMiddleWare(Middleware $middleWare); + + /** + * @return boolean + */ + function isLoggedIn(); + + /** + * @return boolean + */ + function isAdminUser(); + + /** + * @param $message + * @param $level + * @return mixed + */ + function log($message, $level); + } diff --git a/lib/public/appframework/middleware.php b/lib/public/appframework/middleware.php index 12776c119c0..94f71ea8520 100644 --- a/lib/public/appframework/middleware.php +++ b/lib/public/appframework/middleware.php @@ -24,6 +24,7 @@ namespace OCP\AppFramework; +use OCP\AppFramework\Controller; use OCP\AppFramework\Http\Response; diff --git a/lib/public/config.php b/lib/public/config.php index 73476d7551d..74aaa4e1891 100644 --- a/lib/public/config.php +++ b/lib/public/config.php @@ -40,7 +40,7 @@ namespace OCP; */ class Config { /** - * @brief Gets a value from config.php + * Gets a value from config.php * @param string $key key * @param string $default = null default value * @return string the value or $default @@ -53,7 +53,7 @@ class Config { } /** - * @brief Sets a value + * Sets a value * @param string $key key * @param string $value value * @return bool @@ -71,7 +71,7 @@ class Config { } /** - * @brief Gets the config value + * Gets the config value * @param string $app app * @param string $key key * @param string $default = null, default value if the key does not exist @@ -85,7 +85,7 @@ class Config { } /** - * @brief sets a value in the appconfig + * Sets a value in the appconfig * @param string $app app * @param string $key key * @param string $value value @@ -103,7 +103,7 @@ class Config { } /** - * @brief Gets the preference + * Gets the preference * @param string $user user * @param string $app app * @param string $key key @@ -118,12 +118,12 @@ class Config { } /** - * @brief sets a value in the preferences + * Sets a value in the preferences * @param string $user user * @param string $app app * @param string $key key * @param string $value value - * @returns bool + * @return bool * * Adds a value to the preferences. If the key did not exist before, it * will be added automagically. diff --git a/lib/public/db.php b/lib/public/db.php index 9512cca2d19..fc6621f5b51 100644 --- a/lib/public/db.php +++ b/lib/public/db.php @@ -35,7 +35,7 @@ namespace OCP; */ class DB { /** - * @brief Prepare a SQL query + * Prepare a SQL query * @param string $query Query string * @return \MDB2_Statement_Common prepared SQL query * @@ -46,7 +46,7 @@ class DB { } /** - * @brief Insert a row if a matching row doesn't exists. + * Insert a row if a matching row doesn't exists. * @param $table string The table name (will replace *PREFIX*) to perform the replace on. * @param $input array * @@ -67,7 +67,7 @@ class DB { } /** - * @brief gets last value of autoincrement + * Gets last value of autoincrement * @param $table string The optional table name (will replace *PREFIX*) and add sequence suffix * @return int * @@ -81,21 +81,21 @@ class DB { } /** - * @brief Start a transaction + * Start a transaction */ public static function beginTransaction() { return(\OC_DB::beginTransaction()); } /** - * @brief Commit the database changes done during a transaction that is in progress + * Commit the database changes done during a transaction that is in progress */ public static function commit() { return(\OC_DB::commit()); } /** - * @brief check if a result is an error, works with MDB2 and PDOException + * Check if a result is an error, works with MDB2 and PDOException * @param mixed $result * @return bool */ diff --git a/lib/public/files.php b/lib/public/files.php index 852b041eefb..1e4c25c5ef1 100644 --- a/lib/public/files.php +++ b/lib/public/files.php @@ -36,9 +36,8 @@ namespace OCP; */ class Files { /** - * @brief Recusive deletion of folders - * @param string $dir path to the folder - * + * Recusive deletion of folders + * @param string path to the folder * @return bool */ static function rmdirr( $dir ) { @@ -46,7 +45,7 @@ class Files { } /** - * get the mimetype form a local file + * Get the mimetype form a local file * @param string path * @return string * does NOT work for ownClouds filesystem, use OC_FileSystem::getMimeType instead @@ -56,17 +55,16 @@ class Files { } /** - * search for files by mimetype - * - * @param string $query + * Search for files by mimetype + * @param string mimetype * @return array */ - static public function searchByMime($mimetype) { + static public function searchByMime( $mimetype ) { return(\OC\Files\Filesystem::searchByMime( $mimetype )); } /** - * copy the contents of one stream to another + * Copy the contents of one stream to another * @param resource source * @param resource target * @return int the number of bytes copied @@ -77,7 +75,7 @@ class Files { } /** - * create a temporary file with an unique filename + * Create a temporary file with an unique filename * @param string postfix * @return string * @@ -88,7 +86,7 @@ class Files { } /** - * create a temporary folder with an unique filename + * Create a temporary folder with an unique filename * @return string * * temporary files are automatically cleaned up after the script is finished @@ -99,9 +97,8 @@ class Files { /** * Adds a suffix to the name in case the file exists - * - * @param $path - * @param $filename + * @param string path + * @param string filename * @return string */ public static function buildNotExistingFileName( $path, $filename ) { @@ -109,8 +106,9 @@ class Files { } /** + * Gets the Storage for an app - creates the needed folder if they are not + * existant * @param string appid - * @param $app app * @return \OC\Files\View */ public static function getStorage( $app ) { diff --git a/lib/public/icache.php b/lib/public/icache.php index 436ee71b2b9..a73004ec9a7 100644 --- a/lib/public/icache.php +++ b/lib/public/icache.php @@ -14,7 +14,6 @@ interface ICache { /** * Get a value from the user cache - * * @param string $key * @return mixed */ @@ -22,7 +21,6 @@ interface ICache { /** * Set a value in the user cache - * * @param string $key * @param mixed $value * @param int $ttl Time To Live in seconds. Defaults to 60*60*24 @@ -32,7 +30,6 @@ interface ICache { /** * Check if a value is set in the user cache - * * @param string $key * @return bool */ @@ -40,14 +37,13 @@ interface ICache { /** * Remove an item from the user cache - * * @param string $key * @return bool */ public function remove($key); /** - * clear the user cache of all entries starting with a prefix + * Clear the user cache of all entries starting with a prefix * @param string $prefix (optional) * @return bool */ diff --git a/lib/public/idbconnection.php b/lib/public/idbconnection.php index c741a0f061a..252902eda6c 100644 --- a/lib/public/idbconnection.php +++ b/lib/public/idbconnection.php @@ -4,7 +4,7 @@ * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. - * + * */ namespace OCP; @@ -30,9 +30,9 @@ interface IDBConnection { public function lastInsertId($table = null); /** - * @brief Insert a row if a matching row doesn't exists. - * @param $table string The table name (will replace *PREFIX*) to perform the replace on. - * @param $input array + * Insert a row if a matching row doesn't exists. + * @param string The table name (will replace *PREFIX*) to perform the replace on. + * @param array * * The input array if in the form: * @@ -49,25 +49,25 @@ interface IDBConnection { public function insertIfNotExist($table, $input); /** - * @brief Start a transaction + * Start a transaction * @return bool TRUE on success or FALSE on failure */ public function beginTransaction(); /** - * @brief Commit the database changes done during a transaction that is in progress + * Commit the database changes done during a transaction that is in progress * @return bool TRUE on success or FALSE on failure */ public function commit(); /** - * @brief Rollback the database changes done during a transaction that is in progress + * Rollback the database changes done during a transaction that is in progress * @return bool TRUE on success or FALSE on failure */ public function rollBack(); /** - * returns the error code and message as a string for logging + * Gets the error code and message as a string for logging * @return string */ public function getError(); diff --git a/lib/public/il10n.php b/lib/public/il10n.php index 9cf9093d391..805c8988aa2 100644 --- a/lib/public/il10n.php +++ b/lib/public/il10n.php @@ -14,7 +14,7 @@ namespace OCP; */ interface IL10N { /** - * @brief Translating + * Translating * @param $text String The text we need a translation for * @param array $parameters default:array() Parameters for sprintf * @return \OC_L10N_String|string Translation or the same text @@ -25,7 +25,7 @@ interface IL10N { public function t($text, $parameters = array()); /** - * @brief Translating + * Translating * @param $text_singular String the string to translate for exactly one object * @param $text_plural String the string to translate for n objects * @param $count Integer Number of objects @@ -42,10 +42,10 @@ interface IL10N { public function n($text_singular, $text_plural, $count, $parameters = array()); /** - * @brief Localization + * Localization * @param $type Type of localization * @param $params parameters for this localization - * @returns String or false + * @return String or false * * Returns the localized data. * diff --git a/lib/public/response.php b/lib/public/response.php index de0c3f25347..f7f6afcec95 100644 --- a/lib/public/response.php +++ b/lib/public/response.php @@ -35,7 +35,7 @@ namespace OCP; */ class Response { /** - * @brief Enable response caching by sending correct HTTP headers + * Enable response caching by sending correct HTTP headers * @param int $cache_time time to cache the response * >0 cache time in seconds * 0 and <0 enable default browser caching @@ -55,7 +55,7 @@ class Response { } /** - * @brief disable browser caching + * Disable browser caching * @see enableCaching with cache_time = 0 */ static public function disableCaching() { @@ -72,7 +72,7 @@ class Response { } /** - * @brief Send file as response, checking and setting caching headers + * Send file as response, checking and setting caching headers * @param string $filepath of file to send */ static public function sendFile( $filepath ) { @@ -80,7 +80,7 @@ class Response { } /** - * @brief Set response expire time + * Set response expire time * @param string|\DateTime $expires date-time when the response expires * string for DateInterval from now * DateTime object when to expire response @@ -90,7 +90,7 @@ class Response { } /** - * @brief Send redirect response + * Send redirect response * @param string $location to redirect to */ static public function redirect( $location ) { diff --git a/lib/public/share.php b/lib/public/share.php index 66605dafee5..59150e1964f 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -64,7 +64,7 @@ class Share { private static $isResharingAllowed; /** - * @brief Register a sharing backend class that implements OCP\Share_Backend for an item type + * Register a sharing backend class that implements OCP\Share_Backend for an item type * @param string Item type * @param string Backend class * @param string (optional) Depends on item type @@ -94,11 +94,10 @@ class Share { } /** - * @brief Check if the Share API is enabled + * Check if the Share API is enabled * @return Returns true if enabled or false * * The Share API is enabled by default if not configured - * */ public static function isEnabled() { if (\OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes') == 'yes') { @@ -108,7 +107,7 @@ class Share { } /** - * @brief Prepare a path to be passed to DB as file_target + * Prepare a path to be passed to DB as file_target * @return string Prepared path */ public static function prepFileTarget( $path ) { @@ -125,7 +124,7 @@ class Share { } /** - * @brief Find which users can access a shared item + * Find which users can access a shared item * @param $path to the file * @param $user owner of the file * @param include owner to the list of users with access to the file @@ -232,7 +231,7 @@ class Share { } /** - * @brief Get the items of item type shared with the current user + * Get the items of item type shared with the current user * @param string Item type * @param int Format (optional) Format type must be defined by the backend * @param int Number of items to return (optional) Returns all by default @@ -245,7 +244,7 @@ class Share { } /** - * @brief Get the item of item type shared with the current user + * Get the item of item type shared with the current user * @param string $itemType * @param string $ItemTarget * @param int $format (optional) Format type must be defined by the backend @@ -258,7 +257,7 @@ class Share { } /** - * @brief Get the item of item type shared with a given user by source + * Get the item of item type shared with a given user by source * @param string $ItemType * @param string $ItemSource * @param string $user User user to whom the item was shared @@ -307,7 +306,7 @@ class Share { } /** - * @brief Get the item of item type shared with the current user by source + * Get the item of item type shared with the current user by source * @param string Item type * @param string Item source * @param int Format (optional) Format type must be defined by the backend @@ -320,7 +319,7 @@ class Share { } /** - * @brief Get the item of item type shared by a link + * Get the item of item type shared by a link * @param string Item type * @param string Item source * @param string Owner of link @@ -332,7 +331,7 @@ class Share { } /** - * @brief Get the item shared by a token + * Get the item shared by a token * @param string token * @return Item */ @@ -357,7 +356,7 @@ class Share { } /** - * @brief resolves reshares down to the last real share + * resolves reshares down to the last real share * @param $linkItem * @return $fileOwner */ @@ -380,7 +379,7 @@ class Share { /** - * @brief Get the shared items of item type owned by the current user + * Get the shared items of item type owned by the current user * @param string Item type * @param int Format (optional) Format type must be defined by the backend * @param int Number of items to return (optional) Returns all by default @@ -393,7 +392,7 @@ class Share { } /** - * @brief Get the shared item of item type owned by the current user + * Get the shared item of item type owned by the current user * @param string Item type * @param string Item source * @param int Format (optional) Format type must be defined by the backend @@ -429,7 +428,7 @@ class Share { } /** - * @brief Share an item with a user, group, or via private link + * Share an item with a user, group, or via private link * @param string Item type * @param string Item source * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK @@ -606,7 +605,7 @@ class Share { } /** - * @brief Unshare an item from a user, group, or delete a private link + * Unshare an item from a user, group, or delete a private link * @param string Item type * @param string Item source * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK @@ -639,7 +638,7 @@ class Share { } /** - * @brief Unshare an item from all users, groups, and remove all links + * Unshare an item from all users, groups, and remove all links * @param string Item type * @param string Item source * @return Returns true on success or false on failure @@ -666,7 +665,7 @@ class Share { } /** - * @brief Unshare an item shared with the current user + * Unshare an item shared with the current user * @param string Item type * @param string Item target * @return Returns true on success or false on failure @@ -703,7 +702,7 @@ class Share { return false; } /** - * @brief sent status if users got informed by mail about share + * sent status if users got informed by mail about share * @param string $itemType * @param string $itemSource * @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK @@ -727,7 +726,7 @@ class Share { } /** - * @brief Set the permissions of an item for a specific user or group + * Set the permissions of an item for a specific user or group * @param string Item type * @param string Item source * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK @@ -831,7 +830,7 @@ class Share { } /** - * @brief Get the backend class for the specified item type + * Get the backend class for the specified item type * @param string $itemType * @return Share_Backend */ @@ -860,7 +859,7 @@ class Share { } /** - * @brief Check if resharing is allowed + * Check if resharing is allowed * @return Returns true if allowed or false * * Resharing is allowed by default if not configured @@ -878,7 +877,7 @@ class Share { } /** - * @brief Get a list of collection item types for the specified item type + * Get a list of collection item types for the specified item type * @param string Item type * @return array */ @@ -902,7 +901,7 @@ class Share { } /** - * @brief Get shared items from the database + * Get shared items from the database * @param string Item type * @param string Item source or target (optional) * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique @@ -961,6 +960,10 @@ class Share { $queryArgs = array($itemType); } } + if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') !== 'yes') { + $where .= ' AND `share_type` != ?'; + $queryArgs[] = self::SHARE_TYPE_LINK; + } if (isset($shareType)) { // Include all user and group items if ($shareType == self::$shareTypeUserAndGroups && isset($shareWith)) { @@ -1307,7 +1310,7 @@ class Share { } /** - * @brief Put shared item into the database + * Put shared item into the database * @param string Item type * @param string Item source * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK @@ -1543,7 +1546,7 @@ class Share { } /** - * @brief Generate a unique target for the item + * Generate a unique target for the item * @param string Item type * @param string Item source * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK @@ -1659,7 +1662,7 @@ class Share { } /** - * @brief Delete all reshares of an item + * Delete all reshares of an item * @param int Id of item to delete * @param bool If true, exclude the parent from the delete (optional) * @param string The user that the parent was shared with (optinal) @@ -1719,6 +1722,18 @@ class Share { } /** + * Delete all shares with type SHARE_TYPE_LINK + */ + public static function removeAllLinkShares() { + // Delete any link shares + $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ?'); + $result = $query->execute(array(self::SHARE_TYPE_LINK)); + while ($item = $result->fetchRow()) { + self::delete($item['id']); + } + } + + /** * Hook Listeners */ @@ -1797,7 +1812,7 @@ class Share { interface Share_Backend { /** - * @brief Get the source of the item to be stored in the database + * Get the source of the item to be stored in the database * @param string Item source * @param string Owner of the item * @return mixed|array|false Source @@ -1810,7 +1825,7 @@ interface Share_Backend { public function isValidSource($itemSource, $uidOwner); /** - * @brief Get a unique name of the item for the specified user + * Get a unique name of the item for the specified user * @param string Item source * @param string|false User the item is being shared with * @param array|null List of similar item names already existing as shared items @@ -1822,7 +1837,7 @@ interface Share_Backend { public function generateTarget($itemSource, $shareWith, $exclude = null); /** - * @brief Converts the shared item sources back into the item in the specified format + * Converts the shared item sources back into the item in the specified format * @param array Shared items * @param int Format * @return ? @@ -1853,10 +1868,7 @@ interface Share_Backend { interface Share_Backend_File_Dependent extends Share_Backend { /** - * @brief Get the file path of the item - * @param - * @param - * @return + * Get the file path of the item */ public function getFilePath($itemSource, $uidOwner); @@ -1869,7 +1881,7 @@ interface Share_Backend_File_Dependent extends Share_Backend { interface Share_Backend_Collection extends Share_Backend { /** - * @brief Get the sources of the children of the item + * Get the sources of the children of the item * @param string Item source * @return array Returns an array of children each inside an array with the keys: source, target, and file_path if applicable */ diff --git a/lib/public/template.php b/lib/public/template.php index a5c500b0e25..cf2dc7766f5 100644 --- a/lib/public/template.php +++ b/lib/public/template.php @@ -32,12 +32,12 @@ namespace OCP; /** - * @brief make OC_Helper::imagePath available as a simple function - * @param $app app - * @param $image image - * @returns link to the image + * Make OC_Helper::imagePath available as a simple function + * @param string app + * @param string image + * @return link to the image * - * For further information have a look at OC_Helper::imagePath + * @see OC_Helper::imagePath */ function image_path( $app, $image ) { return(\image_path( $app, $image )); @@ -45,40 +45,39 @@ function image_path( $app, $image ) { /** - * @brief make OC_Helper::mimetypeIcon available as a simple function - * Returns the path to the image of this file type. - * @param $mimetype mimetype - * @returns link to the image + * Make OC_Helper::mimetypeIcon available as a simple function + * @param string mimetype + * @return path to the image of this file type. */ function mimetype_icon( $mimetype ) { return(\mimetype_icon( $mimetype )); } /** - * @brief make preview_icon available as a simple function - * Returns the path to the preview of the image. - * @param $path path of file - * @returns link to the preview + * Make preview_icon available as a simple function + * @param string path of file + * @return path to the preview of the image */ function preview_icon( $path ) { return(\preview_icon( $path )); } /** - * @brief make publicpreview_icon available as a simple function + * Make publicpreview_icon available as a simple function * Returns the path to the preview of the image. - * @param $path path of file - * @returns link to the preview + * @param string path of file + * @param string token + * @return link to the preview */ function publicPreview_icon ( $path, $token ) { return(\publicPreview_icon( $path, $token )); } /** - * @brief make OC_Helper::humanFileSize available as a simple function - * Makes 2048 to 2 kB. - * @param $bytes size in bytes - * @returns size as string + * Make OC_Helper::humanFileSize available as a simple function + * Example: 2048 to 2 kB. + * @param int size in bytes + * @return size as string */ function human_file_size( $bytes ) { return(\human_file_size( $bytes )); @@ -86,20 +85,21 @@ function human_file_size( $bytes ) { /** - * @brief Return the relative date in relation to today. Returns something like "last hour" or "two month ago" - * @param $timestamp unix timestamp - * @returns human readable interpretation of the timestamp + * Return the relative date in relation to today. Returns something like "last hour" or "two month ago" + * @param int unix timestamp + * @param boolean date only + * @return human readable interpretation of the timestamp */ -function relative_modified_date($timestamp, $dateOnly = false) { +function relative_modified_date( $timestamp, $dateOnly = false ) { return(\relative_modified_date($timestamp, null, $dateOnly)); } /** - * @brief DEPRECATED Return a human readable outout for a file size. + * Return a human readable outout for a file size. * @deprecated human_file_size() instead - * @param $byte size of a file in byte - * @returns human readable interpretation of a file size + * @param integer size of a file in byte + * @return human readable interpretation of a file size */ function simple_file_size($bytes) { return(\human_file_size($bytes)); @@ -107,11 +107,11 @@ function simple_file_size($bytes) { /** - * @brief Generate html code for an options block. + * Generate html code for an options block. * @param $options the options * @param $selected which one is selected? - * @param $params the parameters - * @returns html options + * @param array the parameters + * @return html options */ function html_select_options($options, $selected, $params=array()) { return(\html_select_options($options, $selected, $params)); diff --git a/lib/public/user.php b/lib/public/user.php index 576a64d7048..b4931ecc0fa 100644 --- a/lib/public/user.php +++ b/lib/public/user.php @@ -36,7 +36,7 @@ namespace OCP; */ class User { /** - * @brief get the user id of the user currently logged in. + * Get the user id of the user currently logged in. * @return string uid or false */ public static function getUser() { @@ -44,45 +44,46 @@ class User { } /** - * @brief Get a list of all users - * @returns array with all uids - * - * Get a list of all users. + * Get a list of all users + * @param string search pattern + * @param int limit + * @param int offset + * @return array with all uids */ - public static function getUsers($search = '', $limit = null, $offset = null) { - return \OC_User::getUsers($search, $limit, $offset); + public static function getUsers( $search = '', $limit = null, $offset = null ) { + return \OC_User::getUsers( $search, $limit, $offset ); } /** - * @brief get the user display name of the user currently logged in. + * Get the user display name of the user currently logged in. + * @param string user id or null for current user * @return string display name */ - public static function getDisplayName($user=null) { - return \OC_User::getDisplayName($user); + public static function getDisplayName( $user = null ) { + return \OC_User::getDisplayName( $user ); } /** - * @brief Get a list of all display names - * @returns array with all display names (value) and the correspondig uids (key) - * * Get a list of all display names and user ids. + * @param string search pattern + * @param int limit + * @param int offset + * @return array with all display names (value) and the correspondig uids (key) */ - public static function getDisplayNames($search = '', $limit = null, $offset = null) { - return \OC_User::getDisplayNames($search, $limit, $offset); + public static function getDisplayNames( $search = '', $limit = null, $offset = null ) { + return \OC_User::getDisplayNames( $search, $limit, $offset ); } /** - * @brief Check if the user is logged in - * @returns true/false - * - * Checks if the user is logged in + * Check if the user is logged in + * @return boolean */ public static function isLoggedIn() { return \OC_User::isLoggedIn(); } /** - * @brief check if a user exists + * Check if a user exists * @param string $uid the username * @param string $excludingBackend (default none) * @return boolean @@ -91,7 +92,7 @@ class User { return \OC_User::userExists( $uid, $excludingBackend ); } /** - * @brief Loggs the user out including all the session data + * Logs the user out including all the session data * Logout, destroys session */ public static function logout() { @@ -99,10 +100,10 @@ class User { } /** - * @brief Check if the password is correct - * @param $uid The username - * @param $password The password - * @returns mixed username on success, false otherwise + * Check if the password is correct + * @param string The username + * @param string The password + * @return mixed username on success, false otherwise * * Check if the password is correct without logging in the user */ diff --git a/settings/css/settings.css b/settings/css/settings.css index 65b0ba89b80..6092d5e8dac 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -54,7 +54,11 @@ tr:hover>td.remove>a, tr:hover>td.password>img,tr:hover>td.displayName>img, tr:h tr:hover>td.remove>a { float:right; } li.selected { background-color:#ddd; } table.grid { width:100%; } -#rightcontent { padding-left: 1em; } +#leftcontent, .leftcontent { + width: 256px; +} +#rightcontent, .rightcontent { top: 80px; left: 336px; } +#rightcontent { padding-left: 10px; } div.quota { float: right; display: block; diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 9873d4d20ac..4000b87c709 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/de.php b/settings/l10n/de.php index d7e26e482c9..1d02b323462 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -51,7 +51,7 @@ $TRANSLATIONS = array( "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Dein Datenverzeichnis und deine Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten dir dringend, dass du deinen Webserver dahingehend konfigurierst, dass dein Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder du verschiebst das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Setup Warning" => "Einrichtungswarnung", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the <a href=\"%s\">installation guides</a>." => "Bitte überprüfe die <a href=\"%s\">Instalationsanleitungen</a>.", +"Please double check the <a href=\"%s\">installation guides</a>." => "Bitte überprüfe die <a href=\"%s\">Installationsanleitungen</a>.", "Module 'fileinfo' missing" => "Modul 'fileinfo' fehlt ", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen.", "Locale not working" => "Ländereinstellung funktioniert nicht", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index bfaa9827b21..544655ade27 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/sv.php b/settings/l10n/sv.php index 4f8ad376db7..e5126150f2e 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "TillÃ¥t användare att dela vidare filer som delats med dem", "Allow users to share with anyone" => "TillÃ¥t delning med alla", "Allow users to only share with users in their groups" => "TillÃ¥t bara delning med användare i egna grupper", +"Allow mail notification" => "TillÃ¥t e-post notifikation", +"Allow user to send mail notification for shared files" => "TillÃ¥t användare att skicka e-port notifikationer för delade filer", "Security" => "Säkerhet", "Enforce HTTPS" => "Kräv HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvingar klienterna att ansluta till %s via en krypterad anslutning.", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 1f4ce98f555..e7c6dbdc7d3 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/tests/data/openssl.cnf b/tests/data/openssl.cnf new file mode 100644 index 00000000000..1eb86c40126 --- /dev/null +++ b/tests/data/openssl.cnf @@ -0,0 +1,350 @@ +# +# OpenSSL example configuration file. +# This is mostly being used for generation of certificate requests. +# + +# This definition stops the following lines choking if HOME isn't +# defined. +HOME = . +RANDFILE = $ENV::HOME/.rnd + +# Extra OBJECT IDENTIFIER info: +#oid_file = $ENV::HOME/.oid +oid_section = new_oids + +# To use this configuration file with the "-extfile" option of the +# "openssl x509" utility, name here the section containing the +# X.509v3 extensions to use: +# extensions = +# (Alternatively, use a configuration file that has only +# X.509v3 extensions in its main [= default] section.) + +[ new_oids ] + +# We can add new OIDs in here for use by 'ca', 'req' and 'ts'. +# Add a simple OID like this: +# testoid1=1.2.3.4 +# Or use config file substitution like this: +# testoid2=${testoid1}.5.6 + +# Policies used by the TSA examples. +tsa_policy1 = 1.2.3.4.1 +tsa_policy2 = 1.2.3.4.5.6 +tsa_policy3 = 1.2.3.4.5.7 + +#################################################################### +[ ca ] +default_ca = CA_default # The default ca section + +#################################################################### +[ CA_default ] + +dir = ./demoCA # Where everything is kept +certs = $dir/certs # Where the issued certs are kept +crl_dir = $dir/crl # Where the issued crl are kept +database = $dir/index.txt # database index file. +#unique_subject = no # Set to 'no' to allow creation of + # several ctificates with same subject. +new_certs_dir = $dir/newcerts # default place for new certs. + +certificate = $dir/cacert.pem # The CA certificate +serial = $dir/serial # The current serial number +crlnumber = $dir/crlnumber # the current crl number + # must be commented out to leave a V1 CRL +crl = $dir/crl.pem # The current CRL +private_key = $dir/private/cakey.pem# The private key +RANDFILE = $dir/private/.rand # private random number file + +x509_extensions = usr_cert # The extentions to add to the cert + +# Comment out the following two lines for the "traditional" +# (and highly broken) format. +name_opt = ca_default # Subject Name options +cert_opt = ca_default # Certificate field options + +# Extension copying option: use with caution. +# copy_extensions = copy + +# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs +# so this is commented out by default to leave a V1 CRL. +# crlnumber must also be commented out to leave a V1 CRL. +# crl_extensions = crl_ext + +default_days = 365 # how long to certify for +default_crl_days= 30 # how long before next CRL +default_md = default # use public key default MD +preserve = no # keep passed DN ordering + +# A few difference way of specifying how similar the request should look +# For type CA, the listed attributes must be the same, and the optional +# and supplied fields are just that :-) +policy = policy_match + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +# For the 'anything' policy +# At this point in time, you must list all acceptable 'object' +# types. +[ policy_anything ] +countryName = optional +stateOrProvinceName = optional +localityName = optional +organizationName = optional +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +#################################################################### +[ req ] +default_bits = 2048 +default_keyfile = privkey.pem +distinguished_name = req_distinguished_name +attributes = req_attributes +x509_extensions = v3_ca # The extentions to add to the self signed cert + +# Passwords for private keys if not present they will be prompted for +# input_password = secret +# output_password = secret + +# This sets a mask for permitted string types. There are several options. +# default: PrintableString, T61String, BMPString. +# pkix : PrintableString, BMPString (PKIX recommendation before 2004) +# utf8only: only UTF8Strings (PKIX recommendation after 2004). +# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings). +# MASK:XXXX a literal mask value. +# WARNING: ancient versions of Netscape crash on BMPStrings or UTF8Strings. +string_mask = utf8only + +# req_extensions = v3_req # The extensions to add to a certificate request + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = AU +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = Some-State + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = Internet Widgits Pty Ltd + +# we can do this but it is not needed normally :-) +#1.organizationName = Second Organization Name (eg, company) +#1.organizationName_default = World Wide Web Pty Ltd + +organizationalUnitName = Organizational Unit Name (eg, section) +#organizationalUnitName_default = + +commonName = Common Name (e.g. server FQDN or YOUR name) +commonName_max = 64 + +emailAddress = Email Address +emailAddress_max = 64 + +# SET-ex3 = SET extension number 3 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +unstructuredName = An optional company name + +[ usr_cert ] + +# These extensions are added when 'ca' signs a request. + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This is required for TSA certificates. +# extendedKeyUsage = critical,timeStamping + +[ v3_req ] + +# Extensions to add to a certificate request + +basicConstraints = CA:FALSE +keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +[ v3_ca ] + + +# Extensions for a typical CA + + +# PKIX recommendation. + +subjectKeyIdentifier=hash + +authorityKeyIdentifier=keyid:always,issuer + +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +basicConstraints = CA:true + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# keyUsage = cRLSign, keyCertSign + +# Some might want this also +# nsCertType = sslCA, emailCA + +# Include email address in subject alt name: another PKIX recommendation +# subjectAltName=email:copy +# Copy issuer details +# issuerAltName=issuer:copy + +# DER hex encoding of an extension: beware experts only! +# obj=DER:02:03 +# Where 'obj' is a standard or added object +# You can even override a supported extension: +# basicConstraints= critical, DER:30:03:01:01:FF + +[ crl_ext ] + +# CRL extensions. +# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. + +# issuerAltName=issuer:copy +authorityKeyIdentifier=keyid:always + +[ proxy_cert_ext ] +# These extensions should be added when creating a proxy certificate + +# This goes against PKIX guidelines but some CAs do it and some software +# requires this to avoid interpreting an end user certificate as a CA. + +basicConstraints=CA:FALSE + +# Here are some examples of the usage of nsCertType. If it is omitted +# the certificate can be used for anything *except* object signing. + +# This is OK for an SSL server. +# nsCertType = server + +# For an object signing certificate this would be used. +# nsCertType = objsign + +# For normal client use this is typical +# nsCertType = client, email + +# and for everything including object signing: +# nsCertType = client, email, objsign + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier=hash +authorityKeyIdentifier=keyid,issuer + +# This stuff is for subjectAltName and issuerAltname. +# Import the email address. +# subjectAltName=email:copy +# An alternative to produce certificates that aren't +# deprecated according to PKIX. +# subjectAltName=email:move + +# Copy subject details +# issuerAltName=issuer:copy + +#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem +#nsBaseUrl +#nsRevocationUrl +#nsRenewalUrl +#nsCaPolicyUrl +#nsSslServerName + +# This really needs to be in place for it to be a proxy certificate. +proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo + +#################################################################### +[ tsa ] + +default_tsa = tsa_config1 # the default TSA section + +[ tsa_config1 ] + +# These are used by the TSA reply generation only. +dir = ./demoCA # TSA root directory +serial = $dir/tsaserial # The current serial number (mandatory) +crypto_device = builtin # OpenSSL engine to use for signing +signer_cert = $dir/tsacert.pem # The TSA signing certificate + # (optional) +certs = $dir/cacert.pem # Certificate chain to include in reply + # (optional) +signer_key = $dir/private/tsakey.pem # The TSA private key (optional) + +default_policy = tsa_policy1 # Policy if request did not specify it + # (optional) +other_policies = tsa_policy2, tsa_policy3 # acceptable policies (optional) +digests = md5, sha1 # Acceptable message digests (mandatory) +accuracy = secs:1, millisecs:500, microsecs:100 # (optional) +clock_precision_digits = 0 # number of digits after dot. (optional) +ordering = yes # Is ordering defined for timestamps? + # (optional, default: no) +tsa_name = yes # Must the TSA name be included in the reply? + # (optional, default: no) +ess_cert_id_chain = no # Must the ESS cert id chain be included? + # (optional, default: no) diff --git a/tests/lib/appframework/AppTest.php b/tests/lib/appframework/AppTest.php index 80abaefc43b..3628e4ceab2 100644 --- a/tests/lib/appframework/AppTest.php +++ b/tests/lib/appframework/AppTest.php @@ -38,9 +38,9 @@ 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( - 'OC\AppFramework\Controller\Controller') + 'OCP\AppFramework\Controller') ->disableOriginalConstructor() ->getMock(); $this->dispatcher = $this->getMockBuilder( @@ -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/controller/ControllerTest.php b/tests/lib/appframework/controller/ControllerTest.php index 4441bddfca9..f17d5f24aa5 100644 --- a/tests/lib/appframework/controller/ControllerTest.php +++ b/tests/lib/appframework/controller/ControllerTest.php @@ -25,13 +25,10 @@ namespace Test\AppFramework\Controller; use OC\AppFramework\Http\Request; -use OC\AppFramework\Controller\Controller; +use OCP\AppFramework\Controller; use OCP\AppFramework\Http\TemplateResponse; -//require_once __DIR__ . "/../classloader.php"; - - class ChildController extends Controller {}; class ControllerTest extends \PHPUnit_Framework_TestCase { @@ -40,7 +37,7 @@ class ControllerTest extends \PHPUnit_Framework_TestCase { * @var Controller */ private $controller; - private $api; + private $app; protected function setUp(){ $request = new Request( @@ -55,13 +52,13 @@ class ControllerTest extends \PHPUnit_Framework_TestCase { ) ); - $this->api = $this->getMock('OC\AppFramework\Core\API', + $this->app = $this->getMock('OC\AppFramework\DependencyInjection\DIContainer', array('getAppName'), array('test')); - $this->api->expects($this->any()) + $this->app->expects($this->any()) ->method('getAppName') ->will($this->returnValue('apptemplate_advanced')); - $this->controller = new ChildController($this->api, $request); + $this->controller = new ChildController($this->app, $request); } @@ -114,26 +111,6 @@ class ControllerTest extends \PHPUnit_Framework_TestCase { } - public function testRenderRenderAs(){ - $ocTpl = $this->getMock('Template', array('fetchPage')); - $ocTpl->expects($this->once()) - ->method('fetchPage'); - - $api = $this->getMock('OC\AppFramework\Core\API', - array('getAppName', 'getTemplate'), array('app')); - $api->expects($this->any()) - ->method('getAppName') - ->will($this->returnValue('app')); - $api->expects($this->once()) - ->method('getTemplate') - ->with($this->equalTo('home'), $this->equalTo('admin'), $this->equalTo('app')) - ->will($this->returnValue($ocTpl)); - - $this->controller = new ChildController($api, new Request()); - $this->controller->render('home', array(), 'admin')->render(); - } - - public function testRenderHeaders(){ $headers = array('one', 'two'); $response = $this->controller->render('', array(), '', $headers); diff --git a/tests/lib/appframework/dependencyinjection/DIContainerTest.php b/tests/lib/appframework/dependencyinjection/DIContainerTest.php index 25fdd202839..f3ebff0207f 100644 --- a/tests/lib/appframework/dependencyinjection/DIContainerTest.php +++ b/tests/lib/appframework/dependencyinjection/DIContainerTest.php @@ -29,23 +29,14 @@ namespace OC\AppFramework\DependencyInjection; use \OC\AppFramework\Http\Request; -//require_once(__DIR__ . "/../classloader.php"); - - class DIContainerTest extends \PHPUnit_Framework_TestCase { private $container; + private $api; protected function setUp(){ $this->container = new DIContainer('name'); - $this->api = $this->getMock('OC\AppFramework\Core\API', array('getTrans'), array('hi')); - } - - private function exchangeAPI(){ - $this->api->expects($this->any()) - ->method('getTrans') - ->will($this->returnValue('yo')); - $this->container['API'] = $this->api; + $this->api = $this->getMock('OC\AppFramework\Core\API', array(), array('hi')); } public function testProvidesAPI(){ @@ -87,12 +78,4 @@ class DIContainerTest extends \PHPUnit_Framework_TestCase { } - public function testMiddlewareDispatcherDoesNotIncludeTwigWhenTplDirectoryNotSet(){ - $this->container['Request'] = new Request(); - $this->exchangeAPI(); - $dispatcher = $this->container['MiddlewareDispatcher']; - - $this->assertEquals(1, count($dispatcher->getMiddlewares())); - } - } diff --git a/tests/lib/appframework/http/DispatcherTest.php b/tests/lib/appframework/http/DispatcherTest.php index 849b0ca97a6..9052fe0781a 100644 --- a/tests/lib/appframework/http/DispatcherTest.php +++ b/tests/lib/appframework/http/DispatcherTest.php @@ -44,8 +44,8 @@ class DispatcherTest extends \PHPUnit_Framework_TestCase { protected function setUp() { $this->controllerMethod = 'test'; - $api = $this->getMockBuilder( - '\OC\AppFramework\Core\API') + $app = $this->getMockBuilder( + 'OC\AppFramework\DependencyInjection\DIContainer') ->disableOriginalConstructor() ->getMock(); $request = $this->getMockBuilder( @@ -62,8 +62,8 @@ class DispatcherTest extends \PHPUnit_Framework_TestCase { ->disableOriginalConstructor() ->getMock(); $this->controller = $this->getMock( - '\OC\AppFramework\Controller\Controller', - array($this->controllerMethod), array($api, $request)); + '\OCP\AppFramework\Controller', + array($this->controllerMethod), array($app, $request)); $this->dispatcher = new Dispatcher( $this->http, $this->middlewareDispatcher); diff --git a/tests/lib/appframework/http/TemplateResponseTest.php b/tests/lib/appframework/http/TemplateResponseTest.php index 3c6d29cd339..a583d9da14f 100644 --- a/tests/lib/appframework/http/TemplateResponseTest.php +++ b/tests/lib/appframework/http/TemplateResponseTest.php @@ -63,93 +63,33 @@ class TemplateResponseTest extends \PHPUnit_Framework_TestCase { } - public function testRender(){ - $ocTpl = $this->getMock('Template', array('fetchPage')); - $ocTpl->expects($this->once()) - ->method('fetchPage'); - - $api = $this->getMock('OC\AppFramework\Core\API', - array('getAppName', 'getTemplate'), array('app')); - $api->expects($this->any()) - ->method('getAppName') - ->will($this->returnValue('app')); - $api->expects($this->once()) - ->method('getTemplate') - ->with($this->equalTo('home'), $this->equalTo('user'), $this->equalTo('app')) - ->will($this->returnValue($ocTpl)); - - $tpl = new TemplateResponse($api, 'home'); - - $tpl->render(); - } - - - public function testRenderAssignsParams(){ - $params = array('john' => 'doe'); - - $ocTpl = $this->getMock('Template', array('assign', 'fetchPage')); - $ocTpl->expects($this->once()) - ->method('assign') - ->with($this->equalTo('john'), $this->equalTo('doe')); - - $api = $this->getMock('OC\AppFramework\Core\API', - array('getAppName', 'getTemplate'), array('app')); - $api->expects($this->any()) - ->method('getAppName') - ->will($this->returnValue('app')); - $api->expects($this->once()) - ->method('getTemplate') - ->with($this->equalTo('home'), $this->equalTo('user'), $this->equalTo('app')) - ->will($this->returnValue($ocTpl)); - - $tpl = new TemplateResponse($api, 'home'); - $tpl->setParams($params); - - $tpl->render(); - } - - - public function testRenderDifferentApp(){ - $ocTpl = $this->getMock('Template', array('fetchPage')); - $ocTpl->expects($this->once()) - ->method('fetchPage'); - - $api = $this->getMock('OC\AppFramework\Core\API', - array('getAppName', 'getTemplate'), array('app')); - $api->expects($this->any()) - ->method('getAppName') - ->will($this->returnValue('app')); - $api->expects($this->once()) - ->method('getTemplate') - ->with($this->equalTo('home'), $this->equalTo('user'), $this->equalTo('app2')) - ->will($this->returnValue($ocTpl)); - - $tpl = new TemplateResponse($api, 'home', 'app2'); - - $tpl->render(); - } - - - public function testRenderDifferentRenderAs(){ - $ocTpl = $this->getMock('Template', array('fetchPage')); - $ocTpl->expects($this->once()) - ->method('fetchPage'); - - $api = $this->getMock('OC\AppFramework\Core\API', - array('getAppName', 'getTemplate'), array('app')); - $api->expects($this->any()) - ->method('getAppName') - ->will($this->returnValue('app')); - $api->expects($this->once()) - ->method('getTemplate') - ->with($this->equalTo('home'), $this->equalTo('admin'), $this->equalTo('app')) - ->will($this->returnValue($ocTpl)); - - $tpl = new TemplateResponse($api, 'home'); - $tpl->renderAs('admin'); - - $tpl->render(); - } +// public function testRender(){ +// $ocTpl = $this->getMock('Template', array('fetchPage')); +// $ocTpl->expects($this->once()) +// ->method('fetchPage'); +// +// $tpl = new TemplateResponse('core', 'error'); +// +// $tpl->render(); +// } +// +// +// public function testRenderAssignsParams(){ +// $params = array('john' => 'doe'); +// +// $tpl = new TemplateResponse('app', 'home'); +// $tpl->setParams($params); +// +// $tpl->render(); +// } +// +// +// public function testRenderDifferentApp(){ +// +// $tpl = new TemplateResponse('app', 'home', 'app2'); +// +// $tpl->render(); +// } public function testGetRenderAs(){ diff --git a/tests/lib/appframework/middleware/MiddlewareDispatcherTest.php b/tests/lib/appframework/middleware/MiddlewareDispatcherTest.php index dd85a9ad52f..95d42e4eb8e 100644 --- a/tests/lib/appframework/middleware/MiddlewareDispatcherTest.php +++ b/tests/lib/appframework/middleware/MiddlewareDispatcherTest.php @@ -122,13 +122,13 @@ class MiddlewareDispatcherTest extends \PHPUnit_Framework_TestCase { private function getAPIMock(){ - return $this->getMock('OC\AppFramework\Core\API', + return $this->getMock('OC\AppFramework\DependencyInjection\DIContainer', array('getAppName'), array('app')); } private function getControllerMock(){ - return $this->getMock('OC\AppFramework\Controller\Controller', array('method'), + return $this->getMock('OCP\AppFramework\Controller', array('method'), array($this->getAPIMock(), new Request())); } diff --git a/tests/lib/appframework/middleware/MiddlewareTest.php b/tests/lib/appframework/middleware/MiddlewareTest.php index d0be7f7ca74..7a93c0d4dda 100644 --- a/tests/lib/appframework/middleware/MiddlewareTest.php +++ b/tests/lib/appframework/middleware/MiddlewareTest.php @@ -44,10 +44,10 @@ class MiddlewareTest extends \PHPUnit_Framework_TestCase { protected function setUp(){ $this->middleware = new ChildMiddleware(); - $this->api = $this->getMock('OC\AppFramework\Core\API', + $this->api = $this->getMock('OC\AppFramework\DependencyInjection\DIContainer', array(), array('test')); - $this->controller = $this->getMock('OC\AppFramework\Controller\Controller', + $this->controller = $this->getMock('OCP\AppFramework\Controller', array(), array($this->api, new Request())); $this->exception = new \Exception(); $this->response = $this->getMock('OCP\AppFramework\Http\Response'); diff --git a/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php b/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php index 3ed44282a7b..4bfd725ffd0 100644 --- a/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php +++ b/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php @@ -39,8 +39,8 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { private $request; public function setUp() { - $api = $this->getMock('OC\AppFramework\Core\API', array(), array('test')); - $this->controller = $this->getMock('OC\AppFramework\Controller\Controller', + $api = $this->getMock('OC\AppFramework\DependencyInjection\DIContainer', array(), array('test')); + $this->controller = $this->getMock('OCP\AppFramework\Controller', array(), array($api, new Request())); $this->request = new Request(); @@ -51,24 +51,19 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { private function getAPI(){ - return $this->getMock('OC\AppFramework\Core\API', + return $this->getMock('OC\AppFramework\DependencyInjection\DIContainer', array('isLoggedIn', 'passesCSRFCheck', 'isAdminUser', - 'isSubAdminUser', 'activateNavigationEntry', - 'getUserId'), + 'isSubAdminUser', 'getUserId'), array('app')); } - private function checkNavEntry($method, $shouldBeActivated=false){ + private function checkNavEntry($method){ $api = $this->getAPI(); - if($shouldBeActivated){ - $api->expects($this->once()) - ->method('activateNavigationEntry'); - } else { - $api->expects($this->never()) - ->method('activateNavigationEntry'); - } + $serverMock = $this->getMock('\OC\Server', array()); + $api->expects($this->any())->method('getServer') + ->will($this->returnValue($serverMock)); $sec = new SecurityMiddleware($api, $this->request); $sec->beforeController('\OC\AppFramework\Middleware\Security\SecurityMiddlewareTest', $method); @@ -80,7 +75,7 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @NoCSRFRequired */ public function testSetNavigationEntry(){ - $this->checkNavEntry('testSetNavigationEntry', true); + $this->checkNavEntry('testSetNavigationEntry'); } @@ -215,9 +210,33 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { /** * @PublicPage + * @expectedException \OC\AppFramework\Middleware\Security\SecurityException */ public function testCsrfCheck(){ - $this->securityCheck('testCsrfCheck', 'passesCSRFCheck'); + $api = $this->getAPI(); + $request = $this->getMock('OC\AppFramework\Http\Request', array('passesCSRFCheck')); + $request->expects($this->once()) + ->method('passesCSRFCheck') + ->will($this->returnValue(false)); + + $sec = new SecurityMiddleware($api, $request); + $sec->beforeController('\OC\AppFramework\Middleware\Security\SecurityMiddlewareTest', 'testCsrfCheck'); + } + + + /** + * @PublicPage + * @NoCSRFRequired + */ + public function testNoCsrfCheck(){ + $api = $this->getAPI(); + $request = $this->getMock('OC\AppFramework\Http\Request', array('passesCSRFCheck')); + $request->expects($this->never()) + ->method('passesCSRFCheck') + ->will($this->returnValue(false)); + + $sec = new SecurityMiddleware($api, $request); + $sec->beforeController('\OC\AppFramework\Middleware\Security\SecurityMiddlewareTest', 'testNoCsrfCheck'); } @@ -225,7 +244,14 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { * @PublicPage */ public function testFailCsrfCheck(){ - $this->securityCheck('testFailCsrfCheck', 'passesCSRFCheck', true); + $api = $this->getAPI(); + $request = $this->getMock('OC\AppFramework\Http\Request', array('passesCSRFCheck')); + $request->expects($this->once()) + ->method('passesCSRFCheck') + ->will($this->returnValue(true)); + + $sec = new SecurityMiddleware($api, $request); + $sec->beforeController('\OC\AppFramework\Middleware\Security\SecurityMiddlewareTest', 'testFailCsrfCheck'); } @@ -271,8 +297,12 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase { public function testAfterExceptionReturnsRedirect(){ - $api = $this->getMock('OC\AppFramework\Core\API', array(), array('test')); - $this->controller = $this->getMock('OC\AppFramework\Controller\Controller', + $api = $this->getMock('OC\AppFramework\DependencyInjection\DIContainer', array(), array('test')); + $serverMock = $this->getMock('\OC\Server', array('getNavigationManager')); + $api->expects($this->once())->method('getServer') + ->will($this->returnValue($serverMock)); + + $this->controller = $this->getMock('OCP\AppFramework\Controller', array(), array($api, new Request())); $this->request = new Request( diff --git a/tests/lib/avatar.php b/tests/lib/avatar.php index 1c5195f8eb1..6e6faed2d2c 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/helper.php b/tests/lib/helper.php index b4d896e5196..babafab52c0 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/preseed-config.php b/tests/preseed-config.php index 9791e713dac..95ffb4514bf 100644 --- a/tests/preseed-config.php +++ b/tests/preseed-config.php @@ -16,4 +16,9 @@ $CONFIG = array ( 'writable' => false, ) ), + ); + +if(substr(strtolower(PHP_OS), 0, 3) == "win") { + $CONFIG['openssl'] = array( 'config' => OC::$SERVERROOT.'/tests/data/openssl.cnf'); +} diff --git a/tests/win32-phpunit.php b/tests/win32-phpunit.php deleted file mode 100644 index ac8f95efcbf..00000000000 --- a/tests/win32-phpunit.php +++ /dev/null @@ -1,347 +0,0 @@ -<?php -OC_PHPUnit_Loader::checkIncludePath(); -OC_PHPUnit_Loader::detectPHPUnitVersionId(); - -//load PHPUnit -switch (OC_PHPUnit_Loader::$PHPUnitVersionId) { - case "36": { - OC_PHPUnit_Loader::load36(); - break; - } - case "37": { - OC_PHPUnit_Loader::load37(); - break; - } -} - -//load custom implementation of the PHPUnit_TextUI_ResultPrinter -switch (OC_PHPUnit_Loader::$PHPUnitVersionId) { - case "36": - case "37": { - class OC_PHPUnit_TextUI_ResultPrinter extends PHPUnit_TextUI_ResultPrinter - { - function __construct() - { - parent::__construct('php://stderr'); - } - - public function printResult(PHPUnit_Framework_TestResult $result) - { - $this->printHeader(); - $this->printFooter($result); - } - - protected function writeProgress($progress) - { - //ignore - } - } - break; - } -} - -//loading of OC_PHPUnit_TextUI_Command -switch (OC_PHPUnit_Loader::$PHPUnitVersionId) { - case "36": - case "37": { - class OC_PHPUnit_TextUI_Command extends PHPUnit_TextUI_Command - { - - public static function main($exit = TRUE) - { - $command = new OC_PHPUnit_TextUI_Command(); - $command->run($_SERVER['argv'], $exit); - } - - protected function handleArguments(array $argv) - { - parent::handleArguments($argv); - $this->arguments['listeners'][] = new OC_PHPUnit_Framework_TestListener(); - $this->arguments['printer'] = new OC_PHPUnit_TextUI_ResultPrinter(); - } - - protected function createRunner() - { - $coverage_Filter = new PHP_CodeCoverage_Filter(); - $coverage_Filter->addFileToBlacklist(__FILE__); - $runner = new PHPUnit_TextUI_TestRunner($this->arguments['loader'], $coverage_Filter); - return $runner; - } - } - break; - } -} - -class OC_PHPUnit_Loader -{ - - const SUCCESS_EXIT = 0; - const FAILURE_EXIT = 1; - const EXCEPTION_EXIT = 2; - - public static $PHPUnitVersionId; - - /** - * @return void - */ - public static function checkIncludePath() - { - //check include path - $PHPUnitParentDirectory = self::getPHPUnitParentDirectory(); - if (is_null($PHPUnitParentDirectory)) { - echo "Cannot find PHPUnit in include path (" . ini_get('include_path') . ")"; - exit(OC_PHPUnit_Loader::FAILURE_EXIT); - } - } - - /** - * @return null | string - */ - private static function getPHPUnitParentDirectory() - { - $pathArray = explode(PATH_SEPARATOR, ini_get('include_path')); - foreach ($pathArray as $path) - { - if (file_exists($path . DIRECTORY_SEPARATOR . 'PHPUnit/')) { - return $path; - } - } - return null; - } - - /** - * @return void - */ - public static function detectPHPUnitVersionId() - { - require_once 'PHPUnit/Runner/Version.php'; - - $PHPUnitVersion = PHPUnit_Runner_Version::id(); - - if ($PHPUnitVersion === "@package_version@") { - - self::$PHPUnitVersionId = "37"; - } - else if (version_compare($PHPUnitVersion, '3.7.0') >= 0) { - - self::$PHPUnitVersionId = "37"; - } - else if (version_compare($PHPUnitVersion, '3.6.0') >= 0) { - - self::$PHPUnitVersionId = "36"; - } - else if (version_compare($PHPUnitVersion, '3.6.0') >= 0) { - - echo "unsupported PHPUnit version: $PHPUnitVersion"; - exit(OC_PHPUnit_Loader::FAILURE_EXIT); - } - } - - /** - * @return void - */ - public static function load37() - { - - require 'PHPUnit/Autoload.php'; - - } - - - /** - * @return void - */ - public static function load36() - { - define('PHPUnit_MAIN_METHOD', 'OC_PHPUnit_TextUI_Command::main'); - - require 'PHPUnit/Autoload.php'; - - } -} - -class OC_PHPUnit_Framework_TestListener implements PHPUnit_Framework_TestListener -{ - - private $isSummaryTestCountPrinted = false; - - public static function printEvent($eventName, $params = array()) - { - self::printText("\n[$eventName"); - foreach ($params as $key => $value) { - self::printText(" $key='$value'"); - } - self::printText("]\n"); - } - - public static function printText($text) - { - file_put_contents('php://stderr', $text); - } - - private static function getMessage(Exception $e) - { - $message = ""; - if (strlen(get_class($e)) != 0) { - $message = $message . get_class($e); - } - if (strlen($message) != 0 && strlen($e->getMessage()) != 0) { - $message = $message . " : "; - } - $message = $message . $e->getMessage(); - return self::escapeValue($message); - } - - private static function getDetails(Exception $e) - { - return self::escapeValue($e->getTraceAsString()); - } - - public static function getValueAsString($value) - { - if (is_null($value)) { - return "null"; - } - else if (is_bool($value)) { - return $value == true ? "true" : "false"; - } - else if (is_array($value) || is_string($value)) { - $valueAsString = print_r($value, true); - if (strlen($valueAsString) > 10000) { - return null; - } - return $valueAsString; - } - else if (is_scalar($value)){ - return print_r($value, true); - } - return null; - } - - private static function escapeValue($text) { - $text = str_replace("|", "||", $text); - $text = str_replace("'", "|'", $text); - $text = str_replace("\n", "|n", $text); - $text = str_replace("\r", "|r", $text); - $text = str_replace("]", "|]", $text); - return $text; - } - - public static function getFileName($className) - { - $reflectionClass = new ReflectionClass($className); - $fileName = $reflectionClass->getFileName(); - return $fileName; - } - - public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) - { - self::printEvent("testFailed", array( - "name" => $test->getName(), - "message" => self::getMessage($e), - "details" => self::getDetails($e) - )); - } - - public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) - { - $params = array( - "name" => $test->getName(), - "message" => self::getMessage($e), - "details" => self::getDetails($e) - ); - if ($e instanceof PHPUnit_Framework_ExpectationFailedException) { - $comparisonFailure = $e->getComparisonFailure(); - if ($comparisonFailure instanceof PHPUnit_Framework_ComparisonFailure) { - $actualResult = $comparisonFailure->getActual(); - $expectedResult = $comparisonFailure->getExpected(); - $actualString = self::getValueAsString($actualResult); - $expectedString = self::getValueAsString($expectedResult); - if (!is_null($actualString) && !is_null($expectedString)) { - $params['actual'] = self::escapeValue($actualString); - $params['expected'] = self::escapeValue($expectedString); - } - } - } - self::printEvent("testFailed", $params); - } - - public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) - { - self::printEvent("testIgnored", array( - "name" => $test->getName(), - "message" => self::getMessage($e), - "details" => self::getDetails($e) - )); - } - - public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) - { - self::printEvent("testIgnored", array( - "name" => $test->getName(), - "message" => self::getMessage($e), - "details" => self::getDetails($e) - )); - } - - public function startTest(PHPUnit_Framework_Test $test) - { - $testName = $test->getName(); - $params = array( - "name" => $testName - ); - if ($test instanceof PHPUnit_Framework_TestCase) { - $className = get_class($test); - $fileName = self::getFileName($className); - $params['locationHint'] = "php_qn://$fileName::\\$className::$testName"; - } - self::printEvent("testStarted", $params); - } - - public function endTest(PHPUnit_Framework_Test $test, $time) - { - self::printEvent("testFinished", array( - "name" => $test->getName(), - "duration" => (int)(round($time, 2) * 1000) - )); - } - - public function startTestSuite(PHPUnit_Framework_TestSuite $suite) - { - if (!$this->isSummaryTestCountPrinted) { - $this->isSummaryTestCountPrinted = true; - //print tests count - self::printEvent("testCount", array( - "count" => count($suite) - )); - } - - $suiteName = $suite->getName(); - if (empty($suiteName)) { - return; - } - $params = array( - "name" => $suiteName, - ); - if (class_exists($suiteName, false)) { - $fileName = self::getFileName($suiteName); - $params['locationHint'] = "php_qn://$fileName::\\$suiteName"; - } - self::printEvent("testSuiteStarted", $params); - } - - public function endTestSuite(PHPUnit_Framework_TestSuite $suite) - { - $suiteName = $suite->getName(); - if (empty($suiteName)) { - return; - } - self::printEvent("testSuiteFinished", - array( - "name" => $suite->getName() - )); - } - -} - -OC_PHPUnit_TextUI_Command::main(); diff --git a/version.php b/version.php index 8386ee6f875..b87f4bf90c6 100644 --- a/version.php +++ b/version.php @@ -1,10 +1,10 @@ <?php // We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel when updating major/minor version number. -$OC_Version=array(6, 00, 0, 0); +$OC_Version=array(5, 00, 0, 1); // The human radable string -$OC_VersionString='6.0 alpha 1'; +$OC_VersionString='6.0 alpha 2'; // The ownCloud edition $OC_Edition=''; |