diff --git a/apps/files/css/files.css b/apps/files/css/files.css index e26c1a89b789ebb2a8c318e3b7d98bd418592c9e..cbf34279f546d481231c33c3843e87cb57bd23c8 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -8,7 +8,7 @@ .actions .button a { color: #555; } .actions .button a:hover, .actions .button a:active { color: #333; } -#new, #trash { +#new { z-index: 1010; float: left; padding: 0 !important; /* override default control bar button padding */ @@ -16,8 +16,10 @@ #trash { margin-right: 12px; float: right; + z-index: 1010; + padding: 10px; } -#new>a, #trash>a { +#new>a { padding: 14px 10px; position: relative; top: 7px; diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index b52221ac1fc1953f234a62823c5cd54cffbab055..f1ef485fc3d77eb99ea6e4a703daf9ba54f2bb00 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -41,26 +41,6 @@ function supportAjaxUploadWithProgress() { */ OC.Upload = { _uploads: [], - /** - * cancels a single upload, - * @deprecated because it was only used when a file currently beeing uploaded was deleted. Now they are added after - * they have been uploaded. - * @param {string} dir - * @param {string} filename - * @returns {unresolved} - */ - cancelUpload:function(dir, filename) { - var self = this; - var deleted = false; - //FIXME _selections - jQuery.each(this._uploads, function(i, jqXHR) { - if (selection.dir === dir && selection.uploads[filename]) { - deleted = self.deleteSelectionUpload(selection, filename); - return false; // end searching through selections - } - }); - return deleted; - }, /** * deletes the jqHXR object from a data selection * @param {object} data diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 67d3d5ead8d87b935e99f379a005ae8a105abb57..e14e52eb6ca990d3fc2d0880b90b0d26361c7ab2 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -177,20 +177,7 @@ $(document).ready(function () { FileActions.register('all', 'Delete', OC.PERMISSION_DELETE, function () { return OC.imagePath('core', 'actions/delete'); }, function (filename) { - if (OC.Upload.cancelUpload($('#dir').val(), filename)) { - if (filename.substr) { - filename = [filename]; - } - $.each(filename, function (index, file) { - var filename = $('tr').filterAttr('data-file', file); - filename.hide(); - filename.find('input[type="checkbox"]').removeAttr('checked'); - filename.removeClass('selected'); - }); - procesSelection(); - } else { - FileList.do_delete(filename); - } + FileList.do_delete(filename); $('.tipsy').remove(); }); diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 3c99e3876c745166c935a42b3b13e05d50183e4f..a9297996778c867bc01e71572566436b8d10de30 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -804,7 +804,7 @@ $(document).ready(function(){ data.context.attr('data-mime',file.mime).attr('data-id',file.id); var permissions = data.context.data('permissions'); - if(permissions != file.permissions) { + if(permissions !== file.permissions) { data.context.attr('data-permissions', file.permissions); data.context.data('permissions', file.permissions); } diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 899bc6469e503a74bf8b99a2bc7381ca5e169878..37b6685884025f21244f07277110c3e3828b7de8 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -98,6 +98,8 @@ Files={ lastWidth: 0, initBreadCrumbs: function () { + var $controls = $('#controls'); + Files.lastWidth = 0; Files.breadcrumbs = []; @@ -118,7 +120,10 @@ Files={ }); // event handlers for breadcrumb items - $('#controls .crumb a').on('click', onClickBreadcrumb); + $controls.find('.crumb a').on('click', onClickBreadcrumb); + + // setup drag and drop + $controls.find('.crumb:not(.last)').droppable(crumbDropOptions); }, resizeBreadcrumbs: function (width, firstRun) { @@ -176,11 +181,8 @@ $(document).ready(function() { $('#file_action_panel').attr('activeAction', false); - $('div.crumb:not(.last)').droppable(crumbDropOptions); - $('ul#apps>li:first-child').data('dir',''); - if($('div.crumb').length){ - $('ul#apps>li:first-child').droppable(crumbDropOptions); - } + // allow dropping on the "files" app icon + $('ul#apps li:first-child').data('dir','').droppable(crumbDropOptions); // Triggers invisible file input $('#upload a').on('click', function() { @@ -367,7 +369,7 @@ $(document).ready(function() { } }); } - + //scroll to and highlight preselected file if (getURLParameter('scrollto')) { FileList.scrollTo(getURLParameter('scrollto')); @@ -645,7 +647,7 @@ function lazyLoadPreview(path, mime, ready, width, height) { // get mime icon url getMimeIcon(mime, function(iconURL) { ready(iconURL); // set mimeicon URL - + // now try getting a preview thumbnail URL if ( ! width ) { width = $('#filestable').data('preview-x'); @@ -654,9 +656,9 @@ function lazyLoadPreview(path, mime, ready, width, height) { height = $('#filestable').data('preview-y'); } if( $('#publicUploadButtonMock').length ) { - var previewURL = OC.Router.generate('core_ajax_public_preview', {file: encodeURIComponent(path), x:width, y:height, t:$('#dirToken').val()}); + var previewURL = OC.Router.generate('core_ajax_public_preview', {file: path, x:width, y:height, t:$('#dirToken').val()}); } else { - var previewURL = OC.Router.generate('core_ajax_preview', {file: encodeURIComponent(path), x:width, y:height}); + var previewURL = OC.Router.generate('core_ajax_preview', {file: path, x:width, y:height}); } $.get(previewURL, function() { previewURL = previewURL.replace('(', '%28'); diff --git a/apps/files/l10n/ady.php b/apps/files/l10n/ady.php new file mode 100644 index 0000000000000000000000000000000000000000..0157af093e92200cc7790497227e92e62d80165f --- /dev/null +++ b/apps/files/l10n/ady.php @@ -0,0 +1,7 @@ +<?php +$TRANSLATIONS = array( +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index 67a3414819b7e16a320846e4ac01df5aa08d2d7c..b5bfa6c0bb3f1ff727775972032aa709c470ee33 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -13,10 +13,14 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "المجلد المؤقت غير موجود", "Failed to write to disk" => "خطأ في الكتابة على القرص الصلب", "Not enough storage available" => "لا يوجد مساحة تخزينية كافية", +"Upload failed. Could not get file info." => "فشلت عملية الرفع. تعذر الحصول على معلومات الملف.", +"Upload failed. Could not find uploaded file" => "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله.", "Invalid directory." => "مسار غير صحيح.", "Files" => "الملفات", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "تعذر رفع الملف {filename} إما لأنه مجلد أو لان حجم الملف 0 بايت", "Not enough space available" => "لا توجد مساحة كافية", "Upload cancelled." => "تم إلغاء عملية رفع الملفات .", +"Could not get result from server." => "تعذر الحصول على نتيجة من الخادم", "File upload is in progress. Leaving the page now will cancel the upload." => "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات.", "URL cannot be empty." => "عنوان ال URL لا يجوز أن يكون فارغا.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "تسمية ملف غير صالحة. استخدام الاسم \"shared\" محجوز بواسطة ownCloud", @@ -31,20 +35,24 @@ $TRANSLATIONS = array( "cancel" => "إلغاء", "replaced {new_name} with {old_name}" => "استبدل {new_name} بـ {old_name}", "undo" => "تراجع", -"_%n folder_::_%n folders_" => array("","","","","",""), -"_%n file_::_%n files_" => array("","","","","",""), +"_%n folder_::_%n folders_" => array("لا يوجد مجلدات %n","1 مجلد %n","2 مجلد %n","عدد قليل من مجلدات %n","عدد كبير من مجلدات %n","مجلدات %n"), +"_%n file_::_%n files_" => array("لا يوجد ملفات %n","ملف %n","2 ملف %n","قليل من ملفات %n","الكثير من ملفات %n"," ملفات %n"), "{dirs} and {files}" => "{dirs} و {files}", -"_Uploading %n file_::_Uploading %n files_" => array("","","","","",""), +"_Uploading %n file_::_Uploading %n files_" => array("لا يوجد ملفات %n لتحميلها","تحميل 1 ملف %n","تحميل 2 ملف %n","يتم تحميل عدد قليل من ملفات %n","يتم تحميل عدد كبير من ملفات %n","يتم تحميل ملفات %n"), "'.' is an invalid file name." => "\".\" اسم ملف غير صحيح.", "File name cannot be empty." => "اسم الملف لا يجوز أن يكون فارغا", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها", "Your storage is full, files can not be updated or synced anymore!" => "مساحتك التخزينية ممتلئة, لا يمكم تحديث ملفاتك أو مزامنتها بعد الآن !", "Your storage is almost full ({usedSpacePercent}%)" => "مساحتك التخزينية امتلأت تقريبا ", +"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" => "حدث خطأ أثناء نقل الملف", "Name" => "اسم", "Size" => "حجم", "Modified" => "معدل", +"%s could not be renamed" => "%s لا يمكن إعادة تسميته. ", "Upload" => "رفع", "File handling" => "التعامل مع الملف", "Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index c2a20931ba0457c0657b4a9b6073ca5aba6c4f3d..027747c6cc53e3ae8ba8a702bf781893dc7d5d79 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -13,10 +13,14 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Manglende midlertidig mappe.", "Failed to write to disk" => "Fejl ved skrivning til disk.", "Not enough storage available" => "Der er ikke nok plads til rådlighed", +"Upload failed. Could not get file info." => "Upload fejlede. Kunne ikke hente filinformation.", +"Upload failed. Could not find uploaded file" => "Upload fejlede. Kunne ikke finde den uploadede fil.", "Invalid directory." => "Ugyldig mappe.", "Files" => "Filer", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Kan ikke upload {filename} da det er enten en mappe eller indholder 0 bytes.", "Not enough space available" => "ikke nok tilgængelig ledig plads ", "Upload cancelled." => "Upload afbrudt.", +"Could not get result from server." => "Kunne ikke hente resultat fra server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", "URL cannot be empty." => "URLen kan ikke være tom.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ugyldigt mappenavn. Brug af 'Shared' er forbeholdt af ownCloud", @@ -42,6 +46,7 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krypteringen blev deaktiveret, men dine filer er stadig krypteret. Gå venligst til dine personlige indstillinger for at dekryptere dine filer. ", "Your download is being prepared. This might take some time if the files are big." => "Dit download forberedes. Dette kan tage lidt tid ved større filer.", +"Error moving file" => "Fejl ved flytning af fil", "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Ændret", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 143a5efc3da07ac4dc2e38dfbc3c5aba5cd42a91..8c5f4634b4dca9bdf9396871270cfb3828606a50 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "Your storage is full, files can not be updated or synced anymore!" => "Dein Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!", "Your storage is almost full ({usedSpacePercent}%)" => "Dein Speicher ist fast voll ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Verschlüsselung-App ist aktiviert aber Deine Schlüssel sind nicht initialisiert. Bitte melden sich nochmals ab und wieder an.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisiere dein privates Schlüssel-Passwort um den Zugriff auf Deine verschlüsselten Dateien wiederherzustellen.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Die Verschlüsselung wurde deaktiviert, jedoch sind deine Dateien nach wie vor verschlüsselt. Bitte gehe zu deinen persönlichen Einstellungen, um deine Dateien zu entschlüsseln.", "Your download is being prepared. This might take some time if the files are big." => "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern.", "Error moving file" => "Fehler beim Verschieben der Datei", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index c58cb4bbe3e23d2c5e11db5a730d944d4cad75d3..ff9420703fb7af64aeb75318fcef9c13953433ca 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "Your storage is full, files can not be updated or synced anymore!" => "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!", "Your storage is almost full ({usedSpacePercent}%)" => "Ihr Speicher ist fast voll ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Verschlüsselung-App ist aktiviert aber Ihre Schlüssel sind nicht initialisiert. Bitte melden sich nochmals ab und wieder an.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisieren Sie Ihr privates Schlüssel-Passwort um den Zugriff auf Ihre verschlüsselten Dateien wiederherzustellen.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln.", "Your download is being prepared. This might take some time if the files are big." => "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern.", "Error moving file" => "Fehler beim Verschieben der Datei", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 90d760587d9ccd97274e42005b39bd163f407250..bfed4b2227673ab67e3aeccc553e97dcd6f99ed2 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -13,10 +13,14 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Falta la carpeta temporal", "Failed to write to disk" => "Falló al escribir al disco", "Not enough storage available" => "No hay suficiente espacio disponible", +"Upload failed. Could not get file info." => "Actualización fallida. No se pudo obtener información del archivo.", +"Upload failed. Could not find uploaded file" => "Actualización fallida. No se pudo encontrar el archivo subido", "Invalid directory." => "Directorio inválido.", "Files" => "Archivos", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes", "Not enough space available" => "No hay suficiente espacio disponible", "Upload cancelled." => "Subida cancelada.", +"Could not get result from server." => "No se pudo obtener respuesta del servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si sale de la página ahora cancelará la subida.", "URL cannot be empty." => "La URL no puede estar vacía.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nombre de carpeta invalido. El uso de \"Shared\" está reservado por ownCloud", @@ -42,6 +46,7 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento está casi lleno ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos.", "Your download is being prepared. This might take some time if the files are big." => "Su descarga está siendo preparada. Esto puede tardar algún tiempo si los archivos son grandes.", +"Error moving file" => "Error moviendo archivo", "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 9f674b27e63ac577b96ac76ec6005ddd6979959b..cb637d849b3eabdc9b6a16eec773cb4b2749309c 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -13,10 +13,13 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Ajutiste failide kaust puudub", "Failed to write to disk" => "Kettale kirjutamine ebaõnnestus", "Not enough storage available" => "Saadaval pole piisavalt ruumi", +"Upload failed. Could not get file info." => "Üleslaadimine ebaõnnestus. Faili info hankimine ebaõnnestus.", +"Upload failed. Could not find uploaded file" => "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud", "Invalid directory." => "Vigane kaust.", "Files" => "Failid", "Not enough space available" => "Pole piisavalt ruumi", "Upload cancelled." => "Üleslaadimine tühistati.", +"Could not get result from server." => "Serverist ei saadud tulemusi", "File upload is in progress. Leaving the page now will cancel the upload." => "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise.", "URL cannot be empty." => "URL ei saa olla tühi.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Vigane kausta nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt.", @@ -42,6 +45,7 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Su andmemaht on peaaegu täis ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks.", "Your download is being prepared. This might take some time if the files are big." => "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. ", +"Error moving file" => "Viga faili eemaldamisel", "Name" => "Nimi", "Size" => "Suurus", "Modified" => "Muudetud", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 33ea47d5f04b35fc96567d042eadb091b8e6d67e..ca6d9093642d290fa9fd8c430178c098473b8ea0 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -13,10 +13,14 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Aldi bateko karpeta falta da", "Failed to write to disk" => "Errore bat izan da diskoan idazterakoan", "Not enough storage available" => "Ez dago behar aina leku erabilgarri,", +"Upload failed. Could not get file info." => "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu.", +"Upload failed. Could not find uploaded file" => "Igoerak huts egin du. Ezin izan da igotako fitxategia aurkitu", "Invalid directory." => "Baliogabeko karpeta.", "Files" => "Fitxategiak", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Ezin da {filename} igo karpeta bat delako edo 0 byte dituelako", "Not enough space available" => "Ez dago leku nahikorik.", "Upload cancelled." => "Igoera ezeztatuta", +"Could not get result from server." => "Ezin da zerbitzaritik emaitzik lortu", "File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.", "URL cannot be empty." => "URLa ezin da hutsik egon.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Karpeta izne baliogabea. \"Shared\" karpeta erabilpena OwnCloudentzat erreserbaturik dago.", @@ -33,14 +37,18 @@ $TRANSLATIONS = array( "undo" => "desegin", "_%n folder_::_%n folders_" => array("karpeta %n","%n karpeta"), "_%n file_::_%n files_" => array("fitxategi %n","%n fitxategi"), +"{dirs} and {files}" => "{dirs} eta {files}", "_Uploading %n file_::_Uploading %n files_" => array("Fitxategi %n igotzen","%n fitxategi igotzen"), "'.' is an invalid file name." => "'.' ez da fitxategi izen baliogarria.", "File name cannot be empty." => "Fitxategi izena ezin da hutsa izan.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta.", "Your storage is full, files can not be updated or synced anymore!" => "Zure biltegiratzea beterik dago, ezingo duzu aurrerantzean fitxategirik igo edo sinkronizatu!", "Your storage is almost full ({usedSpacePercent}%)" => "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Enkriptazio aplikazioa gaituta dago baina zure gakoak ez daude konfiguratuta, mesedez saioa bukatu eta berriro hasi", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Enkriptazio aplikaziorako gako pribatu okerra. Mesedez eguneratu zure gako pribatuaren pasahitza zure ezarpen pertsonaletan zure enkriptatuko fitxategietarako sarrera berreskuratzeko.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Enkriptazioa desgaitua izan da baina zure fitxategiak oraindik enkriptatuta daude. Mesedez jo zure ezarpen pertsonaletara zure fitxategiak dekodifikatzeko.", "Your download is being prepared. This might take some time if the files are big." => "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. ", +"Error moving file" => "Errorea fitxategia mugitzean", "Name" => "Izena", "Size" => "Tamaina", "Modified" => "Aldatuta", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 2766478650a31d707dc2179e6a2d72dae577eda3..1779d04151db9e90fd7a408cf3b8e957c3270c89 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*».", "Your storage is full, files can not be updated or synced anymore!" => "O seu espazo de almacenamento está cheo, non é posíbel actualizar ou sincronizar máis os ficheiros!", "Your storage is almost full ({usedSpacePercent}%)" => "O seu espazo de almacenamento está case cheo ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "O aplicativo de cifrado está activado, mais as chaves non foron inicializadas, saia da sesión e volva a acceder de novo", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "A chave privada para o aplicativo de cifrado non é correcta. Actualice o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros cifrados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "O cifrado foi desactivado, mais os ficheiros están cifrados. Vaia á configuración persoal para descifrar os ficheiros.", "Your download is being prepared. This might take some time if the files are big." => "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes.", "Error moving file" => "Produciuse un erro ao mover o ficheiro", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 44b4e341956df3b771bfdee982230d317ff87296..213bfddb801513814b6a11273ea6703a9f094a83 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti.", "Your storage is full, files can not be updated or synced anymore!" => "Lo spazio di archiviazione è pieno, i file non possono essere più aggiornati o sincronizzati!", "Your storage is almost full ({usedSpacePercent}%)" => "Lo spazio di archiviazione è quasi pieno ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chiave privata non valida per l'applicazione di cifratura. Aggiorna la password della chiave privata nelle impostazioni personali per ripristinare l'accesso ai tuoi file cifrati.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "La cifratura è stata disabilitata ma i tuoi file sono ancora cifrati. Vai nelle impostazioni personali per decifrare i file.", "Your download is being prepared. This might take some time if the files are big." => "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi.", "Error moving file" => "Errore durante lo spostamento del file", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index d064b0c6523c23e9a8fcd96d3c902ad0e3369629..c7cf14d023109e8849ffdc62c52e5e18eebc4d91 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami.", "Your storage is full, files can not be updated or synced anymore!" => "Jūsų visa vieta serveryje užimta", "Your storage is almost full ({usedSpacePercent}%)" => "Jūsų vieta serveryje beveik visa užimta ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Šifravimo programa įjungta, bet Jūsų raktai nėra pritaikyti. Prašome atsijungti ir vėl prisijungti", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Netinkamas privatus raktas Šifravimo programai. Prašome atnaujinti savo privataus rakto slaptažodį asmeniniuose nustatymuose, kad atkurti prieigą prie šifruotų failų.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifravimas buvo išjungtas, bet Jūsų failai vis dar užšifruoti. Prašome eiti į asmeninius nustatymus ir iššifruoti savo failus.", "Your download is being prepared. This might take some time if the files are big." => "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunčiamas didelis failas.", "Error moving file" => "Klaida perkeliant failą", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index cd96020856511a053c2a387c616dd785c1f8c6f0..7b3f7423696affabf507619b4d5d115310e49d14 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", "Your storage is full, files can not be updated or synced anymore!" => "Seu armazenamento está cheio, arquivos não podem mais ser atualizados ou sincronizados!", "Your storage is almost full ({usedSpacePercent}%)" => "Seu armazenamento está quase cheio ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "App de encriptação está ativado, mas as chaves não estão inicializadas, por favor log-out e faça login novamente", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chave do App de Encriptação é inválida. Por favor, atualize sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Encriptação foi desabilitada mas seus arquivos continuam encriptados. Por favor vá a suas configurações pessoais para descriptar seus arquivos.", "Your download is being prepared. This might take some time if the files are big." => "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes.", "Error moving file" => "Erro movendo o arquivo", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 214812d7adaf6270faca6af413113b929aa7c07a..4d792c32aeed9e3d3861354ab386bdd3bd73c8ea 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -13,10 +13,14 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "找不到暫存資料夾", "Failed to write to disk" => "寫入硬碟失敗", "Not enough storage available" => "儲存空間不足", +"Upload failed. Could not get file info." => "上傳失敗,無法取得檔案資訊", +"Upload failed. Could not find uploaded file" => "上傳失敗,找不到上傳的檔案", "Invalid directory." => "無效的資料夾", "Files" => "檔案", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "因為 {filename} 是個目錄或是大小為零,所以無法上傳", "Not enough space available" => "沒有足夠的可用空間", "Upload cancelled." => "上傳已取消", +"Could not get result from server." => "無法從伺服器取回結果", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中,離開此頁面將會取消上傳。", "URL cannot be empty." => "URL 不能為空", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留", @@ -40,8 +44,11 @@ $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" => "移動檔案失敗", "Name" => "名稱", "Size" => "大小", "Modified" => "修改時間", diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 7067b854f50a619dc8fb73f185658088d237228f..5e7ad41b0f09ee231304b6d51ab01f611e6a126c 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -19,8 +19,6 @@ <input type="hidden" name="MAX_FILE_SIZE" id="max_upload" value="<?php p($_['uploadMaxFilesize']) ?>"> <?php endif;?> - <!-- Send the requesttoken, this is needed for older IE versions - because they don't send the CSRF token via HTTP header in this case --> <input type="hidden" class="max_human_file_size" value="(max <?php p($_['uploadMaxHumanFilesize']); ?>)"> <input type="hidden" name="dir" value="<?php p($_['dir']) ?>" id="dir"> @@ -29,9 +27,7 @@ <a href="#" class="svg"></a> </div> <?php if ($_['trash'] ): ?> - <div id="trash" class="button" <?php $_['trashEmpty'] ? p('disabled') : '' ?>> - <a><?php p($l->t('Deleted files'));?></a> - </div> + <input id="trash" type="button" value="<?php p($l->t('Deleted files'));?>" class="button" <?php $_['trashEmpty'] ? p('disabled') : '' ?>></input> <?php endif; ?> <div id="uploadprogresswrapper"> <div id="uploadprogressbar"></div> diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index 14d7992ad5da4773ce995209e3a9af8b63ce98df..d55c5f6d302807728717858d946a00dc25d0b574 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assegureu-vos que teniu instal·lat PHP 5.3.3 o una versió superior i que està activat Open SSL i habilitada i configurada correctament l'extensió de PHP. De moment, l'aplicació d'encriptació s'ha desactivat.", "Following users are not set up for encryption:" => "Els usuaris següents no estan configurats per a l'encriptació:", "Saving..." => "Desant...", -"Your private key is not valid! Maybe the your password was changed from outside." => "La vostra clau privada no és vàlida! Potser la vostra contrasenya ha canviat des de fora.", -"You can unlock your private key in your " => "Podeu desbloquejar la clau privada en el vostre", "personal settings" => "arranjament personal", "Encryption" => "Xifrat", "Enable recovery key (allow to recover users files in case of password loss):" => "Activa la clau de recuperació (permet recuperar fitxers d'usuaris en cas de pèrdua de contrasenya):", diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 89f63cc1cdd2fd18dd90737aa043f9786c7e5a11..32645322630b18b3906260c9558171fc04095b38 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "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...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno zvenčí.", -"You can unlock your private key in your " => "Můžete odemknout váš soukromý klíč ve vašem", "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)", diff --git a/apps/files_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php index 1b7069b6784574ae1d4305364b362cd24a484609..53c31a721990d40d80a61474ec6bbc1ff542f789 100644 --- a/apps/files_encryption/l10n/da.php +++ b/apps/files_encryption/l10n/da.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret.", "Following users are not set up for encryption:" => "Følgende brugere er ikke sat op til kryptering:", "Saving..." => "Gemmer...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Din private nøgle er ikke gyldig. Måske blev dit kodeord ændre udefra.", -"You can unlock your private key in your " => "Du kan låse din private nøgle op i din ", "personal settings" => "Personlige indstillinger", "Encryption" => "Kryptering", "Enable recovery key (allow to recover users files in case of password loss):" => "Aktiver gendannelsesnøgle (Tillad gendannelse af brugerfiler i tilfælde af tab af kodeord):", diff --git a/apps/files_encryption/l10n/de.php b/apps/files_encryption/l10n/de.php index 4c36d31ed6bf131275518840d2f107874b4a3172..93a715d34171ed117ef77e65525535baa3bf03a7 100644 --- a/apps/files_encryption/l10n/de.php +++ b/apps/files_encryption/l10n/de.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Eventuell wurde Ihr Passwort von außerhalb geändert.", -"You can unlock your private key in your " => "Du kannst den privaten Schlüssel ändern und zwar in deinem", "personal settings" => "Private Einstellungen", "Encryption" => "Verschlüsselung", "Enable recovery key (allow to recover users files in case of password loss):" => "Wiederherstellungsschlüssel aktivieren (ermöglicht das Wiederherstellen von Dateien, falls das Passwort vergessen wurde):", diff --git a/apps/files_encryption/l10n/de_CH.php b/apps/files_encryption/l10n/de_CH.php index aa867645c8d6c8064a64cc92175bb7d9b300d515..e385960f27ba9c7dce8d017a4d84211dcf0ea467 100644 --- a/apps/files_encryption/l10n/de_CH.php +++ b/apps/files_encryption/l10n/de_CH.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von ausserhalb geändert.", -"You can unlock your private key in your " => "Sie können den privaten Schlüssel ändern und zwar in Ihrem", "personal settings" => "Persönliche Einstellungen", "Encryption" => "Verschlüsselung", "Enable recovery key (allow to recover users files in case of password loss):" => "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht).", diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 200001e6ebfbbd569024ba366d9665e4b4133c84..79fdbe995e985cc3638d14580026878446747e14 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert.", -"You can unlock your private key in your " => "Sie können den privaten Schlüssel ändern und zwar in Ihrem", "personal settings" => "Persönliche Einstellungen", "Encryption" => "Verschlüsselung", "Enable recovery key (allow to recover users files in case of password loss):" => "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht).", diff --git a/apps/files_encryption/l10n/en_GB.php b/apps/files_encryption/l10n/en_GB.php index c220a4bdf045c81a57707c04a1a746cf076befe5..d2bfdfa9ea46ccda18e928b3cf18ca44bf91dcc8 100644 --- a/apps/files_encryption/l10n/en_GB.php +++ b/apps/files_encryption/l10n/en_GB.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.", "Following users are not set up for encryption:" => "Following users are not set up for encryption:", "Saving..." => "Saving...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Your private key is not valid! Maybe the your password was changed externally.", -"You can unlock your private key in your " => "You can unlock your private key in your ", "personal settings" => "personal settings", "Encryption" => "Encryption", "Enable recovery key (allow to recover users files in case of password loss):" => "Enable recovery key (allow to recover users files in case of password loss):", diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 2d644708c59ed3ece59af8046b5fab59205c280b..138d51b09beee3e5b66f33a423fda7606cff997f 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -13,17 +13,18 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", "Following users are not set up for encryption:" => "Los siguientes usuarios no han sido configurados para el cifrado:", "Saving..." => "Guardando...", -"Your private key is not valid! Maybe the your password was changed from outside." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera.", -"You can unlock your private key in your " => "Puede desbloquear su clave privada en su", +"Go directly to your " => "Ir directamente a su", "personal settings" => "opciones personales", "Encryption" => "Cifrado", "Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar la clave de recuperación (permite recuperar los ficheros del usuario en caso de pérdida de la contraseña);", "Recovery key password" => "Contraseña de clave de recuperación", +"Repeat Recovery key password" => "Repetir contraseña de clave de recuperación", "Enabled" => "Habilitar", "Disabled" => "Deshabilitado", "Change recovery key password:" => "Cambiar la contraseña de la clave de recuperación", "Old Recovery key password" => "Antigua clave de recuperación", "New Recovery key password" => "Nueva clave de recuperación", +"Repeat New Recovery key password" => "Repetir nueva contraseña de clave de recuperación", "Change Password" => "Cambiar contraseña", "Your private key password no longer match your log-in password:" => "Su contraseña de clave privada ya no coincide con su contraseña de acceso:", "Set your old private key password to your current log-in password." => "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso.", diff --git a/apps/files_encryption/l10n/es_AR.php b/apps/files_encryption/l10n/es_AR.php index 666ea59687c404bb19e088ce0e2a43a7288dd3de..1dc4521f3da7ef87d34804d616b23014a602c078 100644 --- a/apps/files_encryption/l10n/es_AR.php +++ b/apps/files_encryption/l10n/es_AR.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o una versión más reciente esté instalado y que OpenSSL junto con la extensión PHP esté habilitado y configurado apropiadamente. Por ahora, la aplicación de encriptación ha sido deshabilitada.", "Following users are not set up for encryption:" => "Los siguientes usuarios no fueron configurados para encriptar:", "Saving..." => "Guardando...", -"Your private key is not valid! Maybe the your password was changed from outside." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde afuera.", -"You can unlock your private key in your " => "Podés desbloquear tu clave privada en tu", "personal settings" => "Configuración personal", "Encryption" => "Encriptación", "Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso que pierdas la contraseña):", diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index 3edb7299c201efff6e0c554658d32715d9fd3da0..0c9234d3a51fe21bca67e94e88741ee011a3a67f 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud.", "Following users are not set up for encryption:" => "Järgmised kasutajad pole seadistatud krüpteeringuks:", "Saving..." => "Salvestamine...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Sinu privaatne võti ei ole õige. Võib-olla on parool vahetatud süsteemi väliselt.", -"You can unlock your private key in your " => "Saad avada oma privaatse võtme oma", "personal settings" => "isiklikes seadetes", "Encryption" => "Krüpteerimine", "Enable recovery key (allow to recover users files in case of password loss):" => "Luba taastevõti (võimada kasutaja failide taastamine parooli kaotuse puhul):", diff --git a/apps/files_encryption/l10n/eu.php b/apps/files_encryption/l10n/eu.php index e750c850688d190d78d435a60bcc860312f5599c..f7d4bd115010c23f3770b3611fb0d4ff72d61cef 100644 --- a/apps/files_encryption/l10n/eu.php +++ b/apps/files_encryption/l10n/eu.php @@ -10,9 +10,9 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Ezin izan da gako pribatu pasahitza eguneratu. Agian pasahitz zaharra okerrekoa da.", "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." => "Zure gako pribatua ez da egokia! Seguruaski zure pasahitza ownCloud sistematik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko.", "Missing requirements." => "Eskakizun batzuk ez dira betetzen.", +"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." => "Mesedez ziurtatu PHP 5.3.3 edo berriago bat instalatuta dagoela eta OpenSSL PHP hedapenarekin gaitua eta ongi konfiguratuta dagoela. Oraingoz, enkriptazio aplikazioa desgaituta dago.", +"Following users are not set up for encryption:" => "Hurrengo erabiltzaileak ez daude enktriptatzeko konfiguratutak:", "Saving..." => "Gordetzen...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Zure gako pribatua ez da egokia! Agian zure pasahitza kanpotik aldatu da.", -"You can unlock your private key in your " => "Zure gako pribatua desblokeatu dezakezu zure", "personal settings" => "ezarpen pertsonalak", "Encryption" => "Enkriptazioa", "Enable recovery key (allow to recover users files in case of password loss):" => "Gaitu berreskurapen gakoa (erabiltzaileen fitxategiak berreskuratzea ahalbidetzen du pasahitza galtzen badute ere):", diff --git a/apps/files_encryption/l10n/fa.php b/apps/files_encryption/l10n/fa.php index 461ec2b92cbaea91ca7e7b8e1b65c1f2d0b2bba4..89ac3bba42a49bc39276d6b188ff1e74fd7fa266 100644 --- a/apps/files_encryption/l10n/fa.php +++ b/apps/files_encryption/l10n/fa.php @@ -11,8 +11,6 @@ $TRANSLATIONS = array( "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." => "کلید خصوصی شما معتبر نمی باشد! ظاهرا رمزعبور شما بیرون از سیستم ownCloud تغییر یافته است( به عنوان مثال پوشه سازمان شما ). شما میتوانید رمزعبور کلید خصوصی خود را در تنظیمات شخصیتان به روز کنید تا بتوانید به فایل های رمزگذاری شده خود را دسترسی داشته باشید.", "Missing requirements." => "نیازمندی های گمشده", "Saving..." => "در حال ذخیره سازی...", -"Your private key is not valid! Maybe the your password was changed from outside." => "کلید خصوصی شما معتبر نیست! شاید رمزعبوراز بیرون تغییر یافته است.", -"You can unlock your private key in your " => "شما میتوانید کلید خصوصی خود را باز نمایید.", "personal settings" => "تنظیمات شخصی", "Encryption" => "رمزگذاری", "Enable recovery key (allow to recover users files in case of password loss):" => "فعال کردن کلید بازیابی(اجازه بازیابی فایل های کاربران در صورت از دست دادن رمزعبور):", diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 358937441e2c1cf4caef09b746b6b502e179e1f4..b222aa10e4bcd66d60c0a8876ef00d2ac072fb7e 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Veuillez vous assurer qu'une version de PHP 5.3.3 ou supérieure est installée et qu'OpenSSL et son extension PHP sont activés et configurés correctement. En attendant, l'application de chiffrement été désactivée.", "Following users are not set up for encryption:" => "Les utilisateurs suivants ne sont pas configurés pour le chiffrement :", "Saving..." => "Enregistrement...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur.", -"You can unlock your private key in your " => "Vous pouvez déverrouiller votre clé privée dans votre", "personal settings" => "paramètres personnel", "Encryption" => "Chiffrement", "Enable recovery key (allow to recover users files in case of password loss):" => "Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe).", diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php index abf12d73d577483a05c1c3d55fda81e24cfe9447..5a1d8ec750dc1b5c89ee1ce332dcee6bf3f24abd 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -8,22 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Non foi posíbel cambiar o contrasinal. Probabelmente o contrasinal antigo non é o correcto.", "Private key password successfully updated." => "A chave privada foi actualizada correctamente.", "Could not update the private key password. Maybe the old password was not correct." => "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto.", +"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." => "Non se iniciou o aplicativo de cifrado! Quizais volva a activarse durante a sesión. Tente pechar a sesión e volver iniciala que tamén se inicie o aplicativo de cifrado.", "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." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros", "Missing requirements." => "Non se cumpren os requisitos.", "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." => "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de o OpenSSL xunto coa extensión PHP estean activados e configurados correctamente. Polo de agora foi desactivado o aplicativo de cifrado.", "Following users are not set up for encryption:" => "Os seguintes usuarios non teñen configuración para o cifrado:", "Saving..." => "Gardando...", -"Your private key is not valid! Maybe the your password was changed from outside." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. ", -"You can unlock your private key in your " => "Pode desbloquear a chave privada nos seus", +"Go directly to your " => "Vaia directamente ao seu", "personal settings" => "axustes persoais", "Encryption" => "Cifrado", "Enable recovery key (allow to recover users files in case of password loss):" => "Activar a chave de recuperación (permitirá recuperar os ficheiros dos usuarios no caso de perda do contrasinal):", "Recovery key password" => "Contrasinal da chave de recuperación", +"Repeat Recovery key password" => "Repita o contrasinal da chave da recuperación", "Enabled" => "Activado", "Disabled" => "Desactivado", "Change recovery key password:" => "Cambiar o contrasinal da chave de la recuperación:", "Old Recovery key password" => "Antigo contrasinal da chave de recuperación", "New Recovery key password" => "Novo contrasinal da chave de recuperación", +"Repeat New Recovery key password" => "Repita o novo contrasinal da chave da recuperación", "Change Password" => "Cambiar o contrasinal", "Your private key password no longer match your log-in password:" => "O seu contrasinal da chave privada non coincide co seu contrasinal de acceso.", "Set your old private key password to your current log-in password." => "Estabeleza o seu contrasinal antigo da chave de recuperación ao seu contrasinal de acceso actual", diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index f9534d7eca3e152823b1cb5c143c6ee82d7bf808..f45dbe7c734c7f934f95282db3e80a4f6f7dad54 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata.", "Following users are not set up for encryption:" => "I seguenti utenti non sono configurati per la cifratura:", "Saving..." => "Salvataggio in corso...", -"Your private key is not valid! Maybe the your password was changed from outside." => "La tua chiave privata non è valida! Forse è stata modifica dall'esterno.", -"You can unlock your private key in your " => "Puoi sbloccare la chiave privata nelle tue", "personal settings" => "impostazioni personali", "Encryption" => "Cifratura", "Enable recovery key (allow to recover users files in case of password loss):" => "Abilita la chiave di recupero (permette di recuperare i file utenti in caso di perdita della password):", diff --git a/apps/files_encryption/l10n/ja_JP.php b/apps/files_encryption/l10n/ja_JP.php index d1f8303bda741c9a6a5dca5e1f1cb6cce3e781ea..fa536dca9b908ce7cda56221a92223523fa93ad2 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。", "Following users are not set up for encryption:" => "以下のユーザーは、暗号化設定がされていません:", "Saving..." => "保存中...", -"Your private key is not valid! Maybe the your password was changed from outside." => "秘密鍵が有効ではありません。パスワードが外部から変更された恐れがあります。", -"You can unlock your private key in your " => "個人設定で", "personal settings" => "秘密鍵をアンロックできます", "Encryption" => "暗号化", "Enable recovery key (allow to recover users files in case of password loss):" => "復旧キーを有効化 (万一パスワードを亡くした場合もユーザーのファイルを回復できる):", diff --git a/apps/files_encryption/l10n/lt_LT.php b/apps/files_encryption/l10n/lt_LT.php index 4ededb716f4e16badeef5a02d1ff36ba341bcc79..ae57cb1c561839722950f4283394146df01bc5dc 100644 --- a/apps/files_encryption/l10n/lt_LT.php +++ b/apps/files_encryption/l10n/lt_LT.php @@ -8,22 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Slaptažodis nebuvo pakeistas. Gali būti, kad buvo neteisingai suvestas senasis.", "Private key password successfully updated." => "Privataus rakto slaptažodis buvo sėkmingai atnaujintas.", "Could not update the private key password. Maybe the old password was not correct." => "Nepavyko atnaujinti privataus rakto slaptažodžio. Gali būti, kad buvo neteisingai suvestas senasis.", +"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." => "Šifravimo programa nepaleista! Galbūt šifravimo programa buvo įjungta dar kartą Jūsų sesijos metu. Prašome atsijungti ir vėl prisijungti, kad paleisti šifravimo programą.", "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." => "Jūsų privatus raktas yra netinkamas! Panašu, kad Jūsų slaptažodis buvo pakeistas išorėje ownCloud sistemos (pvz. Jūsų organizacijos kataloge). Galite atnaujinti savo privataus rakto slaptažodį savo asmeniniuose nustatymuose, kad atkurti prieigą prie savo šifruotų failų.", "Missing requirements." => "Trūkstami laukai.", "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." => "Prašome įsitikinti, kad PHP 5.3.3 ar naujesnė yra įdiegta ir kad OpenSSL kartu su PHP plėtiniu yra šjungti ir teisingai sukonfigūruoti. Kol kas šifravimo programa bus išjungta.", "Following users are not set up for encryption:" => "Sekantys naudotojai nenustatyti šifravimui:", "Saving..." => "Saugoma...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Jūsų privatus raktas yra netinkamas! Galbūt Jūsų slaptažodis buvo pakeistas iš išorės?", -"You can unlock your private key in your " => "Galite atrakinti savo privatų raktą savo", +"Go directly to your " => "Eiti tiesiai į Jūsų", "personal settings" => "asmeniniai nustatymai", "Encryption" => "Šifravimas", "Enable recovery key (allow to recover users files in case of password loss):" => "Įjunkite atkūrimo raktą, (leisti atkurti naudotojų failus praradus slaptažodį):", "Recovery key password" => "Atkūrimo rakto slaptažodis", +"Repeat Recovery key password" => "Pakartokite atkūrimo rakto slaptažodį", "Enabled" => "Įjungta", "Disabled" => "Išjungta", "Change recovery key password:" => "Pakeisti atkūrimo rakto slaptažodį:", "Old Recovery key password" => "Senas atkūrimo rakto slaptažodis", "New Recovery key password" => "Naujas atkūrimo rakto slaptažodis", +"Repeat New Recovery key password" => "Pakartokite naują atkūrimo rakto slaptažodį", "Change Password" => "Pakeisti slaptažodį", "Your private key password no longer match your log-in password:" => "Privatus rakto slaptažodis daugiau neatitinka Jūsų prisijungimo slaptažodžio:", "Set your old private key password to your current log-in password." => "Nustatyti Jūsų privataus rakto slaptažodį į Jūsų dabartinį prisijungimo.", diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index e37ccf54d6dc375d46f155af464789ca4f9bf3cb..511120856a0f175bbb0b3068718c2010b538160b 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld.", "Following users are not set up for encryption:" => "De volgende gebruikers hebben geen configuratie voor encryptie:", "Saving..." => "Opslaan", -"Your private key is not valid! Maybe the your password was changed from outside." => "Uw privésleutel is niet geldig. Misschien was uw wachtwoord van buitenaf gewijzigd.", -"You can unlock your private key in your " => "U kunt uw privésleutel deblokkeren in uw", "personal settings" => "persoonlijke instellingen", "Encryption" => "Versleuteling", "Enable recovery key (allow to recover users files in case of password loss):" => "Activeren herstelsleutel (maakt het mogelijk om gebruikersbestanden terug te halen in geval van verlies van het wachtwoord):", diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index ca4502ff6aa0219e7466657c0b41ba623770d07b..4eb1ca00dda4cbe4df942deef77900bedfbe91af 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone.", "Following users are not set up for encryption:" => "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:", "Saving..." => "Zapisywanie...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz.", -"You can unlock your private key in your " => "Możesz odblokować swój klucz prywatny w swojej", "personal settings" => "Ustawienia osobiste", "Encryption" => "Szyfrowanie", "Enable recovery key (allow to recover users files in case of password loss):" => "Włączhasło klucza odzyskiwania (pozwala odzyskać pliki użytkowników w przypadku utraty hasła):", diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index 5b8a68657b78d2a5d88c174b9925048b864db970..c6abb1952d25a41d8bb25a7a8debc8344a725274 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -8,22 +8,24 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Não foi possível alterar a senha. Talvez a senha antiga não estava correta.", "Private key password successfully updated." => "Senha de chave privada atualizada com sucesso.", "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.", "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:", "Saving..." => "Salvando...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Sua chave privada não é válida! Talvez sua senha tenha sido mudada.", -"You can unlock your private key in your " => "Você pode desbloquear sua chave privada nas suas", +"Go directly to your " => "Ir diretamente para o seu", "personal settings" => "configurações pessoais.", "Encryption" => "Criptografia", "Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar chave de recuperação (permite recuperar arquivos de usuários em caso de perda de senha):", "Recovery key password" => "Senha da chave de recuperação", +"Repeat Recovery key password" => "Repita Recuperação de senha da chave", "Enabled" => "Habilitado", "Disabled" => "Desabilitado", "Change recovery key password:" => "Mudar a senha da chave de recuperação:", "Old Recovery key password" => "Senha antiga da chave de recuperação", "New Recovery key password" => "Nova senha da chave de recuperação", +"Repeat New Recovery key password" => "Repita Nova senha da chave de recuperação", "Change Password" => "Trocar Senha", "Your private key password no longer match your log-in password:" => "Sua senha de chave privada não coincide mais com sua senha de login:", "Set your old private key password to your current log-in password." => "Configure sua antiga senha de chave privada para sua atual senha de login.", diff --git a/apps/files_encryption/l10n/ru.php b/apps/files_encryption/l10n/ru.php index e0d52399c738d6ccdbc5ae625fb7fde03bec469c..41ddc7e06940972d7e32a774be3cd69ef74cb55d 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Пожалуйста, убедитесь, что версия PHP 5.3.3 или новее, а также, что OpenSSL и соответствующее расширение PHP включены и правильно настроены. На данный момент приложение шифрования отключено.", "Following users are not set up for encryption:" => "Для следующих пользователей шифрование не настроено:", "Saving..." => "Сохранение...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Секретный ключ недействителен! Возможно, Ваш пароль был изменён в другой программе.", -"You can unlock your private key in your " => "Вы можете разблокировать закрытый ключ в своём ", "personal settings" => "персональные настройки", "Encryption" => "Шифрование", "Enable recovery key (allow to recover users files in case of password loss):" => "Включить ключ восстановления (позволяет пользователям восстановить файлы при потере пароля):", diff --git a/apps/files_encryption/l10n/sk_SK.php b/apps/files_encryption/l10n/sk_SK.php index a80eb3e65214a8bbbc4d70dff8a801be95cababc..ae600e71534fb444267c82d94561df002cdfcda4 100644 --- a/apps/files_encryption/l10n/sk_SK.php +++ b/apps/files_encryption/l10n/sk_SK.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Prosím uistite sa, že PHP verzie 5.3.3 alebo novšej je nainštalované a tiež, že OpenSSL knižnica spolu z PHP rozšírením je povolená a konfigurovaná správne. Nateraz bola aplikácia šifrovania zablokovaná.", "Following users are not set up for encryption:" => "Nasledujúci používatelia nie sú nastavení pre šifrovanie:", "Saving..." => "Ukladám...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Váš súkromný kľúč je neplatný. Možno bolo Vaše heslo zmenené z vonku.", -"You can unlock your private key in your " => "Môžte odomknúť váš privátny kľúč v", "personal settings" => "osobné nastavenia", "Encryption" => "Šifrovanie", "Enable recovery key (allow to recover users files in case of password loss):" => "Povoliť obnovovací kľúč (umožňuje obnoviť používateľské súbory v prípade straty hesla):", diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index 8b2f264c62e92935d58e1150b49b193cb1806d2e..9290295940b777c3671df4026f92b61b59497d78 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Preverite, da imate na strežniku nameščen paket PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno.", "Following users are not set up for encryption:" => "Naslednji uporabniki še nimajo nastavljenega šifriranja:", "Saving..." => "Poteka shranjevanje ...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno.", -"You can unlock your private key in your " => "Svoj zasebni ključ lahko odklenite v", "personal settings" => "osebne nastavitve", "Encryption" => "Šifriranje", "Enable recovery key (allow to recover users files in case of password loss):" => "Omogoči ključ za obnovitev datotek (v primeru izgube gesla)", diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index 88ba6b471597312f046379199e75f53ea096e868..d425111cf03b6bdf0546662325b445899c64e7a0 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -13,8 +13,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och korrekt konfigurerad. Kryptering är tillsvidare inaktiverad.", "Following users are not set up for encryption:" => "Följande användare har inte aktiverat kryptering:", "Saving..." => "Sparar...", -"Your private key is not valid! Maybe the your password was changed from outside." => "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan.", -"You can unlock your private key in your " => "Du kan låsa upp din privata nyckel i dina", "personal settings" => "personliga inställningar", "Encryption" => "Kryptering", "Enable recovery key (allow to recover users files in case of password loss):" => "Aktivera lösenordsnyckel (för att kunna återfå användarens filer vid glömt eller förlorat lösenord):", diff --git a/apps/files_encryption/l10n/zh_CN.php b/apps/files_encryption/l10n/zh_CN.php index c4c52f4ac2e72e46112e739e5cdc90d345175528..6c5b4caf06474c65946a18ef8bef3721b3e7a5f4 100644 --- a/apps/files_encryption/l10n/zh_CN.php +++ b/apps/files_encryption/l10n/zh_CN.php @@ -10,8 +10,6 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "无法更新私钥密码。可能旧密码不正确。", "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." => "您的私有密钥无效!也许是您在 ownCloud 系统外更改了密码 (比如,在您的公司目录)。您可以在个人设置里更新您的私钥密码来恢复访问你的加密文件。", "Saving..." => "保存中", -"Your private key is not valid! Maybe the your password was changed from outside." => "您的私钥不正确!可能您在别处更改了密码。", -"You can unlock your private key in your " => "您可以在这里解锁您的私钥:", "personal settings" => "个人设置", "Encryption" => "加密", "Enable recovery key (allow to recover users files in case of password loss):" => "启用恢复密钥(允许你在密码丢失后恢复文件):", diff --git a/apps/files_external/lib/sftp.php b/apps/files_external/lib/sftp.php index f7f329b8993783ec29b70fd07cd140c2e17217a6..fb1ecd5463517945760ffdfe9160d3c79c9e0c80 100644 --- a/apps/files_external/lib/sftp.php +++ b/apps/files_external/lib/sftp.php @@ -29,60 +29,72 @@ class SFTP extends \OC\Files\Storage\Common { } $this->user = $params['user']; $this->password = $params['password']; - $this->root = isset($params['root']) ? $this->cleanPath($params['root']) : '/'; - if ($this->root[0] != '/') $this->root = '/' . $this->root; - if (substr($this->root, -1, 1) != '/') $this->root .= '/'; + $this->root + = isset($params['root']) ? $this->cleanPath($params['root']) : '/'; - $host_keys = $this->read_host_keys(); + if ($this->root[0] != '/') { + $this->root = '/' . $this->root; + } + + if (substr($this->root, -1, 1) != '/') { + $this->root .= '/'; + } + $hostKeys = $this->readHostKeys(); $this->client = new \Net_SFTP($this->host); + if (!$this->client->login($this->user, $this->password)) { throw new \Exception('Login failed'); } - $current_host_key = $this->client->getServerPublicHostKey(); + $currentHostKey = $this->client->getServerPublicHostKey(); - if (array_key_exists($this->host, $host_keys)) { - if ($host_keys[$this->host] != $current_host_key) { + if (array_key_exists($this->host, $hostKeys)) { + if ($hostKeys[$this->host] != $currentHostKey) { throw new \Exception('Host public key does not match known key'); } } else { - $host_keys[$this->host] = $current_host_key; - $this->write_host_keys($host_keys); + $hostKeys[$this->host] = $currentHostKey; + $this->writeHostKeys($hostKeys); } } public function test() { - if (!isset($params['host']) || !isset($params['user']) || !isset($params['password'])) { - throw new \Exception("Required parameters not set"); + if ( + !isset($this->host) + || !isset($this->user) + || !isset($this->password) + ) { + return false; } + return $this->client->nlist() !== false; } public function getId(){ return 'sftp::' . $this->user . '@' . $this->host . '/' . $this->root; } - private function abs_path($path) { + private function absPath($path) { return $this->root . $this->cleanPath($path); } - private function host_keys_path() { + private function hostKeysPath() { try { $storage_view = \OCP\Files::getStorage('files_external'); if ($storage_view) { return \OCP\Config::getSystemValue('datadirectory') . $storage_view->getAbsolutePath('') . - 'ssh_host_keys'; + 'ssh_hostKeys'; } } catch (\Exception $e) { } return false; } - private function write_host_keys($keys) { + private function writeHostKeys($keys) { try { - $key_path = $this->host_keys_path(); - $fp = fopen($key_path, 'w'); + $keyPath = $this->hostKeysPath(); + $fp = fopen($keyPath, 'w'); foreach ($keys as $host => $key) { fwrite($fp, $host . '::' . $key . "\n"); } @@ -93,19 +105,19 @@ class SFTP extends \OC\Files\Storage\Common { } } - private function read_host_keys() { + private function readHostKeys() { try { - $key_path = $this->host_keys_path(); - if (file_exists($key_path)) { + $keyPath = $this->hostKeysPath(); + if (file_exists($keyPath)) { $hosts = array(); $keys = array(); - $lines = file($key_path, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); + $lines = file($keyPath, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); if ($lines) { foreach ($lines as $line) { - $host_key_arr = explode("::", $line, 2); - if (count($host_key_arr) == 2) { - $hosts[] = $host_key_arr[0]; - $keys[] = $host_key_arr[1]; + $hostKeyArray = explode("::", $line, 2); + if (count($hostKeyArray) == 2) { + $hosts[] = $hostKeyArray[0]; + $keys[] = $hostKeyArray[1]; } } return array_combine($hosts, $keys); @@ -118,7 +130,7 @@ class SFTP extends \OC\Files\Storage\Common { public function mkdir($path) { try { - return $this->client->mkdir($this->abs_path($path)); + return $this->client->mkdir($this->absPath($path)); } catch (\Exception $e) { return false; } @@ -126,7 +138,7 @@ class SFTP extends \OC\Files\Storage\Common { public function rmdir($path) { try { - return $this->client->delete($this->abs_path($path), true); + return $this->client->delete($this->absPath($path), true); } catch (\Exception $e) { return false; } @@ -134,16 +146,16 @@ class SFTP extends \OC\Files\Storage\Common { public function opendir($path) { try { - $list = $this->client->nlist($this->abs_path($path)); + $list = $this->client->nlist($this->absPath($path)); $id = md5('sftp:' . $path); - $dir_stream = array(); + $dirStream = array(); foreach($list as $file) { if ($file != '.' && $file != '..') { - $dir_stream[] = $file; + $dirStream[] = $file; } } - \OC\Files\Stream\Dir::register($id, $dir_stream); + \OC\Files\Stream\Dir::register($id, $dirStream); return opendir('fakedir://' . $id); } catch(\Exception $e) { return false; @@ -152,10 +164,16 @@ class SFTP extends \OC\Files\Storage\Common { public function filetype($path) { try { - $stat = $this->client->stat($this->abs_path($path)); - if ($stat['type'] == NET_SFTP_TYPE_REGULAR) return 'file'; - if ($stat['type'] == NET_SFTP_TYPE_DIRECTORY) return 'dir'; + $stat = $this->client->stat($this->absPath($path)); + if ($stat['type'] == NET_SFTP_TYPE_REGULAR) { + return 'file'; + } + + if ($stat['type'] == NET_SFTP_TYPE_DIRECTORY) { + return 'dir'; + } } catch (\Exeption $e) { + } return false; } @@ -170,7 +188,7 @@ class SFTP extends \OC\Files\Storage\Common { public function file_exists($path) { try { - return $this->client->stat($this->abs_path($path)) !== false; + return $this->client->stat($this->absPath($path)) !== false; } catch (\Exception $e) { return false; } @@ -178,7 +196,7 @@ class SFTP extends \OC\Files\Storage\Common { public function unlink($path) { try { - return $this->client->delete($this->abs_path($path), true); + return $this->client->delete($this->absPath($path), true); } catch (\Exception $e) { return false; } @@ -186,18 +204,21 @@ class SFTP extends \OC\Files\Storage\Common { public function fopen($path, $mode) { try { - $abs_path = $this->abs_path($path); + $absPath = $this->absPath($path); switch($mode) { case 'r': case 'rb': - if ( !$this->file_exists($path)) return false; + if ( !$this->file_exists($path)) { + return false; + } + if (strrpos($path, '.')!==false) { $ext=substr($path, strrpos($path, '.')); } else { $ext=''; } $tmp = \OC_Helper::tmpFile($ext); - $this->getFile($abs_path, $tmp); + $this->getFile($absPath, $tmp); return fopen($tmp, $mode); case 'w': @@ -217,12 +238,18 @@ class SFTP extends \OC\Files\Storage\Common { } else { $ext=''; } + $tmpFile=\OC_Helper::tmpFile($ext); - \OC\Files\Stream\Close::registerCallback($tmpFile, array($this, 'writeBack')); + \OC\Files\Stream\Close::registerCallback( + $tmpFile, + array($this, 'writeBack') + ); + if ($this->file_exists($path)) { - $this->getFile($abs_path, $tmpFile); + $this->getFile($absPath, $tmpFile); } - self::$tempFiles[$tmpFile]=$abs_path; + + self::$tempFiles[$tmpFile]=$absPath; return fopen('close://'.$tmpFile, $mode); } } catch (\Exception $e) { @@ -240,9 +267,11 @@ class SFTP extends \OC\Files\Storage\Common { public function touch($path, $mtime=null) { try { - if (!is_null($mtime)) return false; + if (!is_null($mtime)) { + return false; + } if (!$this->file_exists($path)) { - $this->client->put($this->abs_path($path), ''); + $this->client->put($this->absPath($path), ''); } else { return false; } @@ -262,7 +291,10 @@ class SFTP extends \OC\Files\Storage\Common { public function rename($source, $target) { try { - return $this->client->rename($this->abs_path($source), $this->abs_path($target)); + return $this->client->rename( + $this->absPath($source), + $this->absPath($target) + ); } catch (\Exception $e) { return false; } @@ -270,7 +302,7 @@ class SFTP extends \OC\Files\Storage\Common { public function stat($path) { try { - $stat = $this->client->stat($this->abs_path($path)); + $stat = $this->client->stat($this->absPath($path)); $mtime = $stat ? $stat['mtime'] : -1; $size = $stat ? $stat['size'] : 0; @@ -279,6 +311,5 @@ class SFTP extends \OC\Files\Storage\Common { } catch (\Exception $e) { return false; } - } } diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index 48e41e9304889fe1c1356ded114ffb6b08f299c7..bc33dd40437ab3bbd6dd9a61193076045f4593e7 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -68,11 +68,21 @@ if (version_compare($installedVersion, '0.3', '<')) { // $query = OCP\DB::prepare('DROP TABLE `*PREFIX*sharing`'); // $query->execute(); } -if (version_compare($installedVersion, '0.3.3', '<')) { - OC_User::useBackend(new OC_User_Database()); - OC_App::loadApps(array('authentication')); - $users = OC_User::getUsers(); - foreach ($users as $user) { -// OC_FileCache::delete('Shared', '/'.$user.'/files/'); + +// clean up oc_share table from files which are no longer exists +if (version_compare($installedVersion, '0.3.4', '<')) { + + // get all shares where the original file no longer exists + $findShares = \OC_DB::prepare('SELECT `file_source` FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*filecache`.`fileid` IS NULL'); + $sharesFound = $findShares->execute(array())->fetchAll(); + + // delete those shares from the oc_share table + if (is_array($sharesFound) && !empty($sharesFound)) { + $delArray = array(); + foreach ($sharesFound as $share) { + $delArray[] = $share['file_source']; + } + $removeShares = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `file_source` IN (?)'); + $result = $removeShares->execute(array(implode(',', $delArray))); } } diff --git a/apps/files_sharing/appinfo/version b/apps/files_sharing/appinfo/version index 87a0871112f9244bbad0fc8331376317417760b9..448a0fa11cdb5dc89bd34011f071df2a56ee44d9 100644 --- a/apps/files_sharing/appinfo/version +++ b/apps/files_sharing/appinfo/version @@ -1 +1 @@ -0.3.3 \ No newline at end of file +0.3.4 \ No newline at end of file diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index a43ab2e2a0a5e07ad5188b96b3e481e99c60d69e..08aaa62e252cdb319f95ab27d95607d18646036b 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -57,6 +57,23 @@ class Shared_Updater { } } + /** + * @brief remove all shares for a given file if the file was deleted + * + * @param string $path + */ + private static function removeShare($path) { + $fileInfo = \OC\Files\Filesystem::getFileInfo($path); + $fileSource = $fileInfo['fileid']; + + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `file_source`=?'); + try { + \OC_DB::executeAudited($query, array($fileSource)); + } catch (\Exception $e) { + \OCP\Util::writeLog('files_sharing', "can't remove share: " . $e->getMessage(), \OCP\Util::WARN); + } + } + /** * @param array $params */ @@ -77,8 +94,10 @@ class Shared_Updater { */ static public function deleteHook($params) { self::correctFolders($params['path']); + self::removeShare($params['path']); } + /** * @param array $params */ diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index c164b3ea2b791f214ffd4ce5326dcd08b18a54f1..e53887c35902b4e3c7e996cebdc379070900e64c 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -2,6 +2,7 @@ <div id="notification" style="display: none;"></div> </div> +<input type="hidden" id="isPublic" name="isPublic" value="1"> <input type="hidden" name="dir" value="<?php p($_['dir']) ?>" id="dir"> <input type="hidden" name="downloadURL" value="<?php p($_['downloadURL']) ?>" id="downloadURL"> <input type="hidden" name="filename" value="<?php p($_['filename']) ?>" id="filename"> diff --git a/apps/files_trashbin/l10n/ady.php b/apps/files_trashbin/l10n/ady.php new file mode 100644 index 0000000000000000000000000000000000000000..0acad00e8b58f9aeba594f70d8957213bf899c9a --- /dev/null +++ b/apps/files_trashbin/l10n/ady.php @@ -0,0 +1,6 @@ +<?php +$TRANSLATIONS = array( +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ar.php b/apps/files_trashbin/l10n/ar.php index 710a9d14196ee4704c5265c2239fd03b76f35f38..0af6972af5afcc76d8d94914a0208095130207b9 100644 --- a/apps/files_trashbin/l10n/ar.php +++ b/apps/files_trashbin/l10n/ar.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "حذف بشكل دائم", "Name" => "اسم", "Deleted" => "تم الحذف", -"_%n folder_::_%n folders_" => array("","","","","",""), -"_%n file_::_%n files_" => array("","","","","",""), +"_%n folder_::_%n folders_" => array("","","","","","مجلدات %n"), +"_%n file_::_%n files_" => array("","","","",""," ملفات %n"), "Nothing in here. Your trash bin is empty!" => "لا يوجد شيء هنا. سلة المهملات خاليه.", "Restore" => "استعيد", "Delete" => "إلغاء", diff --git a/apps/files_trashbin/l10n/fr.php b/apps/files_trashbin/l10n/fr.php index 45527805ce1af23c00193da2c838a7cfb3d50f3a..39e1ac8614bc8c22e85537f8af63ed9d09e24164 100644 --- a/apps/files_trashbin/l10n/fr.php +++ b/apps/files_trashbin/l10n/fr.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Supprimer de façon définitive", "Name" => "Nom", "Deleted" => "Effacé", -"_%n folder_::_%n folders_" => array("","%n dossiers"), -"_%n file_::_%n files_" => array("","%n fichiers"), +"_%n folder_::_%n folders_" => array("%n dossier","%n dossiers"), +"_%n file_::_%n files_" => array("%n fichier","%n fichiers"), "restored" => "restauré", "Nothing in here. Your trash bin is empty!" => "Il n'y a rien ici. Votre corbeille est vide !", "Restore" => "Restaurer", diff --git a/apps/user_ldap/l10n/ar.php b/apps/user_ldap/l10n/ar.php index 3dd88eb265598659936c636fdf776a50548c4a07..c9d9949f50d3ad45df23e259eb4dd40ebd38ae32 100644 --- a/apps/user_ldap/l10n/ar.php +++ b/apps/user_ldap/l10n/ar.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Deletion failed" => "فشل الحذف", "Error" => "خطأ", +"Host" => "المضيف", "Password" => "كلمة المرور", "Help" => "المساعدة" ); diff --git a/apps/user_ldap/l10n/eo.php b/apps/user_ldap/l10n/eo.php index 26d46b81b9f6c0f5aaa44c5bc3b93ebb457e861a..e81b63143f28533947f42de952f2013bf59e41d1 100644 --- a/apps/user_ldap/l10n/eo.php +++ b/apps/user_ldap/l10n/eo.php @@ -1,8 +1,15 @@ <?php $TRANSLATIONS = array( +"Failed to delete the server configuration" => "Malsukcesis forigo de la agordo de servilo", "Deletion failed" => "Forigo malsukcesis", +"Keep settings?" => "Ĉu daŭrigi la agordon?", +"Cannot add server configuration" => "Ne eblas aldoni agordon de servilo", "Success" => "Sukceso", "Error" => "Eraro", +"Connection test succeeded" => "Provo de konekto sukcesis", +"Connection test failed" => "Provo de konekto malsukcesis", +"Server configuration" => "Agordo de servilo", +"Add Server Configuration" => "Aldoni agordon de servilo", "Host" => "Gastigo", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Vi povas neglekti la protokolon, escepte se vi bezonas SSL-on. Tiuokaze, komencu per ldaps://", "Base DN" => "Bazo-DN", @@ -24,6 +31,7 @@ $TRANSLATIONS = array( "Group-Member association" => "Asocio de grupo kaj membro", "in bytes" => "duumoke", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Lasu malplena por uzantonomo (defaŭlto). Alie, specifu LDAP/AD-atributon.", +"Test Configuration" => "Provi agordon", "Help" => "Helpo" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/et_EE.php b/apps/user_webdavauth/l10n/et_EE.php index 34b07c654a51a5faac425799391ea192b4e57513..2727cc98dc9f0ad67243372fcb004288b189a60b 100644 --- a/apps/user_webdavauth/l10n/et_EE.php +++ b/apps/user_webdavauth/l10n/et_EE.php @@ -2,6 +2,6 @@ $TRANSLATIONS = array( "WebDAV Authentication" => "WebDAV autentimine", "Address: " => "Aadress:", -"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." => "ownCloud saadab kasutajatunnused sellel aadressil. See vidin kontrollib vastust ning tuvastab HTTP vastuskoodid 401 ja 403 kui vigased, ning kõik teised vastused kui korrektsed kasutajatunnused." +"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." => "ownCloud saadab kasutajatunnused sellel aadressil. See vidin kontrollib vastust ning tuvastab ning tõlgendab HTTP olekukoodid 401 ja 403 valedeks andmeteks ning kõik teised vastused korrektseteks andmeteks." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/ko.php b/apps/user_webdavauth/l10n/ko.php index 2d2c4d70e73bfc4407e11b1ab30e89289132df66..19565f28522f984702595c5ee53d7b2804dd0cf3 100644 --- a/apps/user_webdavauth/l10n/ko.php +++ b/apps/user_webdavauth/l10n/ko.php @@ -1,5 +1,7 @@ <?php $TRANSLATIONS = array( -"WebDAV Authentication" => "WebDAV 인증" +"WebDAV Authentication" => "WebDAV 인증", +"Address: " => "주소:", +"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." => "ownCloud에서 이 URL로 사용자 인증 정보를 보냅니다. 이 플러그인은 응답을 확인하여 HTTP 상태 코드 401이나 403이 돌아온 경우에 잘못된 인증 정보로 간주합니다. 다른 모든 상태 코드는 올바른 인증 정보로 간주합니다." ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index ac37b109e76a2ea17c6f7e101e5747f8aae1cbc3..e5e9f6dbb7d57e35965d88baa44d08a874351375 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -294,7 +294,7 @@ var OCdialogs = { conflict.find('.replacement .mtime').text(formatDate(replacement.lastModifiedDate)); } var path = getPathForPreview(original.name); - lazyLoadPreview(path, original.type, function(previewpath){ + lazyLoadPreview(path, original.mime, function(previewpath){ conflict.find('.original .icon').css('background-image','url('+previewpath+')'); }, 96, 96); getCroppedPreview(replacement).then( diff --git a/core/js/share.js b/core/js/share.js index 8d14520cd74650934b691495dcdbc04b3ebadd64..b472797b3cd98cc277168483a72bc3764d26481a 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -350,7 +350,7 @@ OC.Share={ if (mailSend === '1') { checked = 'checked'; } - html += '<input type="checkbox" name="mailNotification" class="mailNotification" ' + checked + ' />'+t('core', 'notify user by email')+'</label>'; + html += '<label><input type="checkbox" name="mailNotification" class="mailNotification" ' + checked + ' />'+t('core', 'notify user by email')+'</label>'; } if (possiblePermissions & OC.PERMISSION_CREATE || possiblePermissions & OC.PERMISSION_UPDATE || possiblePermissions & OC.PERMISSION_DELETE) { if (editChecked == '') { @@ -476,7 +476,7 @@ $(document).ready(function() { $(this).click(function(event) { var target = $(event.target); var isMatched = !target.is('.drop, .ui-datepicker-next, .ui-datepicker-prev, .ui-icon') - && !target.closest('#ui-datepicker-div').length; + && !target.closest('#ui-datepicker-div').length && !target.closest('.ui-autocomplete').length; if (OC.Share.droppedDown && isMatched && $('#dropdown').has(event.target).length === 0) { OC.Share.hideDropDown(); } @@ -502,6 +502,7 @@ $(document).ready(function() { $(document).on('click', '#dropdown .showCruds', function() { $(this).parent().find('.cruds').toggle(); + return false; }); $(document).on('click', '#dropdown .unshare', function() { @@ -519,6 +520,7 @@ $(document).ready(function() { $('#expiration').hide(); } }); + return false; }); $(document).on('change', '#dropdown .permissions', function() { diff --git a/core/l10n/ady.php b/core/l10n/ady.php new file mode 100644 index 0000000000000000000000000000000000000000..ffcdde48d47cbbe4730b36aec880f7e1642688fb --- /dev/null +++ b/core/l10n/ady.php @@ -0,0 +1,9 @@ +<?php +$TRANSLATIONS = array( +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ar.php b/core/l10n/ar.php index f61014e19e14097f4cd718a8325dd2897ad3af88..cb8a506c4a8e06543c09e0259e1f0286a0282937 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -81,6 +81,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية", "Sending ..." => "جاري الارسال ...", "Email sent" => "تم ارسال البريد الالكتروني", +"Warning" => "تحذير", "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", "Use the following link to reset your password: {link}" => "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 4f5ae5993f4a07a338664083ca12ccfabcb57c76..3b7fd4633afb51bc1b58a8575b70c1c0edd8c35e 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -41,6 +41,7 @@ $TRANSLATIONS = array( "Share with" => "Споделено с", "Password" => "Парола", "create" => "създаване", +"Warning" => "Внимание", "You will receive a link to reset your password via Email." => "Ще получите връзка за нулиране на паролата Ви.", "Username" => "Потребител", "Request reset" => "Нулиране на заявка", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index 3b4b990ac289b0e45d94ae108bd2a88abf2ba61c..dfcd2f509a6a5a86c3c7eaa97841d3eba5283f3b 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -79,6 +79,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে", "Sending ..." => "পাঠানো হচ্ছে......", "Email sent" => "ই-মেইল পাঠানো হয়েছে", +"Warning" => "সতর্কবাণী", "Use the following link to reset your password: {link}" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করার জন্য নিম্নোক্ত লিংকটি ব্যবহার করুনঃ {link}", "You will receive a link to reset your password via Email." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।", "Username" => "ব্যবহারকারী", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 938d668b362beb2c085996fcd42a51bfbccb414a..d85da45b5d6ea4038d47851650314dfcbba2db58 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -103,6 +103,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Error en establir la data de venciment", "Sending ..." => "Enviant...", "Email sent" => "El correu electrónic s'ha enviat", +"Warning" => "Avís", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "L'actualització ha estat incorrecte. Comuniqueu aquest error a <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">la comunitat ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "L'actualització ha estat correcte. Ara us redirigim a ownCloud.", "%s password reset" => "restableix la contrasenya %s", @@ -125,7 +126,6 @@ $TRANSLATIONS = array( "Help" => "Ajuda", "Access forbidden" => "Accés prohibit", "Cloud not found" => "No s'ha trobat el núvol", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ei,\n\nnomés fer-te saber que %s ha compartit %s amb tu.\nMira-ho: %s\n\nSalut!", "Edit categories" => "Edita les categories", "Add" => "Afegeix", "Security Warning" => "Avís de seguretat", @@ -155,7 +155,6 @@ $TRANSLATIONS = array( "remember" => "recorda'm", "Log in" => "Inici de sessió", "Alternative Logins" => "Acreditacions alternatives", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Ei,<br><br>només fer-te saber que %s ha compartit %s amb tu.<br><a href=\"%s\">Mira-ho:</a><br><br>Salut!", "Updating ownCloud to version %s, this may take a while." => "S'està actualitzant ownCloud a la versió %s, pot trigar una estona." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 8b63079c87aeb39923919c7dac1517ebe991eb73..4bd8bd07b708edb3a8247ec98388ce941c6e38d4 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -99,6 +99,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Chyba při nastavení data vypršení platnosti", "Sending ..." => "Odesílám ...", "Email sent" => "E-mail odeslán", +"Warning" => "Varová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", @@ -121,7 +122,6 @@ $TRANSLATIONS = array( "Help" => "Nápověda", "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\nCheers!" => "Ahoj,\n\njenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky", "Edit categories" => "Upravit kategorie", "Add" => "Přidat", "Security Warning" => "Bezpečnostní upozornění", @@ -151,7 +151,6 @@ $TRANSLATIONS = array( "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>Cheers!" => "Ahoj,<br><br>jenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete <br><a href=\"%s\">zde</a>.<br><br>Díky", "Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat." ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index 78eb6ba96981ee0a9fb54d749ab1072490a36473..920fcad3d6bfc5b1088f59c0de08dc1ef4d992d1 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -81,6 +81,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Gwall wrth osod dyddiad dod i ben", "Sending ..." => "Yn anfon ...", "Email sent" => "Anfonwyd yr e-bost", +"Warning" => "Rhybudd", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Methodd y diweddariad. Adroddwch y mater hwn i <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">gymuned ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "Roedd y diweddariad yn llwyddiannus. Cewch eich ailgyfeirio i ownCloud nawr.", "Use the following link to reset your password: {link}" => "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}", diff --git a/core/l10n/da.php b/core/l10n/da.php index 8938f2107fa2312d19c78d7918dc692ef9fb878a..b28e8a969b48c36da51cb0e5c2131cb57e433477 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -16,8 +16,11 @@ $TRANSLATIONS = array( "Error adding %s to favorites." => "Fejl ved tilføjelse af %s til favoritter.", "No categories selected for deletion." => "Ingen kategorier valgt", "Error removing %s from favorites." => "Fejl ved fjernelse af %s fra favoritter.", +"No image or file provided" => "Ingen fil eller billede givet", "Unknown filetype" => "Ukendt filtype", "Invalid image" => "Ugyldigt billede", +"No temporary profile picture available, try again" => "Intet midlertidigt profilbillede tilgængeligt, prøv igen", +"No crop data provided" => "Ingen beskæringsdata give", "Sunday" => "Søndag", "Monday" => "Mandag", "Tuesday" => "Tirsdag", @@ -50,11 +53,20 @@ $TRANSLATIONS = array( "last year" => "sidste år", "years ago" => "år siden", "Choose" => "Vælg", +"Error loading file picker template: {error}" => "Fejl ved indlæsning af filvælger skabelon: {error}", "Yes" => "Ja", "No" => "Nej", "Ok" => "OK", -"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Error loading message template: {error}" => "Fejl ved indlæsning af besked skabelon: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} filkonflikt","{count} filkonflikter"), +"One file conflict" => "En filkonflikt", +"Which files do you want to keep?" => "Hvilke filer ønsker du at beholde?", +"If you select both versions, the copied file will have a number added to its name." => "Hvis du vælger begge versioner, vil den kopierede fil få tilføjet et nummer til sit navn.", "Cancel" => "Annuller", +"Continue" => "Videre", +"(all selected)" => "(alle valgt)", +"({count} selected)" => "({count} valgt)", +"Error loading file exists template" => "Fejl ved inlæsning af; fil eksistere skabelon", "The object type is not specified." => "Objekttypen er ikke angivet.", "Error" => "Fejl", "The app name is not specified." => "Den app navn er ikke angivet.", @@ -91,6 +103,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Fejl under sætning af udløbsdato", "Sending ..." => "Sender ...", "Email sent" => "E-mail afsendt", +"Warning" => "Advarsel", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownClouds community</a>.", "The update was successful. Redirecting you to ownCloud now." => "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud.", "%s password reset" => "%s adgangskode nulstillet", @@ -113,7 +126,6 @@ $TRANSLATIONS = array( "Help" => "Hjælp", "Access forbidden" => "Adgang forbudt", "Cloud not found" => "Sky ikke fundet", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo\n\ndette blot for at lade dig vide, at %s har delt %s med dig.\nSe det: %s\n\nHej", "Edit categories" => "Rediger kategorier", "Add" => "Tilføj", "Security Warning" => "Sikkerhedsadvarsel", @@ -143,7 +155,6 @@ $TRANSLATIONS = array( "remember" => "husk", "Log in" => "Log ind", "Alternative Logins" => "Alternative logins", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hallo,<br><br>dette blot for at lade dig vide, at %s har delt \"%s\" med dig.<br><a href=\"%s\">Se det!</a><br><br>Hej", "Updating ownCloud to version %s, this may take a while." => "Opdatere Owncloud til version %s, dette kan tage et stykke tid." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/de.php b/core/l10n/de.php index b5ff8826ad8c2a82b5e422aee0219f62817ab335..7e292adcf397e761bcece95c9567131dc6a611d5 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "%s shared »%s« with you" => "%s teilte »%s« mit Ihnen", +"Couldn't send mail to following users: %s " => "Die E-Mail konnte nicht an folgende Benutzer gesendet werden: %s", "group" => "Gruppe", "Turned on maintenance mode" => "Wartungsmodus eingeschaltet", "Turned off maintenance mode" => "Wartungsmodus ausgeschaltet", @@ -92,6 +93,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Weiterverteilen ist nicht erlaubt", "Shared in {item} with {user}" => "Für {user} in {item} freigegeben", "Unshare" => "Freigabe aufheben", +"notify user by email" => "Benutzer per E-Mail informieren", "can edit" => "kann bearbeiten", "access control" => "Zugriffskontrolle", "create" => "erstellen", @@ -103,6 +105,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums", "Sending ..." => "Sende ...", "Email sent" => "E-Mail wurde verschickt", +"Warning" => "Warnung", "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", @@ -125,7 +128,9 @@ $TRANSLATIONS = array( "Help" => "Hilfe", "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\nCheers!" => "Hallo,\n\nwollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.\nSchau es dir an: %s\n\nGruß!", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo,\n\nich wollte Dich nur wissen lassen, dass %s %s mit Dir teilt.\nSchaue es Dir an: %s\n\n", +"The share will expire on %s.\n\n" => "Die Freigabe wird ablaufen am %s.\n\n", +"Cheers!" => "Hallo!", "Edit categories" => "Kategorien bearbeiten", "Add" => "Hinzufügen", "Security Warning" => "Sicherheitswarnung", @@ -146,6 +151,7 @@ $TRANSLATIONS = array( "Database tablespace" => "Datenbank-Tablespace", "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", +"Finishing …" => "Abschließen ...", "%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", "Automatic logon rejected!" => "Automatischer Login zurückgewiesen!", @@ -155,7 +161,8 @@ $TRANSLATIONS = array( "remember" => "merken", "Log in" => "Einloggen", "Alternative Logins" => "Alternative Logins", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hallo,<br/><br/>wollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.<br/><a href=\"%s\">Schau es dir an.</a><br/><br/>Gruß!", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hallo,<br/><br/>wollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.<br/><a href=\"%s\">Schau es dir an.</a><br/><br/>", +"The share will expire on %s.<br><br>" => "Die Freigabe wird ablaufen am %s.<br><br>", "Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php index 1fc6f6b7e1e5d7d7b38a2e95909d8be41022c5c7..1f79e977cc9c59db0d572f203ee90f23cd375ba2 100644 --- a/core/l10n/de_CH.php +++ b/core/l10n/de_CH.php @@ -83,6 +83,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums", "Sending ..." => "Sende ...", "Email sent" => "Email gesendet", +"Warning" => "Warnung", "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", @@ -105,7 +106,6 @@ $TRANSLATIONS = array( "Help" => "Hilfe", "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\nCheers!" => "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüsse!", "Edit categories" => "Kategorien ändern", "Add" => "Hinzufügen", "Security Warning" => "Sicherheitshinweis", @@ -135,7 +135,6 @@ $TRANSLATIONS = array( "remember" => "merken", "Log in" => "Einloggen", "Alternative Logins" => "Alternative Logins", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hallo,<br><br>ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.<br><a href=\"%s\">Schauen Sie es sich an!</a><br><br>Viele Grüsse!", "Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 5b9b199f416d60d5a1ec4fc614fbee41e2c05315..95519c7d412a7154f0f22160c2410ae43ab89eb0 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "%s shared »%s« with you" => "%s geteilt »%s« mit Ihnen", +"Couldn't send mail to following users: %s " => "Die E-Mail konnte nicht an folgende Benutzer gesendet werden: %s", "group" => "Gruppe", "Turned on maintenance mode" => "Wartungsmodus eingeschaltet ", "Turned off maintenance mode" => "Wartungsmodus ausgeschaltet", @@ -92,6 +93,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Das Weiterverteilen ist nicht erlaubt", "Shared in {item} with {user}" => "Freigegeben in {item} von {user}", "Unshare" => "Freigabe aufheben", +"notify user by email" => "Benutzer per E-Mail informieren", "can edit" => "kann bearbeiten", "access control" => "Zugriffskontrolle", "create" => "erstellen", @@ -103,6 +105,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums", "Sending ..." => "Sende ...", "Email sent" => "Email gesendet", +"Warning" => "Warnung", "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", @@ -125,7 +128,9 @@ $TRANSLATIONS = array( "Help" => "Hilfe", "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\nCheers!" => "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüße!", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\n", +"The share will expire on %s.\n\n" => "Die Freigabe wird ablaufen am %s.\n\n", +"Cheers!" => "Hallo!", "Edit categories" => "Kategorien ändern", "Add" => "Hinzufügen", "Security Warning" => "Sicherheitshinweis", @@ -146,6 +151,7 @@ $TRANSLATIONS = array( "Database tablespace" => "Datenbank-Tablespace", "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", +"Finishing …" => "Abschließen ...", "%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", "Automatic logon rejected!" => "Automatische Anmeldung verweigert!", @@ -155,7 +161,8 @@ $TRANSLATIONS = array( "remember" => "merken", "Log in" => "Einloggen", "Alternative Logins" => "Alternative Logins", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hallo,<br><br>ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.<br><a href=\"%s\">Schauen Sie es sich an!</a><br><br>Viele Grüße!", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hallo,<br><br>ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.<br><a href=\"%s\">Schauen Sie es sich an!</a><br><br>", +"The share will expire on %s.<br><br>" => "Die Freigabe wird ablaufen am %s.<br><br>", "Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/el.php b/core/l10n/el.php index 7fc58ca3527bbe0dc85f8782df282778b3a6ab62..fd5987d02ae5e40be98a3c6542ef1c0c4bdf8c34 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -83,6 +83,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Σφάλμα κατά τον ορισμό ημ. λήξης", "Sending ..." => "Αποστολή...", "Email sent" => "Το Email απεστάλη ", +"Warning" => "Προειδοποίηση", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ στείλτε αναφορά στην <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">κοινότητα ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud.", "Use the following link to reset your password: {link}" => "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}", @@ -104,7 +105,6 @@ $TRANSLATIONS = array( "Help" => "Βοήθεια", "Access forbidden" => "Δεν επιτρέπεται η πρόσβαση", "Cloud not found" => "Δεν βρέθηκε νέφος", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Γεια σας,\n\nσας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το %s.\nΔείτε το: %s\n\nΓεια χαρά!", "Edit categories" => "Επεξεργασία κατηγοριών", "Add" => "Προσθήκη", "Security Warning" => "Προειδοποίηση Ασφαλείας", @@ -134,7 +134,6 @@ $TRANSLATIONS = array( "remember" => "απομνημόνευση", "Log in" => "Είσοδος", "Alternative Logins" => "Εναλλακτικές Συνδέσεις", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Γεια σας,<br><br>σας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το »%s«.<br><a href=\"%s\">Δείτε το!</a><br><br>Γεια χαρά!", "Updating ownCloud to version %s, this may take a while." => "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index bb26f1469dd9c4fe7b6e81d62cd153e392358c11..c69cf59f384cd56a2525115deadad1444073d974 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -103,6 +103,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Error setting expiration date", "Sending ..." => "Sending ...", "Email sent" => "Email sent", +"Warning" => "Warning", "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", @@ -125,7 +126,6 @@ $TRANSLATIONS = array( "Help" => "Help", "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\nCheers!" => "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!", "Edit categories" => "Edit categories", "Add" => "Add", "Security Warning" => "Security Warning", @@ -155,7 +155,6 @@ $TRANSLATIONS = array( "remember" => "remember", "Log in" => "Log in", "Alternative Logins" => "Alternative Logins", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hey there,<br><br>just letting you know that %s shared \"%s\" with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!", "Updating ownCloud to version %s, this may take a while." => "Updating ownCloud to version %s, this may take a while." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 712f97538f3455879b804494aef7e1f27f5dd56a..2b416db470742830ad4cc3b211cde83b367983b2 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -82,6 +82,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Eraro dum agordado de limdato", "Sending ..." => "Sendante...", "Email sent" => "La retpoŝtaĵo sendiĝis", +"Warning" => "Averto", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "La ĝisdatigo estis malsukcese. Bonvolu raporti tiun problemon al la <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownClouda komunumo</a>.", "The update was successful. Redirecting you to ownCloud now." => "La ĝisdatigo estis sukcesa. Alidirektante nun al ownCloud.", "Use the following link to reset your password: {link}" => "Uzu la jenan ligilon por restarigi vian pasvorton: {link}", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Help" => "Helpo", "Access forbidden" => "Aliro estas malpermesata", "Cloud not found" => "La nubo ne estas trovita", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Saluton:\n\nNi nur sciigas vin, ke %s kunhavigis %s kun vi.\nVidu ĝin: %s\n\nĜis!", "Edit categories" => "Redakti kategoriojn", "Add" => "Aldoni", "Security Warning" => "Sekureca averto", @@ -127,7 +127,6 @@ $TRANSLATIONS = array( "remember" => "memori", "Log in" => "Ensaluti", "Alternative Logins" => "Alternativaj ensalutoj", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Saluton:<br /><br />Ni nur sciigas vin, ke %s kunhavigis “%s” kun vi.<br /><a href=\"%s\">Vidu ĝin</a><br /><br />Ĝis!", "Updating ownCloud to version %s, this may take a while." => "ownCloud ĝisdatiĝas al eldono %s, tio ĉi povas daŭri je iom da tempo." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es.php b/core/l10n/es.php index 3aa0c3f732c6472562f344f48bf0718fd6c61bef..29eea2dbf4936fedaf1a836bcb29f90e23fba5a7 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -16,6 +16,11 @@ $TRANSLATIONS = array( "Error adding %s to favorites." => "Error añadiendo %s a favoritos.", "No categories selected for deletion." => "No hay categorías seleccionadas para borrar.", "Error removing %s from favorites." => "Error eliminando %s de los favoritos.", +"No image or file provided" => "No se especificó ningún archivo o imagen", +"Unknown filetype" => "Tipo de archivo desconocido", +"Invalid image" => "Imagen inválida", +"No temporary profile picture available, try again" => "No hay disponible una imagen temporal de perfil, pruebe de nuevo", +"No crop data provided" => "No se proporcionó datos del recorte", "Sunday" => "Domingo", "Monday" => "Lunes", "Tuesday" => "Martes", @@ -48,11 +53,20 @@ $TRANSLATIONS = array( "last year" => "el año pasado", "years ago" => "años antes", "Choose" => "Seleccionar", +"Error loading file picker template: {error}" => "Error cargando plantilla del seleccionador de archivos: {error}", "Yes" => "Sí", "No" => "No", "Ok" => "Aceptar", -"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Error loading message template: {error}" => "Error cargando plantilla del mensaje: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} conflicto de archivo","{count} conflictos de archivo"), +"One file conflict" => "On conflicto de archivo", +"Which files do you want to keep?" => "¿Que archivos deseas mantener?", +"If you select both versions, the copied file will have a number added to its name." => "Si seleccionas ambas versiones, el archivo copiado tendrá añadido un número en su nombre.", "Cancel" => "Cancelar", +"Continue" => "Continuar", +"(all selected)" => "(seleccionados todos)", +"({count} selected)" => "({count} seleccionados)", +"Error loading file exists template" => "Error cargando plantilla de archivo existente", "The object type is not specified." => "El tipo de objeto no está especificado.", "Error" => "Error", "The app name is not specified." => "El nombre de la aplicación no está especificado.", @@ -89,6 +103,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Error estableciendo fecha de caducidad", "Sending ..." => "Enviando...", "Email sent" => "Correo electrónico enviado", +"Warning" => "Precaución", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "La actualización ha fracasado. Por favor, informe de este problema a la <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">Comunidad de ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora.", "%s password reset" => "%s restablecer contraseña", @@ -111,7 +126,6 @@ $TRANSLATIONS = array( "Help" => "Ayuda", "Access forbidden" => "Acceso denegado", "Cloud not found" => "No se encuentra la nube", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hey,\n\nsólo te hago saber que %s ha compartido %s contigo.\nEcha un ojo en: %s\n\n¡Un saludo!", "Edit categories" => "Editar categorías", "Add" => "Agregar", "Security Warning" => "Advertencia de seguridad", @@ -141,7 +155,6 @@ $TRANSLATIONS = array( "remember" => "recordar", "Log in" => "Entrar", "Alternative Logins" => "Inicios de sesión alternativos", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hey,<br><br>sólo te hago saber que %s ha compartido %s contigo.<br><a href=\"%s\">¡Echa un ojo!</a><br><br>¡Un saludo!", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 6dce47f760d08dbdfb5600e3343fa29a46f1fcca..7d7e29c8ffb6c29e2648725a3469be0dac13bab1 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -89,6 +89,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Error al asignar fecha de vencimiento", "Sending ..." => "Mandando...", "Email sent" => "e-mail mandado", +"Warning" => "Atención", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "La actualización no pudo ser completada. Por favor, reportá el inconveniente a la comunidad <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "La actualización fue exitosa. Estás siendo redirigido a ownCloud.", "%s password reset" => "%s restablecer contraseña", @@ -111,7 +112,6 @@ $TRANSLATIONS = array( "Help" => "Ayuda", "Access forbidden" => "Acceso prohibido", "Cloud not found" => "No se encontró ownCloud", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo acá: %s\n\n¡Chau!", "Edit categories" => "Editar categorías", "Add" => "Agregar", "Security Warning" => "Advertencia de seguridad", @@ -141,7 +141,6 @@ $TRANSLATIONS = array( "remember" => "recordame", "Log in" => "Iniciar sesión", "Alternative Logins" => "Nombre alternativos de usuarios", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hola,<br><br>Simplemente te informo que %s compartió %s con vos.<br><a href=\"%s\">Miralo acá:</a><br><br>¡Chau!", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, puede demorar un rato." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 17ce89543a6514a6973d042bcee8db63527d1ddf..7b26850166d2daaf89ce5e3c9f73d3ae33c49c6a 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "%s shared »%s« with you" => "%s jagas sinuga »%s«", +"Couldn't send mail to following users: %s " => "Kirja saatmine järgnevatele kasutajatele ebaõnnestus: %s ", "group" => "grupp", "Turned on maintenance mode" => "Haldusreziimis", "Turned off maintenance mode" => "Haldusreziim lõpetatud", @@ -58,8 +59,13 @@ $TRANSLATIONS = array( "No" => "Ei", "Ok" => "Ok", "Error loading message template: {error}" => "Viga sõnumi malli laadimisel: {error}", -"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("{count} failikonflikt","{count} failikonflikti"), +"One file conflict" => "Üks failikonflikt", +"Which files do you want to keep?" => "Milliseid faile sa soovid alles hoida?", "Cancel" => "Loobu", +"Continue" => "Jätka", +"(all selected)" => "(kõik valitud)", +"({count} selected)" => "({count} valitud)", "The object type is not specified." => "Objekti tüüp pole määratletud.", "Error" => "Viga", "The app name is not specified." => "Rakenduse nimi ole määratletud.", @@ -85,6 +91,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Edasijagamine pole lubatud", "Shared in {item} with {user}" => "Jagatud {item} kasutajaga {user}", "Unshare" => "Lõpeta jagamine", +"notify user by email" => "teavita kasutajaid e-postiga", "can edit" => "saab muuta", "access control" => "ligipääsukontroll", "create" => "loo", @@ -96,6 +103,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Viga aegumise kuupäeva määramisel", "Sending ..." => "Saatmine ...", "Email sent" => "E-kiri on saadetud", +"Warning" => "Hoiatus", "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,7 +126,9 @@ $TRANSLATIONS = array( "Help" => "Abiinfo", "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\nCheers!" => "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sinuga %s.\nVaata seda siin: %s\n\nTervitused!", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sulle välja %s.\nVaata seda: %s\n\n", +"The share will expire on %s.\n\n" => "Jagamine aegub %s.\n\n", +"Cheers!" => "Terekest!", "Edit categories" => "Muuda kategooriaid", "Add" => "Lisa", "Security Warning" => "Turvahoiatus", @@ -139,6 +149,7 @@ $TRANSLATIONS = array( "Database tablespace" => "Andmebaasi tabeliruum", "Database host" => "Andmebaasi host", "Finish setup" => "Lõpeta seadistamine", +"Finishing …" => "Lõpetamine ...", "%s is available. Get more information on how to update." => "%s on saadaval. Vaata lähemalt kuidas uuendada.", "Log out" => "Logi välja", "Automatic logon rejected!" => "Automaatne sisselogimine lükati tagasi!", @@ -148,7 +159,8 @@ $TRANSLATIONS = array( "remember" => "pea meeles", "Log in" => "Logi sisse", "Alternative Logins" => "Alternatiivsed sisselogimisviisid", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hei,<br><br>lihtsalt annan sulle teada, et %s jagas sinuga »%s«.<br><a href=\"%s\">Vaata seda!</a><br><br>Tervitades!", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hei,<br><br>lihtsalt annan sulle teada, et %s jagas sulle välja »%s«.<br><a href=\"%s\">Vaata seda!</a><br><br>", +"The share will expire on %s.<br><br>" => "Jagamine aegub %s.<br><br>", "Updating ownCloud to version %s, this may take a while." => "ownCloudi uuendamine versioonile %s. See võib veidi aega võtta." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 1e6594adf6fec37102183fdd14e008218c661a68..2bf1b0607909d9c23523cf4e3ed79379cf24d3f7 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -83,6 +83,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Errore bat egon da muga data ezartzean", "Sending ..." => "Bidaltzen ...", "Email sent" => "Eposta bidalia", +"Warning" => "Abisua", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Eguneraketa ez da ongi egin. Mesedez egin arazoaren txosten bat <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud komunitatearentzako</a>.", "The update was successful. Redirecting you to ownCloud now." => "Eguneraketa ongi egin da. Orain zure ownClouderea berbideratua izango zara.", "%s password reset" => "%s pasahitza berrezarri", @@ -105,7 +106,6 @@ $TRANSLATIONS = array( "Help" => "Laguntza", "Access forbidden" => "Sarrera debekatuta", "Cloud not found" => "Ez da hodeia aurkitu", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Kaixo\n\n%s-ek %s zurekin partekatu duela jakin dezazun.\nIkusi ezazu: %s\n\nOngi jarraitu!", "Edit categories" => "Editatu kategoriak", "Add" => "Gehitu", "Security Warning" => "Segurtasun abisua", @@ -135,7 +135,6 @@ $TRANSLATIONS = array( "remember" => "gogoratu", "Log in" => "Hasi saioa", "Alternative Logins" => "Beste erabiltzaile izenak", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Kaixo<br><br>%s-ek %s zurekin partekatu duela jakin dezazun.<br><a href=\"%s\">\nIkusi ezazu</a><br><br>Ongi jarraitu!", "Updating ownCloud to version %s, this may take a while." => "ownCloud %s bertsiora eguneratzen, denbora har dezake." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 930a5b0dcbce4b9809bb6af1cbd64355401d9958..e173d628f5f01d85e111de5831e79fb6bba9ca10 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -83,6 +83,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "خطا در تنظیم تاریخ انقضا", "Sending ..." => "درحال ارسال ...", "Email sent" => "ایمیل ارسال شد", +"Warning" => "اخطار", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "به روز رسانی ناموفق بود. لطفا این خطا را به <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">جامعه ی OwnCloud</a> گزارش نمایید.", "The update was successful. Redirecting you to ownCloud now." => "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud.", "Use the following link to reset your password: {link}" => "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}", @@ -104,7 +105,6 @@ $TRANSLATIONS = array( "Help" => "راهنما", "Access forbidden" => "اجازه دسترسی به مناطق ممنوعه را ندارید", "Cloud not found" => "پیدا نشد", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "اینجا,⏎\n فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده %s توسط شما.⏎\nمشاهده آن : %s⏎\n⏎\nبه سلامتی!", "Edit categories" => "ویرایش گروه", "Add" => "افزودن", "Security Warning" => "اخطار امنیتی", @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "remember" => "بیاد آوری", "Log in" => "ورود", "Alternative Logins" => "ورود متناوب", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "اینجا<br><br> فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده»%s« توسط شما.<br><a href=\"%s\"> مشاهده آن!</a><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/fi_FI.php b/core/l10n/fi_FI.php index cf215159c39564cdf9e72f745c64c5024b942e2d..c6c9f09e1dd66b36c2fc28e48489cf8afdc2b046 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "%s shared »%s« with you" => "%s jakoi kohteen »%s« kanssasi", +"Couldn't send mail to following users: %s " => "Sähköpostin lähetys seuraaville käyttäjille epäonnistui: %s", "group" => "ryhmä", "Turned on maintenance mode" => "Siirrytty ylläpitotilaan", "Turned off maintenance mode" => "Ylläpitotila laitettu pois päältä", @@ -14,6 +15,7 @@ $TRANSLATIONS = array( "Error adding %s to favorites." => "Virhe lisätessä kohdetta %s suosikkeihin.", "No categories selected for deletion." => "Luokkia ei valittu poistettavaksi.", "Error removing %s from favorites." => "Virhe poistaessa kohdetta %s suosikeista.", +"No image or file provided" => "Kuvaa tai tiedostoa ei määritelty", "Unknown filetype" => "Tuntematon tiedostotyyppi", "Invalid image" => "Virhellinen kuva", "No temporary profile picture available, try again" => "Väliaikaista profiilikuvaa ei ole käytettävissä, yritä uudelleen", @@ -53,6 +55,8 @@ $TRANSLATIONS = array( "No" => "Ei", "Ok" => "Ok", "_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Which files do you want to keep?" => "Mitkä tiedostot haluat säilyttää?", +"If you select both versions, the copied file will have a number added to its name." => "Jos valitset kummatkin versiot, kopioidun tiedoston nimeen lisätään numero.", "Cancel" => "Peru", "Continue" => "Jatka", "(all selected)" => "(kaikki valittu)", @@ -81,6 +85,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Jakaminen uudelleen ei ole salittu", "Shared in {item} with {user}" => "{item} on jaettu {user} kanssa", "Unshare" => "Peru jakaminen", +"notify user by email" => "ilmoita käyttäjälle sähköpostitse", "can edit" => "voi muokata", "access control" => "Pääsyn hallinta", "create" => "luo", @@ -92,6 +97,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Virhe päättymispäivää asettaessa", "Sending ..." => "Lähetetään...", "Email sent" => "Sähköposti lähetetty", +"Warning" => "Varoitus", "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", @@ -113,7 +119,8 @@ $TRANSLATIONS = array( "Help" => "Ohje", "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\nCheers!" => "Hei!\n\n%s jakoi kohteen %s kanssasi.\nKatso se tästä: %s\n\nNäkemiin!", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hei sinä!\n\n%s jakoi kohteen %s kanssasi.\nTutustu siihen: %s\n\n", +"The share will expire on %s.\n\n" => "Jakaminen päättyy %s.\n\n", "Edit categories" => "Muokkaa luokkia", "Add" => "Lisää", "Security Warning" => "Turvallisuusvaroitus", @@ -133,6 +140,7 @@ $TRANSLATIONS = array( "Database tablespace" => "Tietokannan taulukkotila", "Database host" => "Tietokantapalvelin", "Finish setup" => "Viimeistele asennus", +"Finishing …" => "Valmistellaan…", "%s is available. Get more information on how to update." => "%s on saatavilla. Lue lisätietoja, miten päivitys asennetaan.", "Log out" => "Kirjaudu ulos", "Automatic logon rejected!" => "Automaattinen sisäänkirjautuminen hylättiin!", @@ -142,7 +150,8 @@ $TRANSLATIONS = array( "remember" => "muista", "Log in" => "Kirjaudu sisään", "Alternative Logins" => "Vaihtoehtoiset kirjautumiset", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hei!<br><br>%s jakoi kohteen »%s« kanssasi.<br><a href=\"%s\">Katso se tästä!</a><br><br>Näkemiin!", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hei sinä!<br><br>%s jakoi kohteen »%s« kanssasi.<br><a href=\"%s\">Tutustu siihen!</a><br><br>", +"The share will expire on %s.<br><br>" => "Jakaminen päättyy %s.<br><br>", "Updating ownCloud to version %s, this may take a while." => "Päivitetään ownCloud versioon %s, tämä saattaa kestää hetken." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/fr.php b/core/l10n/fr.php index e7cb75e53f0aceb0327b57d0e3d2c48d7597cc82..83460f43343bd49b7c7db6d0e864726f82cad4bc 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -103,6 +103,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Erreur lors de la spécification de la date d'expiration", "Sending ..." => "En cours d'envoi ...", "Email sent" => "Email envoyé", +"Warning" => "Attention", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "La mise à jour a échoué. Veuillez signaler ce problème à la <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">communauté ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "La mise à jour a réussi. Vous êtes redirigé maintenant vers ownCloud.", "%s password reset" => "Réinitialisation de votre mot de passe %s", @@ -125,7 +126,6 @@ $TRANSLATIONS = array( "Help" => "Aide", "Access forbidden" => "Accès interdit", "Cloud not found" => "Introuvable", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Salut,\n\nje veux juste vous signaler %s partagé %s avec vous.\nVoyez-le: %s\n\nBonne continuation!", "Edit categories" => "Editer les catégories", "Add" => "Ajouter", "Security Warning" => "Avertissement de sécurité", @@ -155,7 +155,6 @@ $TRANSLATIONS = array( "remember" => "se souvenir de moi", "Log in" => "Connexion", "Alternative Logins" => "Logins alternatifs", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Salut,<br><br>je veux juste vous signaler %s partagé »%s« avec vous.<br><a href=\"%s\">Voyez-le!</a><br><br>Bonne continuation!", "Updating ownCloud to version %s, this may take a while." => "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps." ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/core/l10n/gl.php b/core/l10n/gl.php index e3be94537e5a02207c3f3b8753c152f61b8f6de5..3325a894f483981eabc582efba68da2817a346d2 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "%s shared »%s« with you" => "%s compartiu «%s» con vostede", +"Couldn't send mail to following users: %s " => "Non é posíbel enviar correo aos usuarios seguintes: %s", "group" => "grupo", "Turned on maintenance mode" => "Modo de mantemento activado", "Turned off maintenance mode" => "Modo de mantemento desactivado", @@ -92,6 +93,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Non se permite volver a compartir", "Shared in {item} with {user}" => "Compartido en {item} con {user}", "Unshare" => "Deixar de compartir", +"notify user by email" => "notificar ao usuario por correo", "can edit" => "pode editar", "access control" => "control de acceso", "create" => "crear", @@ -103,6 +105,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Produciuse un erro ao definir a data de caducidade", "Sending ..." => "Enviando...", "Email sent" => "Correo enviado", +"Warning" => "Aviso", "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", @@ -125,7 +128,9 @@ $TRANSLATIONS = array( "Help" => "Axuda", "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\nCheers!" => "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\nSaúdos!", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\n", +"The share will expire on %s.\n\n" => "Esta compartición caduca o %s.\n\n", +"Cheers!" => "Saúdos!", "Edit categories" => "Editar as categorías", "Add" => "Engadir", "Security Warning" => "Aviso de seguranza", @@ -146,6 +151,7 @@ $TRANSLATIONS = array( "Database tablespace" => "Táboa de espazos da base de datos", "Database host" => "Servidor da base de datos", "Finish setup" => "Rematar a configuración", +"Finishing …" => "Rematado ...", "%s is available. Get more information on how to update." => "%s está dispoñíbel. Obteña máis información sobre como actualizar.", "Log out" => "Desconectar", "Automatic logon rejected!" => "Rexeitouse a entrada automática", @@ -155,7 +161,8 @@ $TRANSLATIONS = array( "remember" => "lembrar", "Log in" => "Conectar", "Alternative Logins" => "Accesos alternativos", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Ola,<br><br>só facerlle saber que %s compartiu «%s» con vostede.<br><a href=\"%s\">Véxao!</a><br><br>Saúdos!", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Ola,<br><br>Só facerlle saber que %s compartiu «%s» con vostede.<br><a href=\"%s\">Véxao!</a><br><br>", +"The share will expire on %s.<br><br>" => "Esta compartición caduca o %s.<br><br>", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a versión %s, esto pode levar un anaco." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/he.php b/core/l10n/he.php index 704755da07f33fedbdfe7cc7a5570693f66f1e46..30ef27664ea687ee0f5dadb1e0f8a589717be9b8 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -82,6 +82,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "אירעה שגיאה בעת הגדרת תאריך התפוגה", "Sending ..." => "מתבצעת שליחה ...", "Email sent" => "הודעת הדוא״ל נשלחה", +"Warning" => "אזהרה", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "תהליך העדכון לא הושלם בהצלחה. נא דווח את הבעיה ב<a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">קהילת ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "תהליך העדכון הסתיים בהצלחה. עכשיו מנתב אותך אל ownCloud.", "Use the following link to reset your password: {link}" => "יש להשתמש בקישור הבא כדי לאפס את הססמה שלך: {link}", @@ -102,7 +103,6 @@ $TRANSLATIONS = array( "Help" => "עזרה", "Access forbidden" => "הגישה נחסמה", "Cloud not found" => "ענן לא נמצא", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "שלום,\n\nרצינו לעדכן כי %s שיתף/שיתפה איתך את »%s«.\n\nלצפיה: %s\n\nיום טוב!", "Edit categories" => "ערוך קטגוריות", "Add" => "הוספה", "Security Warning" => "אזהרת אבטחה", @@ -131,7 +131,6 @@ $TRANSLATIONS = array( "remember" => "שמירת הססמה", "Log in" => "כניסה", "Alternative Logins" => "כניסות אלטרנטיביות", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "שלום,<br><br>רצינו לעדכן כי %s שיתף/שיתפה איתך את »%s«.<br><a href=\"%s\">לצפיה</a><br><br>יום טוב!", "Updating ownCloud to version %s, this may take a while." => "מעדכן את ownCloud אל גרסא %s, זה עלול לקחת זמן מה." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/hi.php b/core/l10n/hi.php index e783ec88d1771ac29f05ef076e53f64e7cf1909e..ec9381c787d48cdb3ab7ffb0041f3e6b0c9e3a12 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -36,6 +36,7 @@ $TRANSLATIONS = array( "No people found" => "कोई व्यक्ति नहीं मिले ", "Sending ..." => "भेजा जा रहा है", "Email sent" => "ईमेल भेज दिया गया है ", +"Warning" => "चेतावनी ", "Use the following link to reset your password: {link}" => "आगे दिये गये लिंक का उपयोग पासवर्ड बदलने के लिये किजीये: {link}", "You will receive a link to reset your password via Email." => "पासवर्ड बदलने कि लिंक आपको ई-मेल द्वारा भेजी जायेगी|", "Username" => "प्रयोक्ता का नाम", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 107a5f04c05dd2a7dfb5fa2bead82dcd12622e89..2cc473a9c01695a75ac56ac11d1336036ec81da7 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -103,6 +103,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Nem sikerült a lejárati időt beállítani", "Sending ..." => "Küldés ...", "Email sent" => "Az emailt elküldtük", +"Warning" => "Figyelmeztetés", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "A frissítés nem sikerült. Kérem értesítse erről a problémáról az <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud közösséget</a>.", "The update was successful. Redirecting you to ownCloud now." => "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz.", "%s password reset" => "%s jelszó visszaállítás", @@ -125,7 +126,6 @@ $TRANSLATIONS = array( "Help" => "Súgó", "Access forbidden" => "A hozzáférés nem engedélyezett", "Cloud not found" => "A felhő nem található", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Üdv!\n\nÚj hír: %s megosztotta Önnel ezt: %s.\nItt nézhető meg: %s\n\nMinden jót!", "Edit categories" => "Kategóriák szerkesztése", "Add" => "Hozzáadás", "Security Warning" => "Biztonsági figyelmeztetés", @@ -155,7 +155,6 @@ $TRANSLATIONS = array( "remember" => "emlékezzen", "Log in" => "Bejelentkezés", "Alternative Logins" => "Alternatív bejelentkezés", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Üdv!<br><br>Új hír: %s megosztotta Önnel ezt: »%s«.<br><a href=\"%s\">Itt nézhető meg!</a><br><br>Minden jót!", "Updating ownCloud to version %s, this may take a while." => "Owncloud frissítés a %s verzióra folyamatban. Kis türelmet." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/id.php b/core/l10n/id.php index 69993d440559660065600969dbd4ecbe10f99ef9..2b987eecd84451a8c23fe067e8ba6248330aaa8a 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -81,6 +81,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Galat ketika menyetel tanggal kedaluwarsa", "Sending ..." => "Mengirim ...", "Email sent" => "Email terkirim", +"Warning" => "Peringatan", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Pembaruan gagal. Silakan laporkan masalah ini ke <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">komunitas ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "Pembaruan sukses. Anda akan diarahkan ulang ke ownCloud.", "Use the following link to reset your password: {link}" => "Gunakan tautan berikut untuk menyetel ulang sandi Anda: {link}", diff --git a/core/l10n/is.php b/core/l10n/is.php index 729aaa4c9e6beb158d413c278dc2ec2dff5772d0..f72b7290b8f31d50d49107452880148624d3a8a8 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -79,6 +79,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Villa við að setja gildistíma", "Sending ..." => "Sendi ...", "Email sent" => "Tölvupóstur sendur", +"Warning" => "Aðvörun", "The update was successful. Redirecting you to ownCloud now." => "Uppfærslan heppnaðist. Beini þér til ownCloud nú.", "Use the following link to reset your password: {link}" => "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}", "You will receive a link to reset your password via Email." => "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið.", diff --git a/core/l10n/it.php b/core/l10n/it.php index bd2fad79c87e0ca659b765f8e13257530b68e669..0b2d3768b0c8a386f5af1d905a901120dfb5f82e 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "%s shared »%s« with you" => "%s ha condiviso «%s» con te", +"Couldn't send mail to following users: %s " => "Impossibile inviare email ai seguenti utenti: %s", "group" => "gruppo", "Turned on maintenance mode" => "Modalità di manutenzione attivata", "Turned off maintenance mode" => "Modalità di manutenzione disattivata", @@ -92,6 +93,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "La ri-condivisione non è consentita", "Shared in {item} with {user}" => "Condiviso in {item} con {user}", "Unshare" => "Rimuovi condivisione", +"notify user by email" => "notifica l'utente tramite email", "can edit" => "può modificare", "access control" => "controllo d'accesso", "create" => "creare", @@ -103,6 +105,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Errore durante l'impostazione della data di scadenza", "Sending ..." => "Invio in corso...", "Email sent" => "Messaggio inviato", +"Warning" => "Avviso", "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", @@ -125,7 +128,9 @@ $TRANSLATIONS = array( "Help" => "Aiuto", "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\nCheers!" => "Ehilà,\n\nvolevo solamente farti sapere che %s ha condiviso %s con te.\nGuarda: %s\n\nSaluti!", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ciao,\n\nvolevo informarti che %s ha condiviso %s con te.\nVedi: %s\n\n", +"The share will expire on %s.\n\n" => "La condivisione scadrà il %s.\n\n", +"Cheers!" => "Saluti!", "Edit categories" => "Modifica categorie", "Add" => "Aggiungi", "Security Warning" => "Avviso di sicurezza", @@ -146,6 +151,7 @@ $TRANSLATIONS = array( "Database tablespace" => "Spazio delle tabelle del database", "Database host" => "Host del database", "Finish setup" => "Termina la configurazione", +"Finishing …" => "Completamento...", "%s is available. Get more information on how to update." => "%s è disponibile. Ottieni ulteriori informazioni sull'aggiornamento.", "Log out" => "Esci", "Automatic logon rejected!" => "Accesso automatico rifiutato.", @@ -155,7 +161,8 @@ $TRANSLATIONS = array( "remember" => "ricorda", "Log in" => "Accedi", "Alternative Logins" => "Accessi alternativi", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Ehilà,<br><br>volevo solamente farti sapere che %s ha condiviso «%s» con te.<br><a href=\"%s\">Guarda!</a><br><br>Saluti!", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Ciao,<br><br>volevo informarti che %s ha condiviso %s con te.<br><a href=\"%s\">Vedi!</a><br><br>", +"The share will expire on %s.<br><br>" => "La condivisione scadrà il %s.<br><br>", "Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, ciò potrebbe richiedere del tempo." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 110e5b2120106280453aa1e8ca29e062de747649..bf8313f7176c616ad6853f1133c12080495d13ae 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -103,6 +103,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "有効期限の設定でエラー発生", "Sending ..." => "送信中...", "Email sent" => "メールを送信しました", +"Warning" => "警告", "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 パスワードリセット", @@ -125,7 +126,6 @@ $TRANSLATIONS = array( "Help" => "ヘルプ", "Access forbidden" => "アクセスが禁止されています", "Cloud not found" => "見つかりません", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n\nそれでは。", "Edit categories" => "カテゴリを編集", "Add" => "追加", "Security Warning" => "セキュリティ警告", @@ -155,7 +155,6 @@ $TRANSLATIONS = array( "remember" => "パスワードを記憶する", "Log in" => "ログイン", "Alternative Logins" => "代替ログイン", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "こんにちは、<br><br>%sがあなたと »%s« を共有したことをお知らせします。<br><a href=\"%s\">それを表示</a><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/ka_GE.php b/core/l10n/ka_GE.php index e051f9ce1d208df3d78cc7e54f3ebc8d40b72f5f..a32960e1a239f03d60784aaab6cf53fbc272010b 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -81,6 +81,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "შეცდომა ვადის გასვლის მითითების დროს", "Sending ..." => "გაგზავნა ....", "Email sent" => "იმეილი გაიგზავნა", +"Warning" => "გაფრთხილება", "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–ზე.", "Use the following link to reset your password: {link}" => "გამოიყენე შემდეგი ლინკი პაროლის შესაცვლელად: {link}", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 947f5e9ee26492fb4d4a071921407d12a3df99d9..92c7b96f01ccc7c7bada0c84a37ffe38e2e21afb 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -82,6 +82,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "만료 날짜 설정 오류", "Sending ..." => "전송 중...", "Email sent" => "이메일 발송됨", +"Warning" => "경고", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "업데이트가 실패하였습니다. 이 문제를 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud 커뮤니티</a>에 보고해 주십시오.", "The update was successful. Redirecting you to ownCloud now." => "업데이트가 성공하였습니다. ownCloud로 돌아갑니다.", "Use the following link to reset your password: {link}" => "다음 링크를 사용하여 암호를 재설정할 수 있습니다: {link}", diff --git a/core/l10n/ku_IQ.php b/core/l10n/ku_IQ.php index 2feb6db272318fe7e6a9187fdb042858a1edf1a4..e11cf0b5a9648234c26b18e2ca15c7800c8928b8 100644 --- a/core/l10n/ku_IQ.php +++ b/core/l10n/ku_IQ.php @@ -9,6 +9,7 @@ $TRANSLATIONS = array( "Error" => "ههڵه", "Share" => "هاوبەشی کردن", "Password" => "وشەی تێپەربو", +"Warning" => "ئاگاداری", "Username" => "ناوی بهکارهێنهر", "New password" => "وشەی نهێنی نوێ", "Reset password" => "دووباره كردنهوهی وشهی نهێنی", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 9e127d867c68b8128690fc1d707c1838a0c48c19..17e4345ad518a1c98a7593fb858a84e9d0d79b77 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -83,6 +83,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Feeler beim Setze vum Verfallsdatum", "Sending ..." => "Gëtt geschéckt...", "Email sent" => "Email geschéckt", +"Warning" => "Warnung", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Den Update war net erfollegräich. Mell dëse Problem w.e.gl der<a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud-Community</a>.", "The update was successful. Redirecting you to ownCloud now." => "Den Update war erfollegräich. Du gëss elo bei d'ownCloud ëmgeleet.", "Use the following link to reset your password: {link}" => "Benotz folgende Link fir däi Passwuert zréckzesetzen: {link}", @@ -104,7 +105,6 @@ $TRANSLATIONS = array( "Help" => "Hëllef", "Access forbidden" => "Zougrëff net erlaabt", "Cloud not found" => "Cloud net fonnt", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo,\n\nech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.\nKucken: %s\n\nE schéine Bonjour!", "Edit categories" => "Kategorien editéieren", "Add" => "Dobäisetzen", "Security Warning" => "Sécherheets-Warnung", @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "remember" => "verhalen", "Log in" => "Umellen", "Alternative Logins" => "Alternativ Umeldungen", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hallo,<br><br>ech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.<br><a href=\"%s\">Kucken!</a><br><br>E schéine Bonjour!", "Updating ownCloud to version %s, this may take a while." => "ownCloud gëtt op d'Versioun %s aktualiséiert, dat kéint e Moment daueren." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 610e7aeadebcfebe3a2b3184c97649b6c57ff39d..f25b8ab762fb9708d43f7ad2cb0bf3564003b861 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "%s shared »%s« with you" => "%s pasidalino »%s« su tavimi", +"Couldn't send mail to following users: %s " => "Nepavyko nusiųsti el. pašto šiems naudotojams: %s ", "group" => "grupė", "Turned on maintenance mode" => "Įjungta priežiūros veiksena", "Turned off maintenance mode" => "Išjungta priežiūros veiksena", @@ -92,6 +93,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Dalijinasis išnaujo negalimas", "Shared in {item} with {user}" => "Pasidalino {item} su {user}", "Unshare" => "Nebesidalinti", +"notify user by email" => "informuoti naudotoją el. paštu", "can edit" => "gali redaguoti", "access control" => "priėjimo kontrolė", "create" => "sukurti", @@ -103,6 +105,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Klaida nustatant galiojimo laiką", "Sending ..." => "Siunčiama...", "Email sent" => "Laiškas išsiųstas", +"Warning" => "Įspėjimas", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud bendruomenei</a>.", "The update was successful. Redirecting you to ownCloud now." => "Atnaujinimas buvo sėkmingas. Nukreipiame į jūsų ownCloud.", "%s password reset" => "%s slaptažodžio atnaujinimas", @@ -125,7 +128,9 @@ $TRANSLATIONS = array( "Help" => "Pagalba", "Access forbidden" => "Priėjimas draudžiamas", "Cloud not found" => "Negalima rasti", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Labas,\n\nInformuojame, kad %s pasidalino su Jumis %s.\nPažiūrėkite: %s\n\nLinkėjimai!", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Labas,\n\nInformuojame, kad %s pasidalino su Jumis %s.\nPažiūrėti tai: %s\n", +"The share will expire on %s.\n\n" => "Bendrinimo laikas baigsis %s.\n", +"Cheers!" => "Sveikinimai!", "Edit categories" => "Redaguoti kategorijas", "Add" => "Pridėti", "Security Warning" => "Saugumo pranešimas", @@ -146,6 +151,7 @@ $TRANSLATIONS = array( "Database tablespace" => "Duomenų bazės loginis saugojimas", "Database host" => "Duomenų bazės serveris", "Finish setup" => "Baigti diegimą", +"Finishing …" => "Baigiama ...", "%s is available. Get more information on how to update." => "%s yra prieinama. Gaukite daugiau informacijos apie atnaujinimą.", "Log out" => "Atsijungti", "Automatic logon rejected!" => "Automatinis prisijungimas atmestas!", @@ -155,7 +161,8 @@ $TRANSLATIONS = array( "remember" => "prisiminti", "Log in" => "Prisijungti", "Alternative Logins" => "Alternatyvūs prisijungimai", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Labas,<br><br>tik informuojame, kad %s pasidalino su Jumis »%s«.<br><a href=\"%s\">Peržiūrėk!</a><br><br>Linkėjimai!", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Labas,<br><br>tik informuojame, kad %s pasidalino su Jumis »%s«.<br><a href=\"%s\">Peržiūrėk!</a><br><br>", +"The share will expire on %s.<br><br>" => "Bendrinimo laikas baigsis %s.<br><br>", "Updating ownCloud to version %s, this may take a while." => "Atnaujinama ownCloud į %s versiją. tai gali šiek tiek užtrukti." ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 6bdbeaf5e209e3e2b1e0c40ce05ab2aeed744267..998a03c5dd120696a9489d06cca6ce862147c893 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -83,6 +83,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Kļūda, iestatot termiņa datumu", "Sending ..." => "Sūta...", "Email sent" => "Vēstule nosūtīta", +"Warning" => "Brīdinājums", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Atjaunināšana beidzās nesekmīgi. Lūdzu, ziņojiet par šo problēmu <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud kopienai</a>.", "The update was successful. Redirecting you to ownCloud now." => "Atjaunināšana beidzās sekmīgi. Tagad pārsūta jūs uz ownCloud.", "%s password reset" => "%s paroles maiņa", @@ -105,7 +106,6 @@ $TRANSLATIONS = array( "Help" => "Palīdzība", "Access forbidden" => "Pieeja ir liegta", "Cloud not found" => "Mākonis netika atrasts", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Sveiks,\nTikai daru tev zināmu ka %s dalās %s ar tevi.\nApskati to: %s\n\nJaukiņi Labiņi!", "Edit categories" => "Rediģēt kategoriju", "Add" => "Pievienot", "Security Warning" => "Brīdinājums par drošību", @@ -135,7 +135,6 @@ $TRANSLATIONS = array( "remember" => "atcerēties", "Log in" => "Ierakstīties", "Alternative Logins" => "Alternatīvās pieteikšanās", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Sveiks,<br><br>Tikai daru tev zināmu ka %s dalās %s ar tevi.<br><a href=\"%s\">Apskati to!</a><br><br>Jaukiņi Labiņi!", "Updating ownCloud to version %s, this may take a while." => "Atjaunina ownCloud uz versiju %s. Tas var aizņemt kādu laiciņu." ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/core/l10n/mk.php b/core/l10n/mk.php index 1c998bb636a9ffed923cc8d8c3f32ddcd9d68258..dffd20ab3bba2fb109e0dbc70b4d2d2708658193 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -79,6 +79,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Грешка при поставување на рок на траење", "Sending ..." => "Праќање...", "Email sent" => "Е-порака пратена", +"Warning" => "Предупредување", "Use the following link to reset your password: {link}" => "Користете ја следната врска да ја ресетирате Вашата лозинка: {link}", "You will receive a link to reset your password via Email." => "Ќе добиете врска по е-пошта за да може да ја ресетирате Вашата лозинка.", "Username" => "Корисничко име", diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 5aea25a3fd40d1a437d20c4e1d8c50d87c9d3e59..cac2dbff2a24bd56b68b53966a6f2847b38294ed 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -34,6 +34,7 @@ $TRANSLATIONS = array( "Error" => "Ralat", "Share" => "Kongsi", "Password" => "Kata laluan", +"Warning" => "Amaran", "Use the following link to reset your password: {link}" => "Guna pautan berikut untuk menetapkan semula kata laluan anda: {link}", "You will receive a link to reset your password via Email." => "Anda akan menerima pautan untuk menetapkan semula kata laluan anda melalui emel", "Username" => "Nama pengguna", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 01dec8855743dcc8ae57e9e1c9b52404b4208961..a252642678a3204fbacda77bb77459c519ad530c 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Kan ikke sette utløpsdato", "Sending ..." => "Sender...", "Email sent" => "E-post sendt", +"Warning" => "Advarsel", "Use the following link to reset your password: {link}" => "Bruk følgende lenke for å tilbakestille passordet ditt: {link}", "You will receive a link to reset your password via Email." => "Du burde motta detaljer om å tilbakestille passordet ditt via epost.", "Username" => "Brukernavn", @@ -82,7 +83,6 @@ $TRANSLATIONS = array( "Help" => "Hjelp", "Access forbidden" => "Tilgang nektet", "Cloud not found" => "Sky ikke funnet", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hei der.⏎\n⏎\nVille bare gjøre deg oppmerksom på at %s delte %s med deg.⏎\nVis den: %s⏎\n⏎\nVI ses!", "Edit categories" => "Rediger kategorier", "Add" => "Legg til", "Security Warning" => "Sikkerhetsadvarsel", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 3dcdeaedec243af7ae09404f4161464fd1db9e3e..fe8ec482e3b6c270d8b4c41bfdfdcb46888c01b4 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -96,6 +96,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Fout tijdens het instellen van de vervaldatum", "Sending ..." => "Versturen ...", "Email sent" => "E-mail verzonden", +"Warning" => "Waarschuwing", "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,7 +119,6 @@ $TRANSLATIONS = array( "Help" => "Help", "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\nCheers!" => "Hallo daar,\n\n%s deelde %s met jou.\nBekijk: %s\n\nVeel plezier!", "Edit categories" => "Wijzig categorieën", "Add" => "Toevoegen", "Security Warning" => "Beveiligingswaarschuwing", @@ -148,7 +148,6 @@ $TRANSLATIONS = array( "remember" => "onthoud gegevens", "Log in" => "Meld je aan", "Alternative Logins" => "Alternatieve inlogs", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hallo daar,<br><br> %s deelde »%s« met jou.<br><a href=\"%s\">Bekijk!</a><br><br>Veel plezier!", "Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren..." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index d596605dbcd4c10bacea5c647be200592b379c65..6dff2e63742a26c12b5082c2cb22fe11e20311b1 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -103,6 +103,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Klarte ikkje setja utløpsdato", "Sending ..." => "Sender …", "Email sent" => "E-post sendt", +"Warning" => "Åtvaring", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Oppdateringa feila. Ver venleg og rapporter feilen til <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud-fellesskapet</a>.", "The update was successful. Redirecting you to ownCloud now." => "Oppdateringa er fullført. Sender deg vidare til ownCloud no.", "%s password reset" => "%s passordnullstilling", @@ -125,7 +126,6 @@ $TRANSLATIONS = array( "Help" => "Hjelp", "Access forbidden" => "Tilgang forbudt", "Cloud not found" => "Fann ikkje skyen", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hei der,\n\nnemner berre at %s delte %s med deg.\nSjå det her: %s\n\nMe talast!", "Edit categories" => "Endra kategoriar", "Add" => "Legg til", "Security Warning" => "Tryggleiksåtvaring", @@ -155,7 +155,6 @@ $TRANSLATIONS = array( "remember" => "hugs", "Log in" => "Logg inn", "Alternative Logins" => "Alternative innloggingar", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hei der,<br><br>nemner berre at %s delte «%s» med deg.<br><a href=\"%s\">Sjå det!</a><br><br>Me talast!<", "Updating ownCloud to version %s, this may take a while." => "Oppdaterer ownCloud til utgåve %s, dette kan ta ei stund." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/pa.php b/core/l10n/pa.php index c8078d06c73149a17a2995a62b66cde1bb33c3b0..156c6dbac145a41ca623c88a0df4e97c5d0079a8 100644 --- a/core/l10n/pa.php +++ b/core/l10n/pa.php @@ -41,6 +41,7 @@ $TRANSLATIONS = array( "Share" => "ਸਾਂਝਾ ਕਰੋ", "Password" => "ਪਾਸਵਰ", "Send" => "ਭੇਜੋ", +"Warning" => "ਚੇਤਾਵਨੀ", "Username" => "ਯੂਜ਼ਰ-ਨਾਂ", "Security Warning" => "ਸੁਰੱਖਿਆ ਚੇਤਾਵਨੀ" ); diff --git a/core/l10n/pl.php b/core/l10n/pl.php index ad467fe100ea0198e5c1f38712662d9dad420b24..5d60f5d3aa7e993dbed24f7adaadc5757d2ab82d 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -95,6 +95,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Błąd podczas ustawiania daty wygaśnięcia", "Sending ..." => "Wysyłanie...", "Email sent" => "E-mail wysłany", +"Warning" => "Ostrzeżenie", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">spoleczności ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "Aktualizacji zakończyła się powodzeniem. Przekierowuję do ownCloud.", "%s password reset" => "%s reset hasła", @@ -117,7 +118,6 @@ $TRANSLATIONS = array( "Help" => "Pomoc", "Access forbidden" => "Dostęp zabroniony", "Cloud not found" => "Nie odnaleziono chmury", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Cześć,\n\nInformuję cię że %s udostępnia ci %s.\nZobacz na: %s\n\nPozdrawiam!", "Edit categories" => "Edytuj kategorie", "Add" => "Dodaj", "Security Warning" => "Ostrzeżenie o zabezpieczeniach", @@ -147,7 +147,6 @@ $TRANSLATIONS = array( "remember" => "pamiętaj", "Log in" => "Zaloguj", "Alternative Logins" => "Alternatywne loginy", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Cześć,<br><br>Informuję cię że %s udostępnia ci »%s«.\n<br><a href=\"%s\">Zobacz</a><br><br>Pozdrawiam!", "Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s. Może to trochę potrwać." ); $PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 5f8903a8ff5071779af5b8fb24f0f6afac6066cb..fc43814ae00601e3832faa80582aa8c0f1109c2e 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "%s shared »%s« with you" => "%s compartilhou »%s« com você", +"Couldn't send mail to following users: %s " => "Não foi possível enviar e-mail para os seguintes usuários: %s", "group" => "grupo", "Turned on maintenance mode" => "Ativar modo de manutenção", "Turned off maintenance mode" => "Desligar o modo de manutenção", @@ -92,6 +93,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Não é permitido re-compartilhar", "Shared in {item} with {user}" => "Compartilhado em {item} com {user}", "Unshare" => "Descompartilhar", +"notify user by email" => "notificar usuário por email", "can edit" => "pode editar", "access control" => "controle de acesso", "create" => "criar", @@ -103,6 +105,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Erro ao definir data de expiração", "Sending ..." => "Enviando ...", "Email sent" => "E-mail enviado", +"Warning" => "Aviso", "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", @@ -125,7 +128,9 @@ $TRANSLATIONS = array( "Help" => "Ajuda", "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\nCheers!" => "Olá,\n\napenas para você saber que %s compartilhou %s com você.\nVeja: %s\n\nAbraços!", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Olá,\n\ngostaria que você soubesse que %s compartilhou %s com vecê.\nVeja isto: %s\n\n", +"The share will expire on %s.\n\n" => "O compartilhamento irá expirer em %s.\n\n", +"Cheers!" => "Saúde!", "Edit categories" => "Editar categorias", "Add" => "Adicionar", "Security Warning" => "Aviso de Segurança", @@ -146,6 +151,7 @@ $TRANSLATIONS = array( "Database tablespace" => "Espaço de tabela do banco de dados", "Database host" => "Host do banco de dados", "Finish setup" => "Concluir configuração", +"Finishing …" => "Finalizando ...", "%s is available. Get more information on how to update." => "%s está disponível. Obtenha mais informações sobre como atualizar.", "Log out" => "Sair", "Automatic logon rejected!" => "Entrada Automática no Sistema Rejeitada!", @@ -155,7 +161,8 @@ $TRANSLATIONS = array( "remember" => "lembrar", "Log in" => "Fazer login", "Alternative Logins" => "Logins alternativos", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Olá,<br><br>apenas para você saber que %s compartilhou %s com você.<br><a href=\"%s\">Veja: </a><br><br>Abraços!", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Olá,<br><br>só gostaria que você soubesse que %s compartilhou »%s« com você.<br><a href=\"%s\">Veja isto!</a><br><br", +"The share will expire on %s.<br><br>" => "O compartilhamento irá expirar em %s.<br><br>", "Updating ownCloud to version %s, this may take a while." => "Atualizando ownCloud para a versão %s, isto pode levar algum tempo." ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 977d8e38cb27536e25a2f74c60f3c71c7fef23da..fd504421199f2e3d35c7b6c71442506c3d654224 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -94,6 +94,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Erro ao aplicar a data de expiração", "Sending ..." => "A Enviar...", "Email sent" => "E-mail enviado", +"Warning" => "Aviso", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "A actualização falhou. Por favor reporte este incidente seguindo este link <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>.", "The update was successful. Redirecting you to ownCloud now." => "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora.", "%s password reset" => "%s reposição da password", @@ -116,7 +117,6 @@ $TRANSLATIONS = array( "Help" => "Ajuda", "Access forbidden" => "Acesso interdito", "Cloud not found" => "Cloud nao encontrada", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Olá,\n\nApenas para lhe informar que %s partilhou %s consigo.\nVeja-o: %s\n\nCumprimentos!", "Edit categories" => "Editar categorias", "Add" => "Adicionar", "Security Warning" => "Aviso de Segurança", @@ -146,7 +146,6 @@ $TRANSLATIONS = array( "remember" => "lembrar", "Log in" => "Entrar", "Alternative Logins" => "Contas de acesso alternativas", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Olá,<br><br>Apenas para lhe informar que %s partilhou »%s« consigo.<br><a href=\"%s\">Consulte-o aqui!</a><br><br>Cumprimentos!", "Updating ownCloud to version %s, this may take a while." => "A actualizar o ownCloud para a versão %s, esta operação pode demorar." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 12fbfa5f0ca4a0bc609a3fa262ada234e8db6560..73350011f1e937acd753f2154250ab1fc0ca3b1d 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -90,6 +90,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Eroare la specificarea datei de expirare", "Sending ..." => "Se expediază...", "Email sent" => "Mesajul a fost expediat", +"Warning" => "Atenție", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Actualizarea a eșuat! Raportați problema către <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">comunitatea ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "Actualizare reușită. Ești redirecționat către ownCloud.", "Use the following link to reset your password: {link}" => "Folosește următorul link pentru a reseta parola: {link}", @@ -111,7 +112,6 @@ $TRANSLATIONS = array( "Help" => "Ajutor", "Access forbidden" => "Acces restricționat", "Cloud not found" => "Nu s-a găsit", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Salutare,\n\nVă aduc la cunoștință că %s a partajat %s cu tine.\nAccesează la: %s\n\nNumai bine!", "Edit categories" => "Editează categorii", "Add" => "Adaugă", "Security Warning" => "Avertisment de securitate", @@ -141,7 +141,6 @@ $TRANSLATIONS = array( "remember" => "amintește", "Log in" => "Autentificare", "Alternative Logins" => "Conectări alternative", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Salutare, <br><br>Vă aduc la cunoștință că %s a partajat %s cu tine.<br><a href=\"%s\">Accesează-l!</a><br><br>Numai bine!", "Updating ownCloud to version %s, this may take a while." => "Actualizăm ownCloud la versiunea %s, aceasta poate dura câteva momente." ); $PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 1b3133a1a6f002ec85bfd565630020f1f1ba4f34..5cfd013850e252adc373ad383a0951e5f5256a6d 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -103,6 +103,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Ошибка при установке срока доступа", "Sending ..." => "Отправляется ...", "Email sent" => "Письмо отправлено", +"Warning" => "Предупреждение", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "При обновлении произошла ошибка. Пожалуйста сообщите об этом в <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud сообщество</a>.", "The update was successful. Redirecting you to ownCloud now." => "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud...", "%s password reset" => "%s сброс пароля", @@ -121,11 +122,10 @@ $TRANSLATIONS = array( "Personal" => "Личное", "Users" => "Пользователи", "Apps" => "Приложения", -"Admin" => "Admin", +"Admin" => "Админпанель", "Help" => "Помощь", "Access forbidden" => "Доступ запрещён", "Cloud not found" => "Облако не найдено", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Приветствую,⏎\n⏎\nпросто даю знать, что %s поделился %s с вами.⏎\nПосмотреть: %s⏎\n⏎\nУдачи!", "Edit categories" => "Редактировать категрии", "Add" => "Добавить", "Security Warning" => "Предупреждение безопасности", @@ -155,7 +155,6 @@ $TRANSLATIONS = array( "remember" => "запомнить", "Log in" => "Войти", "Alternative Logins" => "Альтернативные имена пользователя", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Приветствую,<br><br>просто даю знать, что %s поделился »%s« с вами.<br><a href=\"%s\">Посмотреть!</a><br><br>Удачи!", "Updating ownCloud to version %s, this may take a while." => "Идёт обновление ownCloud до версии %s. Это может занять некоторое время." ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index 2d922657ea0a84274fd22ff4bd4c9e4717f341f3..065604425bd13c6b4febb24b43563b7a8181c2a8 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -58,6 +58,7 @@ $TRANSLATIONS = array( "Password protected" => "මුර පදයකින් ආරක්ශාකර ඇත", "Error unsetting expiration date" => "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්", "Error setting expiration date" => "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්", +"Warning" => "අවවාදය", "You will receive a link to reset your password via Email." => "ඔබගේ මුරපදය ප්රත්යාරම්භ කිරීම සඳහා යොමුව විද්යුත් තැපෑලෙන් ලැබෙනු ඇත", "Username" => "පරිශීලක නම", "Your password was reset" => "ඔබේ මුරපදය ප්රත්යාරම්භ කරන ලදී", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index ac45947459b2d329c94ca7ba8f7b7de55fcfb9fe..b4bcaac8ae0297d5634c089dcebb3f1a3924e2e7 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -89,6 +89,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Chyba pri nastavení dátumu expirácie", "Sending ..." => "Odosielam ...", "Email sent" => "Email odoslaný", +"Warning" => "Varovanie", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Aktualizácia nebola úspešná. Problém nahláste na <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>.", "The update was successful. Redirecting you to ownCloud now." => "Aktualizácia bola úspešná. Presmerovávam na prihlasovaciu stránku.", "%s password reset" => "reset hesla %s", @@ -111,7 +112,6 @@ $TRANSLATIONS = array( "Help" => "Pomoc", "Access forbidden" => "Prístup odmietnutý", "Cloud not found" => "Nenájdené", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ahoj,\n\nChcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu: %s\n\nVďaka", "Edit categories" => "Upraviť kategórie", "Add" => "Pridať", "Security Warning" => "Bezpečnostné varovanie", @@ -141,7 +141,6 @@ $TRANSLATIONS = array( "remember" => "zapamätať", "Log in" => "Prihlásiť sa", "Alternative Logins" => "Alternatívne prihlasovanie", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Ahoj,<br><br>chcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu: <br><a href=\"%s\">zde</a>.<br><br>Vďaka", "Updating ownCloud to version %s, this may take a while." => "Aktualizujem ownCloud na verziu %s, môže to chvíľu trvať." ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 84cd83fa2f3700e86afc1051670476e9b5d12478..e858284de53cd8f6fae7944102ba86df60fe2897 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -83,6 +83,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Napaka med nastavljanjem datuma preteka", "Sending ..." => "Pošiljanje ...", "Email sent" => "Elektronska pošta je poslana", +"Warning" => "Opozorilo", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownCloud.", "Use the following link to reset your password: {link}" => "Za ponastavitev gesla uporabite povezavo: {link}", @@ -104,7 +105,6 @@ $TRANSLATIONS = array( "Help" => "Pomoč", "Access forbidden" => "Dostop je prepovedan", "Cloud not found" => "Oblaka ni mogoče najti", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Pozdravljen/a,⏎\n⏎\nsporočam, da je %s delil %s s teboj.⏎\nPoglej na: %s⏎\n⏎\nLep pozdrav!", "Edit categories" => "Uredi kategorije", "Add" => "Dodaj", "Security Warning" => "Varnostno opozorilo", @@ -134,7 +134,6 @@ $TRANSLATIONS = array( "remember" => "zapomni si", "Log in" => "Prijava", "Alternative Logins" => "Druge prijavne možnosti", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Pozdravljen/a,<br><br>sporočam, da je %s delil »%s« s teboj.<br><a href=\"%s\">Poglej vsebine!</a><br><br>Lep pozdrav!", "Updating ownCloud to version %s, this may take a while." => "Posodabljanje sistema ownCloud na različico %s je lahko dolgotrajno." ); $PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/core/l10n/sq.php b/core/l10n/sq.php index e0fde3f1297bef7a7f25b2b48e7eca307d0ba856..2d9649a64834076bb05e66215835c38bf1c20791 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -111,7 +111,6 @@ $TRANSLATIONS = array( "Help" => "Ndihmë", "Access forbidden" => "Ndalohet hyrja", "Cloud not found" => "Cloud-i nuk u gjet", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Tungjatjeta,\n\nju njoftojmë që %s ka ndarë %s me ju.\nShikojeni: %s\n\nPëshëndetje!", "Edit categories" => "Ndrysho kategoritë", "Add" => "Shto", "Security Warning" => "Paralajmërim sigurie", @@ -141,7 +140,6 @@ $TRANSLATIONS = array( "remember" => "kujto", "Log in" => "Hyrje", "Alternative Logins" => "Hyrje alternative", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Tungjatjeta,<br><br>duam t'ju njoftojmë që %s ka ndarë »%s« me ju.<br><a href=\"%s\">Shikojeni!</a><br><br>Përshëndetje!", "Updating ownCloud to version %s, this may take a while." => "Po azhurnoj ownCloud-in me versionin %s. Mund të zgjasi pak." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 064984cca5f26d93460040f6253a17ee9a8451c0..666223c6cba2102f27237be515d54235d0c85d71 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -78,6 +78,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Грешка код постављања датума истека", "Sending ..." => "Шаљем...", "Email sent" => "Порука је послата", +"Warning" => "Упозорење", "Use the following link to reset your password: {link}" => "Овом везом ресетујте своју лозинку: {link}", "You will receive a link to reset your password via Email." => "Добићете везу за ресетовање лозинке путем е-поште.", "Username" => "Корисничко име", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 0ea3259df68ada7ac7e18179dd8748df8308fd2a..299365374182cc0fd8da8581eb1122ed34f56c8e 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -103,6 +103,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Fel vid sättning av utgångsdatum", "Sending ..." => "Skickar ...", "Email sent" => "E-post skickat", +"Warning" => "Varning", "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>.", "The update was successful. Redirecting you to ownCloud now." => "Uppdateringen lyckades. Du omdirigeras nu till OwnCloud.", "%s password reset" => "%s återställ lösenord", @@ -125,7 +126,6 @@ $TRANSLATIONS = array( "Help" => "Hjälp", "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\nCheers!" => "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\nVi hörs!", "Edit categories" => "Editera kategorier", "Add" => "Lägg till", "Security Warning" => "Säkerhetsvarning", @@ -155,7 +155,6 @@ $TRANSLATIONS = array( "remember" => "kom ihåg", "Log in" => "Logga in", "Alternative Logins" => "Alternativa inloggningar", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hej där,<br><br>ville bara informera dig om att %s delade »%s« med dig.<br><a href=\"%s\">Titta på den!</a><br><br>Hörs!", "Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 43c7f451e499f7c47c33597483b6433e335ef9b1..1756d22c7884a7a2d5a7474710a5c46d7a7e7ece 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -75,6 +75,7 @@ $TRANSLATIONS = array( "Password protected" => "கடவுச்சொல் பாதுகாக்கப்பட்டது", "Error unsetting expiration date" => "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு", "Error setting expiration date" => "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு", +"Warning" => "எச்சரிக்கை", "Use the following link to reset your password: {link}" => "உங்கள் கடவுச்சொல்லை மீளமைக்க பின்வரும் இணைப்பை பயன்படுத்தவும் : {இணைப்பு}", "You will receive a link to reset your password via Email." => "நீங்கள் மின்னஞ்சல் மூலம் உங்களுடைய கடவுச்சொல்லை மீளமைப்பதற்கான இணைப்பை பெறுவீர்கள். ", "Username" => "பயனாளர் பெயர்", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 8eab771822d3d0071d21b86b4cf01e763143b78a..c6c0e94a32e945ca9395977feb68d95da017fe18 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -80,6 +80,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ", "Sending ..." => "กำลังส่ง...", "Email sent" => "ส่งอีเมล์แล้ว", +"Warning" => "คำเตือน", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "การอัพเดทไม่เป็นผลสำเร็จ กรุณาแจ้งปัญหาที่เกิดขึ้นไปยัง <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">คอมมูนิตี้ผู้ใช้งาน ownCloud</a>", "The update was successful. Redirecting you to ownCloud now." => "การอัพเดทเสร็จเรียบร้อยแล้ว กำลังเปลี่ยนเส้นทางไปที่ ownCloud อยู่ในขณะนี้", "Use the following link to reset your password: {link}" => "ใช้ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่านของคุณใหม่: {link}", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index d8d9709949c9ad137bcb4a3e1ae6cc3b48db1a95..57603895c94faebaa95aeb97307eeb5f805a5fed 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -89,6 +89,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Geçerlilik tarihi tanımlama hatası", "Sending ..." => "Gönderiliyor...", "Email sent" => "Eposta gönderildi", +"Warning" => "Uyarı", "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", @@ -111,7 +112,6 @@ $TRANSLATIONS = array( "Help" => "Yardım", "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\nCheers!" => "Merhaba\n\n%s sizinle %s dosyasını paylaştığı\nPaylaşımı gör:%s\n\nİyi günler!", "Edit categories" => "Kategorileri düzenle", "Add" => "Ekle", "Security Warning" => "Güvenlik Uyarisi", @@ -141,7 +141,6 @@ $TRANSLATIONS = array( "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>Cheers!" => "Merhaba, <br><br> %s sizinle »%s« paylaşımında bulundu.<br><a href=\"%s\">Paylaşımı gör!</a><br><br>İyi günler!", "Updating ownCloud to version %s, this may take a while." => "Owncloud %s versiyonuna güncelleniyor. Biraz zaman alabilir." ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/core/l10n/ug.php b/core/l10n/ug.php index 36023cb165338e4d80aa6818f366987e683573d0..621c45d4d0aae7c94b208151a1ec0ebfdc3e74fd 100644 --- a/core/l10n/ug.php +++ b/core/l10n/ug.php @@ -40,6 +40,7 @@ $TRANSLATIONS = array( "Unshare" => "ھەمبەھىرلىمە", "delete" => "ئۆچۈر", "share" => "ھەمبەھىر", +"Warning" => "ئاگاھلاندۇرۇش", "Username" => "ئىشلەتكۈچى ئاتى", "New password" => "يېڭى ئىم", "Personal" => "شەخسىي", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 23207654731654d15d7812547fdd33e54be0222b..6bd6901815d19475dd6e427ce059bdb13e649fb2 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -81,6 +81,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Помилка при встановленні терміна дії", "Sending ..." => "Надсилання...", "Email sent" => "Ел. пошта надіслана", +"Warning" => "Попередження", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Оновлення виконалось неуспішно. Будь ласка, повідомте про цю проблему в <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">спільноті ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "Оновлення виконалось успішно. Перенаправляємо вас на ownCloud.", "Use the following link to reset your password: {link}" => "Використовуйте наступне посилання для скидання пароля: {link}", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 1c99aad9a4d3264b5a0b21ac6279bf361eccb6f9..2e3d9569357fc5b5ff3dc30fbae36a9b29229d21 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -81,6 +81,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Lỗi cấu hình ngày kết thúc", "Sending ..." => "Đang gởi ...", "Email sent" => "Email đã được gửi", +"Warning" => "Cảnh báo", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Cập nhật không thành công . Vui lòng thông báo đến <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\"> Cộng đồng ownCloud </a>.", "The update was successful. Redirecting you to ownCloud now." => "Cập nhật thành công .Hệ thống sẽ đưa bạn tới ownCloud.", "Use the following link to reset your password: {link}" => "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 04c4630b2221d3d87b7d308a456e32454f7fe7c5..6a5dcb50a95e6d2f11af707ca66c769986e23e4d 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -89,6 +89,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "设置过期日期时出错", "Sending ..." => "正在发送...", "Email sent" => "邮件已发送", +"Warning" => "警告", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "更新不成功。请汇报将此问题汇报给 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud 社区</a>。", "The update was successful. Redirecting you to ownCloud now." => "更新成功。正在重定向至 ownCloud。", "%s password reset" => "重置 %s 的密码", @@ -111,7 +112,6 @@ $TRANSLATIONS = array( "Help" => "帮助", "Access forbidden" => "访问禁止", "Cloud not found" => "未找到云", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "您好,\n\n%s 向您分享了 %s。\n查看: %s", "Edit categories" => "编辑分类", "Add" => "增加", "Security Warning" => "安全警告", @@ -141,7 +141,6 @@ $TRANSLATIONS = array( "remember" => "记住", "Log in" => "登录", "Alternative Logins" => "其他登录方式", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "您好,<br><br>%s 向您分享了 »%s«。<br><a href=\"%s\">查看</a>", "Updating ownCloud to version %s, this may take a while." => "更新 ownCloud 到版本 %s,这可能需要一些时间。" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 759a4fdc35e57b416f41fbcec7c6966fb91fabe2..1483329bbfd1afbf30fd268bbd416415488c6ce5 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.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" => "已停用維護模式", @@ -16,6 +17,11 @@ $TRANSLATIONS = array( "Error adding %s to favorites." => "加入 %s 到最愛時發生錯誤。", "No categories selected for deletion." => "沒有選擇要刪除的分類。", "Error removing %s from favorites." => "從最愛移除 %s 時發生錯誤。", +"No image or file provided" => "未提供圖片或檔案", +"Unknown filetype" => "未知的檔案類型", +"Invalid image" => "無效的圖片", +"No temporary profile picture available, try again" => "沒有臨時用的大頭貼,請再試一次", +"No crop data provided" => "未設定剪裁", "Sunday" => "週日", "Monday" => "週一", "Tuesday" => "週二", @@ -48,11 +54,20 @@ $TRANSLATIONS = array( "last year" => "去年", "years ago" => "幾年前", "Choose" => "選擇", +"Error loading file picker template: {error}" => "載入檔案選擇器樣板出錯: {error}", "Yes" => "是", "No" => "否", "Ok" => "好", -"_{count} file conflict_::_{count} file conflicts_" => array(""), +"Error loading message template: {error}" => "載入訊息樣板出錯: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} 個檔案衝突"), +"One file conflict" => "一個檔案衝突", +"Which files do you want to keep?" => "您要保留哪一個檔案?", +"If you select both versions, the copied file will have a number added to its name." => "如果您同時選擇兩個版本,被複製的那個檔案名稱後面會加上編號", "Cancel" => "取消", +"Continue" => "繼續", +"(all selected)" => "(已全選)", +"({count} selected)" => "(已選 {count} 項)", +"Error loading file exists template" => "載入檔案存在樣板出錯", "The object type is not specified." => "未指定物件類型。", "Error" => "錯誤", "The app name is not specified." => "沒有指定 app 名稱。", @@ -78,6 +93,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "不允許重新分享", "Shared in {item} with {user}" => "已和 {user} 分享 {item}", "Unshare" => "取消分享", +"notify user by email" => "使用郵件通知使用者", "can edit" => "可編輯", "access control" => "存取控制", "create" => "建立", @@ -89,6 +105,7 @@ $TRANSLATIONS = array( "Error setting expiration date" => "設定到期日發生錯誤", "Sending ..." => "正在傳送…", "Email sent" => "Email 已寄出", +"Warning" => "警告", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "升級失敗,請將此問題回報 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud 社群</a>。", "The update was successful. Redirecting you to ownCloud now." => "升級成功,正將您重新導向至 ownCloud 。", "%s password reset" => "%s 密碼重設", @@ -111,7 +128,9 @@ $TRANSLATIONS = array( "Help" => "說明", "Access forbidden" => "存取被拒", "Cloud not found" => "找不到網頁", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "嗨,\n\n通知您一聲,%s 與您分享了 %s 。\n您可以到 %s 看看", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "嗨,\n\n%s 和你分享了 %s ,到這裡看它:%s\n", +"The share will expire on %s.\n\n" => "分享將於 %s 過期\n", +"Cheers!" => "太棒了!", "Edit categories" => "編輯分類", "Add" => "增加", "Security Warning" => "安全性警告", @@ -132,6 +151,7 @@ $TRANSLATIONS = array( "Database tablespace" => "資料庫 tablespace", "Database host" => "資料庫主機", "Finish setup" => "完成設定", +"Finishing …" => "即將完成…", "%s is available. Get more information on how to update." => "%s 已經釋出,瞭解更多資訊以進行更新。", "Log out" => "登出", "Automatic logon rejected!" => "自動登入被拒!", @@ -141,7 +161,8 @@ $TRANSLATIONS = array( "remember" => "記住", "Log in" => "登入", "Alternative Logins" => "其他登入方法", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "嗨,<br><br>通知您一聲,%s 與您分享了 %s ,<br><a href=\"%s\">看一下吧</a>", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "嗨,<br><br>%s 和你分享了 %s ,到<a href=\"%s\">這裡</a>看它<br><br>", +"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/templates/layout.user.php b/core/templates/layout.user.php index 71bec11d219b7bfb342a413f76b729f8a8e3095c..fcca43624fe6ad4b4aee8a67935a526952c6a78a 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -64,7 +64,7 @@ </li> <?php endforeach; ?> <li> - <a id="logout" href="<?php print_unescaped(link_to('', 'index.php')); ?>?logout=true"> + <a id="logout" <?php print_unescaped(OC_User::getLogoutAttribute()); ?>> <img class="svg" alt="" src="<?php print_unescaped(image_path('', 'actions/logout.svg')); ?>" /> <?php p($l->t('Log out'));?> </a> diff --git a/core/templates/login.php b/core/templates/login.php index 06f64d41e39e24e5efd9490eef5215b664f17cc9..aca42c84387ce44040125cc48bfcda841124bff0 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -12,6 +12,12 @@ <small><?php p($l->t('Please change your password to secure your account again.')); ?></small> </div> <?php endif; ?> + <?php if (isset($_['apacheauthfailed']) && ($_['apacheauthfailed'])): ?> + <div class="warning"> + <?php p($l->t('Server side authentication failed!')); ?><br> + <small><?php p($l->t('Please contact your administrator.')); ?></small> + </div> + <?php endif; ?> <p class="infield grouptop"> <input type="text" name="user" id="user" placeholder="" value="<?php p($_['username']); ?>"<?php p($_['user_autofocus'] ? ' autofocus' : ''); ?> diff --git a/l10n/ach/core.po b/l10n/ach/core.po index 070293766e8d780b6bff86c813b19e34dc1b43fe..701d593aca7cd7c7d3f950bdf4dcbebc64f6d041 100644 --- a/l10n/ach/core.po +++ b/l10n/ach/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -314,8 +319,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/ach/files.po b/l10n/ach/files.po index b8a81660f4d313cce3166f790deac20af47592f8..f161e0fb930e80463d48aa8a059f8dfc1f6b5109 100644 --- a/l10n/ach/files.po +++ b/l10n/ach/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -292,49 +305,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ach/files_encryption.po b/l10n/ach/files_encryption.po index bc509f34dc4b245fbcf598e1d6de38a523e2de20..5dfafa4f3b892d2632f45e8ed97fca7f73129a2f 100644 --- a/l10n/ach/files_encryption.po +++ b/l10n/ach/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:39-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:51 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:52 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:250 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index 591268ad3876e2a936da818d7090bc24d954d2d8..8d64cea5536b50b69dfa9c1283c1389af352fa5e 100644 --- a/l10n/ach/settings.po +++ b/l10n/ach/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ady/core.po b/l10n/ady/core.po new file mode 100644 index 0000000000000000000000000000000000000000..1754aa785ec7f8005f5c44d946371d2665628b4c --- /dev/null +++ b/l10n/ady/core.po @@ -0,0 +1,751 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:118 ajax/share.php:197 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 +msgid "group" +msgstr "" + +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:387 +msgid "Settings" +msgstr "" + +#: js/js.js:866 +msgid "seconds ago" +msgstr "" + +#: js/js.js:867 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:868 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:869 +msgid "today" +msgstr "" + +#: js/js.js:870 +msgid "yesterday" +msgstr "" + +#: js/js.js:871 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:872 +msgid "last month" +msgstr "" + +#: js/js.js:873 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:874 +msgid "months ago" +msgstr "" + +#: js/js.js:875 +msgid "last year" +msgstr "" + +#: js/js.js:876 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:199 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:367 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:386 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:457 +msgid "Error loading file exists template" +msgstr "" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 +msgid "Error" +msgstr "" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:30 js/share.js:45 js/share.js:87 +msgid "Shared" +msgstr "" + +#: js/share.js:90 +msgid "Share" +msgstr "" + +#: js/share.js:132 js/share.js:707 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:143 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:150 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:159 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:161 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:184 +msgid "Share with" +msgstr "" + +#: js/share.js:189 +msgid "Share with link" +msgstr "" + +#: js/share.js:192 +msgid "Password protect" +msgstr "" + +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 +msgid "Password" +msgstr "" + +#: js/share.js:199 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:203 +msgid "Email link to person" +msgstr "" + +#: js/share.js:204 +msgid "Send" +msgstr "" + +#: js/share.js:209 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:210 +msgid "Expiration date" +msgstr "" + +#: js/share.js:243 +msgid "Share via email:" +msgstr "" + +#: js/share.js:246 +msgid "No people found" +msgstr "" + +#: js/share.js:284 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:320 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:341 +msgid "Unshare" +msgstr "" + +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 +msgid "can edit" +msgstr "" + +#: js/share.js:363 +msgid "access control" +msgstr "" + +#: js/share.js:366 +msgid "create" +msgstr "" + +#: js/share.js:369 +msgid "update" +msgstr "" + +#: js/share.js:372 +msgid "delete" +msgstr "" + +#: js/share.js:375 +msgid "share" +msgstr "" + +#: js/share.js:409 js/share.js:654 +msgid "Password protected" +msgstr "" + +#: js/share.js:667 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:679 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:694 +msgid "Sending ..." +msgstr "" + +#: js/share.js:705 +msgid "Email sent" +msgstr "" + +#: js/share.js:729 +msgid "Warning" +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the <a " +"href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " +"community</a>." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:62 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:4 +msgid "" +"The link to reset your password has been sent to your email.<br>If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.<br>If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:12 +msgid "Request failed!<br>Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 +#: templates/login.php:25 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:22 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:24 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:108 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "" + +#: templates/installation.php:24 templates/installation.php:31 +#: templates/installation.php:38 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:25 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:26 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:39 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:41 +#, php-format +msgid "" +"For information how to properly configure your server, please see the <a " +"href=\"%s\" target=\"_blank\">documentation</a>." +msgstr "" + +#: templates/installation.php:47 +msgid "Create an <strong>admin account</strong>" +msgstr "" + +#: templates/installation.php:66 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:73 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:85 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 +msgid "will be used" +msgstr "" + +#: templates/installation.php:148 +msgid "Database user" +msgstr "" + +#: templates/installation.php:155 +msgid "Database password" +msgstr "" + +#: templates/installation.php:160 +msgid "Database name" +msgstr "" + +#: templates/installation.php:168 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:175 +msgid "Database host" +msgstr "" + +#: templates/installation.php:184 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:41 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:69 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:43 +msgid "remember" +msgstr "" + +#: templates/login.php:46 +msgid "Log in" +msgstr "" + +#: templates/login.php:52 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +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 "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/ady/files.po b/l10n/ady/files.po new file mode 100644 index 0000000000000000000000000000000000000000..aff7006c56830f9bf220ea7c2fd1d1cfb7d18bce --- /dev/null +++ b/l10n/ady/files.po @@ -0,0 +1,356 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/upload.php:16 ajax/upload.php:45 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:22 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:59 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:66 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:67 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:69 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:70 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:71 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:72 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:73 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:91 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:120 ajax/upload.php:143 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:136 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:160 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 +msgid "Files" +msgstr "" + +#: js/file-upload.js:224 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:235 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:302 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:336 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:426 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:500 +msgid "URL cannot be empty." +msgstr "" + +#: 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:537 js/file-upload.js:553 js/files.js:518 js/files.js:556 +msgid "Error" +msgstr "" + +#: js/fileactions.js:119 +msgid "Share" +msgstr "" + +#: js/fileactions.js:131 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:184 +msgid "Rename" +msgstr "" + +#: js/filelist.js:71 js/filelist.js:74 js/filelist.js:788 +msgid "Pending" +msgstr "" + +#: js/filelist.js:416 js/filelist.js:418 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:416 js/filelist.js:418 +msgid "replace" +msgstr "" + +#: js/filelist.js:416 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:416 js/filelist.js:418 +msgid "cancel" +msgstr "" + +#: js/filelist.js:463 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:463 +msgid "undo" +msgstr "" + +#: 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:593 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:541 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:731 js/filelist.js:769 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:25 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:29 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:37 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:51 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:55 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:307 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:518 js/files.js:556 +msgid "Error moving file" +msgstr "" + +#: js/files.js:569 templates/index.php:57 +msgid "Name" +msgstr "" + +#: js/files.js:570 templates/index.php:69 +msgid "Size" +msgstr "" + +#: js/files.js:571 templates/index.php:71 +msgid "Modified" +msgstr "" + +#: lib/app.php:73 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:17 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:6 +msgid "New" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:13 +msgid "From link" +msgstr "" + +#: templates/index.php:30 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:35 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:41 +msgid "You don’t have write permissions here." +msgstr "" + +#: templates/index.php:46 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:63 +msgid "Download" +msgstr "" + +#: templates/index.php:76 templates/index.php:77 +msgid "Unshare" +msgstr "" + +#: templates/index.php:82 templates/index.php:83 +msgid "Delete" +msgstr "" + +#: templates/index.php:96 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:98 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:103 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:106 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/ady/files_encryption.po b/l10n/ady/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..25ef44da33f2c3d53e4a1c3e1e8f16d431b173f6 --- /dev/null +++ b/l10n/ady/files_encryption.po @@ -0,0 +1,185 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 +msgid "" +"Your private key is not valid! Likely your password was changed outside the " +"ownCloud system (e.g. your corporate directory). You can update your private" +" key password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: hooks/hooks.php:53 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:54 +msgid "" +"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." +msgstr "" + +#: hooks/hooks.php:254 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/settings-admin.js:13 +msgid "Saving..." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:5 templates/settings-personal.php:4 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:10 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:32 templates/settings-personal.php:62 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:37 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:43 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:50 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:11 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:14 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:16 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:24 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:30 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:35 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:45 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:47 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:63 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:64 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/ady/files_external.po b/l10n/ady/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..9715fc2bc005d32cf96eb0663b20803d1b55e7ef --- /dev/null +++ b/l10n/ady/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: 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 " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/ady/files_sharing.po b/l10n/ady/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..aa1df900cacb69bbdc9e4ebaf09acdca6d2451ac --- /dev/null +++ b/l10n/ady/files_sharing.po @@ -0,0 +1,80 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:9 +msgid "Submit" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:16 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:19 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:27 templates/public.php:93 +msgid "Download" +msgstr "" + +#: templates/public.php:44 templates/public.php:47 +msgid "Upload" +msgstr "" + +#: templates/public.php:57 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:90 +msgid "No preview available for" +msgstr "" diff --git a/l10n/ady/files_trashbin.po b/l10n/ady/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..1b92cb7f601cbc6c4f69552c57974a01b6d19c6e --- /dev/null +++ b/l10n/ady/files_trashbin.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:102 +msgid "perform restore operation" +msgstr "" + +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 +msgid "Error" +msgstr "" + +#: js/trash.js:37 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:129 +msgid "Delete permanently" +msgstr "" + +#: js/trash.js:190 templates/index.php:21 +msgid "Name" +msgstr "" + +#: js/trash.js:191 templates/index.php:31 +msgid "Deleted" +msgstr "" + +#: js/trash.js:199 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/trash.js:205 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: lib/trashbin.php:814 lib/trashbin.php:816 +msgid "restored" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:24 templates/index.php:26 +msgid "Restore" +msgstr "" + +#: templates/index.php:34 templates/index.php:35 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ady/files_versions.po b/l10n/ady/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..5e9e0e8f2a70e9af0fc0c50e2fabb307c787af30 --- /dev/null +++ b/l10n/ady/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:7 +msgid "Versions" +msgstr "" + +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:79 +msgid "More versions..." +msgstr "" + +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:147 +msgid "Restore" +msgstr "" diff --git a/l10n/ady/lib.po b/l10n/ady/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..94fa2ed8df7fde04800456015691cbf0c792a8ee --- /dev/null +++ b/l10n/ady/lib.po @@ -0,0 +1,341 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:17-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:237 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:352 +msgid "Help" +msgstr "" + +#: private/app.php:365 +msgid "Personal" +msgstr "" + +#: private/app.php:376 +msgid "Settings" +msgstr "" + +#: private/app.php:388 +msgid "Users" +msgstr "" + +#: private/app.php:401 +msgid "Admin" +msgstr "" + +#: private/app.php:832 +#, 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 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:69 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:36 +msgid "web services under your control" +msgstr "" + +#: private/files.php:66 private/files.php:98 +#, php-format +msgid "cannot open \"%s\"" +msgstr "" + +#: private/files.php:226 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:227 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:228 private/files.php:256 +msgid "Back to Files" +msgstr "" + +#: private/files.php:253 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:254 +msgid "" +"Download the files in smaller chunks, seperately or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: private/installer.php:162 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:175 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:39 private/json.php:62 private/json.php:73 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:22 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:25 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:28 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: 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 "" + +#: private/setup/mysql.php:12 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:173 private/setup/oci.php:205 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: 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 "" + +#: private/setup.php:185 +#, php-format +msgid "Please double check the <a href='%s'>installation guides</a>." +msgstr "" + +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:122 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:123 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:124 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:125 +msgid "today" +msgstr "" + +#: private/template/functions.php:126 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:128 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:130 +msgid "last month" +msgstr "" + +#: private/template/functions.php:131 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:133 +msgid "last year" +msgstr "" + +#: private/template/functions.php:134 +msgid "years ago" +msgstr "" + +#: private/template.php:297 +msgid "Caused by:" +msgstr "" diff --git a/l10n/ady/settings.po b/l10n/ady/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..6a7e861752671dda1be171eec52c47d2e17e894b --- /dev/null +++ b/l10n/ady/settings.po @@ -0,0 +1,609 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:17-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:55 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:20 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:42 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:74 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:79 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:87 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:92 changepassword/controller.php:103 +msgid "Unable to change password" +msgstr "" + +#: js/apps.js:43 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +msgid "Disable" +msgstr "" + +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +msgid "Enable" +msgstr "" + +#: js/apps.js:71 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:125 +msgid "Updating...." +msgstr "" + +#: js/apps.js:128 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:128 +msgid "Error" +msgstr "" + +#: js/apps.js:129 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:132 +msgid "Updated" +msgstr "" + +#: js/personal.js:225 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:270 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/personal.js:292 +msgid "Saving..." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:95 templates/users.php:26 templates/users.php:90 +#: templates/users.php:118 +msgid "Groups" +msgstr "" + +#: js/users.js:100 templates/users.php:92 templates/users.php:130 +msgid "Group Admin" +msgstr "" + +#: js/users.js:123 templates/users.php:170 +msgid "Delete" +msgstr "" + +#: js/users.js:280 +msgid "add group" +msgstr "" + +#: js/users.js:442 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:443 js/users.js:449 js/users.js:464 +msgid "Error creating user" +msgstr "" + +#: js/users.js:448 +msgid "A valid password must be provided" +msgstr "" + +#: personal.php:45 personal.php:46 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:15 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:18 +msgid "" +"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." +msgstr "" + +#: templates/admin.php:29 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:32 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:33 +#, php-format +msgid "Please double check the <a href=\"%s\">installation guides</a>." +msgstr "" + +#: templates/admin.php:44 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:47 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:58 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:63 +#, php-format +msgid "" +"System locale can't be set to %s. This means that there might be problems " +"with certain characters in file names. We strongly suggest to install the " +"required packages on your system to support %s." +msgstr "" + +#: templates/admin.php:75 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"This server has no working internet connection. This means that some of the " +"features like mounting of external storage, notifications about updates or " +"installation of 3rd party apps don´t work. Accessing files from remote and " +"sending of notification emails might also not work. We suggest to enable " +"internet connection for this server if you want to have all features." +msgstr "" + +#: templates/admin.php:92 +msgid "Cron" +msgstr "" + +#: templates/admin.php:99 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:107 +msgid "" +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" + +#: templates/admin.php:115 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" + +#: templates/admin.php:120 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:126 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:127 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:134 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:135 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:143 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:144 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:152 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:153 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:160 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:163 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 +msgid "Security" +msgstr "" + +#: templates/admin.php:191 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:199 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:211 +msgid "Log" +msgstr "" + +#: templates/admin.php:212 +msgid "Log level" +msgstr "" + +#: templates/admin.php:243 +msgid "More" +msgstr "" + +#: templates/admin.php:244 +msgid "Less" +msgstr "" + +#: templates/admin.php:250 templates/personal.php:161 +msgid "Version" +msgstr "" + +#: templates/admin.php:254 templates/personal.php:164 +msgid "" +"Developed by the <a href=\"http://ownCloud.org/contact\" " +"target=\"_blank\">ownCloud community</a>, the <a " +"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is " +"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " +"target=\"_blank\"><abbr title=\"Affero General Public " +"License\">AGPL</abbr></a>." +msgstr "" + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +msgid "Password" +msgstr "" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:44 +msgid "New password" +msgstr "" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "" + +#: templates/personal.php:58 templates/users.php:88 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:73 +msgid "Email" +msgstr "" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:86 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:90 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:92 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:93 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:94 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:97 +msgid "Abort" +msgstr "" + +#: templates/personal.php:98 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:106 templates/personal.php:107 +msgid "Language" +msgstr "" + +#: templates/personal.php:119 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:125 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:127 +#, 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 +msgid "Encryption" +msgstr "" + +#: templates/personal.php:140 +msgid "The encryption app is no longer enabled, decrypt all your file" +msgstr "" + +#: templates/personal.php:146 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:151 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:48 templates/users.php:148 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:163 +msgid "Other" +msgstr "" + +#: templates/users.php:87 +msgid "Username" +msgstr "" + +#: templates/users.php:94 +msgid "Storage" +msgstr "" + +#: templates/users.php:108 +msgid "change display name" +msgstr "" + +#: templates/users.php:112 +msgid "set new password" +msgstr "" + +#: templates/users.php:143 +msgid "Default" +msgstr "" diff --git a/l10n/ady/user_ldap.po b/l10n/ady/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..de9ce044f34958600af1eab1847406b003447ecc --- /dev/null +++ b/l10n/ady/user_ldap.po @@ -0,0 +1,406 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:37 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:40 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:44 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:111 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:112 +msgid "Success" +msgstr "" + +#: js/settings.js:117 +msgid "Error" +msgstr "" + +#: js/settings.js:141 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:146 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:156 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:157 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:9 +msgid "" +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:12 +msgid "" +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:16 +msgid "Server configuration" +msgstr "" + +#: templates/settings.php:32 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:37 +msgid "Host" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:40 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:41 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:42 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:44 +msgid "User DN" +msgstr "" + +#: templates/settings.php:46 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:47 +msgid "Password" +msgstr "" + +#: templates/settings.php:50 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:51 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:54 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:55 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:58 +msgid "" +"Defines the filter to apply, when retrieving users (no placeholders). " +"Example: \"objectClass=person\"" +msgstr "" + +#: templates/settings.php:59 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:62 +msgid "" +"Defines the filter to apply, when retrieving groups (no placeholders). " +"Example: \"objectClass=posixGroup\"" +msgstr "" + +#: templates/settings.php:66 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:68 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:68 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:69 +msgid "Port" +msgstr "" + +#: templates/settings.php:70 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:70 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:71 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:72 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:72 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:73 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:73 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:74 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:75 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:75 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:76 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:76 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:78 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:80 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:80 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:81 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:81 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:82 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:82 templates/settings.php:85 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:83 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:83 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:84 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:84 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:85 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:86 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:88 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:90 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:91 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:91 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:92 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:93 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:93 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:98 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:99 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:100 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:101 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:102 +msgid "" +"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." +msgstr "" + +#: templates/settings.php:103 +msgid "UUID Attribute:" +msgstr "" + +#: templates/settings.php:104 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:105 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"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." +msgstr "" + +#: templates/settings.php:106 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:106 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" + +#: templates/settings.php:108 +msgid "Test Configuration" +msgstr "" + +#: templates/settings.php:108 +msgid "Help" +msgstr "" diff --git a/l10n/ady/user_webdavauth.po b/l10n/ady/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..d20828e05ef807db1d3e6d24d458a00ffc391804 --- /dev/null +++ b/l10n/ady/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 15:03+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: 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 "" diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index ba46eb4cfa690b5fbfb13cb4750117225634b08c..b5188e5a89dbafc5a9fa03315304bffe75ed5736 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -314,8 +319,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Wagwoord" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Jy sal `n skakel via e-pos ontvang om jou wagwoord te herstel." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Gebruikersnaam" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Skep `n <strong>admin-rekening</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Gevorderd" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Stel databasis op" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "sal gebruik word" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Databasis-gebruiker" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Databasis-wagwoord" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Databasis naam" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Maak opstelling klaar" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Jou wagwoord verloor?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "onthou" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Teken aan" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 1a0f6c3fbf7d70be410a235c8dab7d79018f886e..581b4b711ad19ef3823567a2ece9749e4912736f 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -292,49 +305,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/af_ZA/files_encryption.po b/l10n/af_ZA/files_encryption.po index 6e1898259c6d85035948e9632aff07bac270a62f..69d909b76a3185af5b8adbc3b9bfa7e1e359cc84 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 39af3220442c403183158ba0f65840b4923d0aa8..f9ccab1475ba57d5d29da47d8616578409ca2576 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <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,318 +17,325 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Hulp" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Persoonlik" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Instellings" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Gebruikers" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "webdienste onder jou beheer" -#: 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/af_ZA/settings.po b/l10n/af_ZA/settings.po index 1a474f8b038839e3113b46efee077c4b650be7b5..70d13a3eb96ec471159128e7bce797cd40d4c06a 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index 4c25c9eb18781e7f90a6a04c6c49dceb14071d9c..77d655e8a7ac171301c262c14eb7dcc1e3282a10 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 56e2c293e47ab7e2d9dedc146382ebc033c4a4bf..296a28042f8daee5011a95f6d1aedaa45999c135 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-22 00:50+0000\n" -"Last-Translator: blackcoder <tarek.taha@gmail.com>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,12 +18,17 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "مجموعة" @@ -335,8 +340,8 @@ msgstr "نوع العنصر غير محدد." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "خطأ" @@ -356,126 +361,134 @@ msgstr "مشارك" msgid "Share" msgstr "شارك" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "حصل خطأ عند عملية إزالة المشاركة" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "حصل خطأ عند عملية إعادة تعيين التصريح بالتوصل" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "شورك معك ومع المجموعة {group} من قبل {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "شورك معك من قبل {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "شارك مع" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "شارك مع رابط" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "حماية كلمة السر" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "كلمة المرور" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "ارسل الرابط بالبريد الى صديق" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "أرسل" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "تاريخ إنتهاء الصلاحية" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "مشاركة عبر البريد الإلكتروني:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "لم يتم العثور على أي شخص" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "لا يسمح بعملية إعادة المشاركة" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "شورك في {item} مع {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "التحرير مسموح" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "ضبط الوصول" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "إنشاء" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "تحديث" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "حذف" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "مشاركة" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "محمي بكلمة السر" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "تم ارسال البريد الالكتروني" +#: js/share.js:729 +msgid "Warning" +msgstr "تحذير" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -512,7 +525,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "إسم المستخدم" @@ -584,7 +597,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -638,48 +661,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "أضف </strong>مستخدم رئيسي <strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "تعديلات متقدمه" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "مجلد المعلومات" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "أسس قاعدة البيانات" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "سيتم استخدمه" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "مستخدم قاعدة البيانات" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "كلمة سر مستخدم قاعدة البيانات" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "إسم قاعدة البيانات" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "مساحة جدول قاعدة البيانات" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "خادم قاعدة البيانات" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "انهاء التعديلات" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -703,19 +730,27 @@ msgstr "قد يكون حسابك في خطر إن لم تقم بإعادة تع msgid "Please change your password to secure your account again." msgstr "الرجاء إعادة تعيين كلمة السر لتأمين حسابك." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "هل نسيت كلمة السر؟" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "تذكر" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "أدخل" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "اسماء دخول بديلة" @@ -723,7 +758,12 @@ msgstr "اسماء دخول بديلة" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 5e431360f9609e2d6010baf2ca7e2459dbef29a2..21d3340aca1391702c52f262d90307bfd1ba667c 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -4,13 +4,14 @@ # # Translators: # ibrahim_9090 <ibrahim9090@gmail.com>, 2013 +# Meesh <M_almohimeed@yahoo.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 19:30+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,23 +78,23 @@ msgstr "لا يوجد مساحة تخزينية كافية" #: ajax/upload.php:120 ajax/upload.php:143 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "فشلت عملية الرفع. تعذر الحصول على معلومات الملف." #: ajax/upload.php:136 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله." #: ajax/upload.php:160 msgid "Invalid directory." msgstr "مسار غير صحيح." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "الملفات" #: js/file-upload.js:244 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "تعذر رفع الملف {filename} إما لأنه مجلد أو لان حجم الملف 0 بايت" #: js/file-upload.js:255 msgid "Not enough space available" @@ -105,7 +106,7 @@ msgstr "تم إلغاء عملية رفع الملفات ." #: js/file-upload.js:356 msgid "Could not get result from server." -msgstr "" +msgstr "تعذر الحصول على نتيجة من الخادم" #: js/file-upload.js:446 msgid "" @@ -120,7 +121,7 @@ msgstr "عنوان ال URL لا يجوز أن يكون فارغا." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "تسمية ملف غير صالحة. استخدام الاسم \"shared\" محجوز بواسطة ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "خطأ" @@ -164,25 +165,25 @@ msgstr "استبدل {new_name} بـ {old_name}" msgid "undo" msgstr "تراجع" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +msgstr[0] "لا يوجد مجلدات %n" +msgstr[1] "1 مجلد %n" +msgstr[2] "2 مجلد %n" +msgstr[3] "عدد قليل من مجلدات %n" +msgstr[4] "عدد كبير من مجلدات %n" +msgstr[5] "مجلدات %n" + +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgstr[0] "لا يوجد ملفات %n" +msgstr[1] "ملف %n" +msgstr[2] "2 ملف %n" +msgstr[3] "قليل من ملفات %n" +msgstr[4] "الكثير من ملفات %n" +msgstr[5] " ملفات %n" #: js/filelist.js:541 msgid "{dirs} and {files}" @@ -191,12 +192,12 @@ msgstr "{dirs} و {files}" #: js/filelist.js:731 js/filelist.js:769 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgstr[0] "لا يوجد ملفات %n لتحميلها" +msgstr[1] "تحميل 1 ملف %n" +msgstr[2] "تحميل 2 ملف %n" +msgstr[3] "يتم تحميل عدد قليل من ملفات %n" +msgstr[4] "يتم تحميل عدد كبير من ملفات %n" +msgstr[5] "يتم تحميل ملفات %n" #: js/files.js:25 msgid "'.' is an invalid file name." @@ -220,38 +221,51 @@ msgstr "مساحتك التخزينية ممتلئة, لا يمكم تحديث msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "مساحتك التخزينية امتلأت تقريبا " -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "المفتاح الخاص بتشفير التطبيقات غير صالح. يرجى تحديث كلمة السر الخاصة بالمفتاح الخاص من الإعدادت الشخصية حتى تتمكن من الوصول للملفات المشفرة." + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "تم تعطيل التشفير لكن ملفاتك لا تزال مشفرة. فضلا اذهب إلى الإعدادات الشخصية لإزالة التشفير عن ملفاتك." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" -msgstr "" +msgstr "حدث خطأ أثناء نقل الملف" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "اسم" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "حجم" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "معدل" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s لا يمكن إعادة تسميته. " #: lib/helper.php:11 templates/index.php:17 msgid "Upload" @@ -305,49 +319,49 @@ msgstr "مجلد" msgid "From link" msgstr "من رابط" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "حذف الملفات" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "لا تملك صلاحيات الكتابة هنا." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "تحميل" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "إلغاء مشاركة" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "إلغاء" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "حجم الترفيع أعلى من المسموح" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "يرجى الانتظار , جاري فحص الملفات ." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "الفحص الحالي" diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index 9732c95e1adad438347c6e9b8b9b3036c1e75fa5..ead512918bb24fc58363b8e58a785adfcf243adb 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "جاري الحفظ..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 598bb2d827da32e7b936423d3017f2d54ad7f594..b931dc9eae8cd8f34394e0c41fac898e506e4a65 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/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-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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,7 +17,7 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: js/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 "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index f07045eb588d3c08914429a3fe984f2a95fcb279..9edd1eb64d339739bef2fcc9ceb8ee5db6241aa8 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 19:20+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" @@ -27,31 +27,31 @@ msgstr "تعذّر حذف%s بشكل دائم" msgid "Couldn't restore %s" msgstr "تعذّر استرجاع %s " -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "إبدء عملية الإستعادة" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "خطأ" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "حذف بشكل دائم" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "حذف بشكل دائم" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "اسم" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "تم الحذف" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -59,9 +59,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -msgstr[5] "" +msgstr[5] "مجلدات %n" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -69,9 +69,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -msgstr[5] "" +msgstr[5] " ملفات %n" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -79,11 +79,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "لا يوجد شيء هنا. سلة المهملات خاليه." -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "استعيد" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "إلغاء" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 0cc9b5b1c8c730a7b61bd052c39509739e9e903c..3e6132a904a71f2d64856f49a1960351566a1b69 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -17,270 +17,282 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "المساعدة" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "شخصي" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "إعدادات" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "المستخدمين" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "المدير" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "تحميل ملفات ZIP متوقف" -#: 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 "الملفات المحددة كبيرة جدا ليتم ضغطها في ملف zip" -#: 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 "%s ادخل اسم المستخدم الخاص بقاعدة البيانات." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s ادخل اسم فاعدة البيانات" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعدة البيانات" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "اسم المستخدم و/أو كلمة المرور لنظام MS SQL غير صحيح : %s" -#: 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 "اسم المستخدم و/أو كلمة المرور لنظام MySQL غير صحيح" -#: 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 "خطأ في قواعد البيانات : \"%s\"" -#: 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 "الأمر المخالف كان : \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "أسم المستخدم '%s'@'localhost' الخاص بـ MySQL موجود مسبقا" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "احذف اسم المستخدم هذا من الـ MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "أسم المستخدم '%s'@'%%' الخاص بـ MySQL موجود مسبقا" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "احذف اسم المستخدم هذا من الـ MySQL." -#: 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 "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح" -#: 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 "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s" -#: 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 "اسم المستخدم / أو كلمة المرور الخاصة بـPostgreSQL غير صحيحة" -#: 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 "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "الرجاء التحقق من <a href='%s'>دليل التنصيب</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "تعذر العثور على المجلد \"%s\"" + +#: 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] "" @@ -290,7 +302,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -300,15 +312,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: 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] "" @@ -318,11 +330,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: 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] "" @@ -332,19 +344,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: 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 "تعذر العثور على المجلد \"%s\"" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 42761603ac661050fcc6eea598c8a6cc1083767b..3f8379851caba7ac266c33d013c22681dd40d88e 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 22:20+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" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "تم التحديث الى " -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "إيقاف" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "تفعيل" @@ -129,43 +129,43 @@ msgstr "تفعيل" msgid "Please wait...." msgstr "الرجاء الانتظار ..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "جاري التحديث ..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "حصل خطأ أثناء تحديث التطبيق" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "خطأ" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "حدث" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "تم التحديث بنجاح" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "جاري الحفظ..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "حماية" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "فرض HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "سجل" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "مستوى السجل" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "المزيد" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "أقل" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "إصدار" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -509,7 +517,7 @@ msgstr "" #: templates/personal.php:97 msgid "Abort" -msgstr "" +msgstr "إلغاء." #: templates/personal.php:98 msgid "Choose as profile image" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index c18c2b146fe341b84a48f449e0d61ae74bebde01..7044e6440151fc5ea55e79fdc4bf4b2864a2947f 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -108,7 +108,7 @@ msgstr "" #: templates/settings.php:37 msgid "Host" -msgstr "" +msgstr "المضيف" #: templates/settings.php:39 msgid "" diff --git a/l10n/be/core.po b/l10n/be/core.po index 9b8d51d257546a2754399a9305cc5659199c7e11..4af6a1a1c66a75903a63cb89fd193cba2d7db610 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ 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" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -324,8 +329,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -345,126 +350,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -501,7 +514,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -573,7 +586,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -627,48 +650,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Дасведчаны" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Завяршыць ўстаноўку." +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -692,19 +719,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -712,7 +747,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/be/files.po b/l10n/be/files.po index ebc97c0f97ef2ee812a803676377fdd0fd75ad2e..6576e0bcf1dd144a298f6986ce7e302e99b5d936 100644 --- a/l10n/be/files.po +++ b/l10n/be/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,7 +163,7 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -171,7 +171,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -213,31 +213,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -298,49 +311,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/be/files_encryption.po b/l10n/be/files_encryption.po index 4f5399874b4a583df790c0fd4af3321654320130..ea3a5a18133717fd1f963f11449d64c7db7ff927 100644 --- a/l10n/be/files_encryption.po +++ b/l10n/be/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 28e5d3884cb6ea222255197ec010ac71afe16a59..4379174799de787d9d37318a5897b79e07bf9633 100644 --- a/l10n/be/settings.po +++ b/l10n/be/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 432e35d9270cbd826c1f966f7cb5b8ef873b4f0f..599f5e79e24d9f432954ff98bad6266d8d902177 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -314,8 +319,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Грешка" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "Споделяне" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Споделено с" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Парола" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "създаване" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "Внимание" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Ще получите връзка за нулиране на паролата Ви." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Потребител" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Създаване на <strong>админ профил</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Разширено" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Директория за данни" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Конфигуриране на базата" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "ще се ползва" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Потребител за базата" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Парола за базата" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Име на базата" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Хост за базата" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Завършване на настройките" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Забравена парола?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "запомни" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Вход" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 58667fa74a826045791193a3247804b7c73d350a..cafce814652f5fd667d7b978f886567a26d8cca9 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "Невалидна директория." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Файлове" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Грешка" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "възтановяване" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Име" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Размер" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Променено" @@ -292,49 +305,49 @@ msgstr "Папка" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Спри качването" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Няма нищо тук. Качете нещо." -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Изтегляне" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Изтриване" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Файлът който сте избрали за качване е прекалено голям" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Файловете се претърсват, изчакайте." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 3149c9a989eb02951f156e4be9a9dd732ccf7716..8d27a845f129b668f5bed85fbc96df5a0fff8bd9 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Записване..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 0bf82bd4a4de190a9fe942a0125e92f67801bd96..9909177f6f103c63680bfe6126211fc46717f1bb 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: bg_BG\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 "Достъпът е даден" @@ -25,7 +25,7 @@ msgstr "Достъпът е даден" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Даване на достъп" @@ -33,24 +33,24 @@ msgstr "Даване на достъп" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 1b16c5b40973dad0a08455a9bd43995cbbfbc551..4808f7ca7577588d224e50b806607c456722eee7 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -28,43 +28,43 @@ msgstr "Невъзможно перманентното изтриване на msgid "Couldn't restore %s" msgstr "Невъзможно възтановяване на %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "извършване на действие по възстановяване" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Грешка" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "изтриване на файла завинаги" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Изтриване завинаги" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Име" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Изтрито" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -72,11 +72,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "Няма нищо. Кофата е празна!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Възтановяване" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Изтриване" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 6ee938f5ab948f89812cebb1d341777bac7efa43..9dd30883bc5d640a653000e29a401701a7220f6c 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <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,318 +18,325 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Помощ" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Лични" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Настройки" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Потребители" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Админ" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "Изтеглянето като ZIP е изключено." -#: 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 "Избраните файлове са прекалено големи за генерирането на ZIP архив." -#: 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 "%s въведете потребителско име за базата с данни." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s въведете име на базата с данни." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s, не можете да ползвате точки в името на базата от данни" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Невалидно MS SQL потребителско име и/или парола: %s" -#: 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 "Невалидно MySQL потребителско име и/или парола" -#: 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 "Грешка в базата от данни: \"%s\"" -#: 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 "Проблемната команда беше: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL потребителят '%s'@'localhost' вече съществува" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Изтриване на потребителя от MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL потребителят '%s'@'%%' вече съществува." -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Изтриване на потребителя от MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracle връзка не можа да се осъществи" -#: 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 "Невалидно Oracle потребителско име и/или парола" -#: 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 "Проблемната команда беше: \"%s\", име: %s, парола: %s" -#: 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 "Невалидно PostgreSQL потребителско име и/или парола" -#: 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 "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Моля направете повторна справка с <a href='%s'>ръководството за инсталиране</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Невъзможно откриване на категорията \"%s\"" + +#: 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 "Невъзможно откриване на категорията \"%s\"" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 215c00671748a45d83ceb047342d3f4fc3c54b0d..c5b133ff9b0f462eb36c471afa14339c37225b8f 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Обновяване до {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Изключено" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Включено" @@ -129,43 +129,43 @@ msgstr "Включено" msgid "Please wait...." msgstr "Моля почакайте...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Обновява се..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Грешка" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Обновяване" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Обновено" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Записване..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Още" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "По-малко" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Версия" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 8401703d7c0c36cd2c36517e3538c37994f6928b..af4a44396fff26ce216d0d159df8e93c7dddfb00 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 36e98dacdad8bfbf11ba427b53d3d7947210c50c..0896829247f2df15fbdc7b7c449795e10cc21a4b 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -314,8 +319,8 @@ msgstr "অবজেক্টের ধরণটি সুনির্দিষ #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "সমস্যা" @@ -335,126 +340,134 @@ msgstr "ভাগাভাগিকৃত" msgid "Share" msgstr "ভাগাভাগি কর" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "ভাগাভাগি বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "অনুমতিসমূহ পরিবর্তন করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} আপনার এবং {group} গোষ্ঠীর সাথে ভাগাভাগি করেছেন" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "{owner} আপনার সাথে ভাগাভাগি করেছেন" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "যাদের সাথে ভাগাভাগি করা হয়েছে" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "লিংকের সাথে ভাগাভাগি কর" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "কূটশব্দ সুরক্ষিত" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "কূটশব্দ" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "ব্যক্তির সাথে ই-মেইল যুক্ত কর" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "পাঠাও" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করুনঃ" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "সম্পাদনা করতে পারবেন" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "অধিগম্যতা নিয়ন্ত্রণ" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "তৈরী করুন" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "পরিবর্ধন কর" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "মুছে ফেল" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "ভাগাভাগি কর" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "কূটশব্দদ্বারা সুরক্ষিত" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "ই-মেইল পাঠানো হয়েছে" +#: js/share.js:729 +msgid "Warning" +msgstr "সতর্কবাণী" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "ব্যবহারকারী" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "<strong>প্রশাসক একাউন্ট</strong> তৈরী করুন" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "সুচারু" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "ডাটা ফোল্ডার " -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "ডাটাবেচ কনফিগার করুন" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "ব্যবহৃত হবে" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "ডাটাবেজ ব্যবহারকারী" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "ডাটাবেজ কূটশব্দ" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "ডাটাবেজের নাম" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "ডাটাবেজ টেবলস্পেস" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "ডাটাবেজ হোস্ট" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "সেটআপ সুসম্পন্ন কর" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "কূটশব্দ হারিয়েছেন?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "মনে রাখ" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "প্রবেশ" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 10ce6739f1104f8a4ab71f67c7a4fa86b7060995..180a499d4ba2e01e89f64af3e38f38d9cd05f9e3 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ফাইল" @@ -119,7 +119,7 @@ msgstr "URL ফাঁকা রাখা যাবে না।" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "সমস্যা" @@ -163,13 +163,13 @@ msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপ msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "রাম" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "আকার" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "পরিবর্তিত" @@ -292,49 +305,49 @@ msgstr "ফোল্ডার" msgid "From link" msgstr " লিংক থেকে" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "এখানে কিছুই নেই। কিছু আপলোড করুন !" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "ডাউনলোড" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "মুছে" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "আপলোডের আকারটি অনেক বড়" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন " -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "বর্তমান স্ক্যানিং" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index 229e29bf4eabdd3cecb9f44b29d7f3b1e0d36e16..e29f584dbb4f7ba110fd4541cf101226091c4d3b 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 296d25d0bde4993ac5e436b289fcdc55df008f8e..d063009d63f285736981fff1f947b9b5f49e0d61 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <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,7 +17,7 @@ msgstr "" "Language: bn_BD\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 "অধিগমনের অনুমতি প্রদান করা হলো" @@ -25,7 +25,7 @@ msgstr "অধিগমনের অনুমতি প্রদান কর msgid "Error configuring Dropbox storage" msgstr "Dropbox সংরক্ষণাগার নির্ধারণ করতে সমস্যা " -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "অধিগমনের অনুমতি প্রদান কর" @@ -33,24 +33,24 @@ msgstr "অধিগমনের অনুমতি প্রদান কর" msgid "Please provide a valid Dropbox app key and secret." msgstr "দয়া করে সঠিক এবং বৈধ Dropbox app key and secret প্রদান করুন।" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "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 "" -#: 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 "" -#: 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/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index eba36ccfd6b1431a1c5e14582c4b2e79c3772629..380a02ad7c0b9b4deb418e36ce292de15ab4cd2e 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "সমস্যা" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "রাম" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +71,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "মুছে" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 40a6b3b7470763ace4e87cd02ff3e1e55b2f83a7..ddbd1f73279f1acdd1d6350ecbf40d95d9e50440 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <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,318 +17,325 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "সহায়িকা" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "ব্যক্তিগত" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "ব্যবহারকারী" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "প্রশাসন" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "ZIP ডাউনলোড বন্ধ করা আছে।" -#: 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/bn_BD/settings.po b/l10n/bn_BD/settings.po index b36011a8a59505889ed756e5ff1a9569e128b244..3646451dad392e31c0cf70deb6a16d824f698643 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "নিষ্ক্রিয়" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "সক্রিয় " @@ -129,43 +129,43 @@ msgstr "সক্রিয় " msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "সমস্যা" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "পরিবর্ধন" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "বেশী" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "কম" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 8448b210a449bc46f99c7071220f2acb82f7ed7a..da700cd7af9247fcd4910e9aad8b0e2ef4812ae6 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 5b4df12a3c84e2739fabf4dd5b2a3729037b5ac6..c468a2de5305087da181da1adcbe22f207cabb45 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ 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" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -319,8 +324,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -340,126 +345,134 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -496,7 +509,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -568,7 +581,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -622,48 +645,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -687,19 +714,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -707,7 +742,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/bs/files.po b/l10n/bs/files.po index f825923a72bf7b63b93dad73b4f7a33311b2f18a..09d48d49e33aa3e4231b210d411f7682b78383c5 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,14 +163,14 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -210,31 +210,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Ime" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Veličina" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -295,49 +308,49 @@ msgstr "Fasikla" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/bs/files_encryption.po b/l10n/bs/files_encryption.po index 8e55996135c976418c13f8ee4605cec19c33b61e..e7930cc014a1b01688248a6f862da488cce10adb 100644 --- a/l10n/bs/files_encryption.po +++ b/l10n/bs/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Spašavam..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index 87fe921d4527378005bac40d6e5d1311b8fb7f79..652299336754f5230ee3dfdfe0070e415d940337 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Spašavam..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ca/core.po b/l10n/ca/core.po index aaabc519ac8d951ef67f9f2a4be3b0ab7d897b30..1692c2141a39640f2b4820d1eb661b74476510a1 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:30+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,12 +19,17 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s ha compartit »%s« amb tu" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "grup" @@ -316,8 +321,8 @@ msgstr "No s'ha especificat el tipus d'objecte." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Error" @@ -337,126 +342,134 @@ msgstr "Compartit" msgid "Share" msgstr "Comparteix" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Error en compartir" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Error en deixar de compartir" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Error en canviar els permisos" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartit amb vos i amb el grup {group} per {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Compartit amb vos per {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Comparteix amb" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Comparteix amb enllaç" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Protegir amb contrasenya" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Contrasenya" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Permet pujada pública" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Enllaç per correu electrónic amb la persona" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Envia" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Estableix la data de venciment" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Data de venciment" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Comparteix per correu electrònic" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "No s'ha trobat ningú" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "No es permet compartir de nou" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Compartit en {item} amb {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Deixa de compartir" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "pot editar" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "control d'accés" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "crea" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "actualitza" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "elimina" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "comparteix" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data de venciment" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Error en establir la data de venciment" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" +#: js/share.js:729 +msgid "Warning" +msgstr "Avís" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -493,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nom d'usuari" @@ -565,8 +578,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Ei,\n\nnomés fer-te saber que %s ha compartit %s amb tu.\nMira-ho: %s\n\nSalut!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -619,48 +642,52 @@ msgstr "Per informació de com configurar el servidor, comproveu la <a href=\"%s msgid "Create an <strong>admin account</strong>" msgstr "Crea un <strong>compte d'administrador</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Carpeta de dades" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Configura la base de dades" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "s'usarà" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Usuari de la base de dades" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Contrasenya de la base de dades" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Nom de la base de dades" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Espai de taula de la base de dades" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Ordinador central de la base de dades" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Acaba la configuració" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -684,19 +711,27 @@ msgstr "Se no heu canviat la contrasenya recentment el vostre compte pot estar c msgid "Please change your password to secure your account again." msgstr "Canvieu la contrasenya de nou per assegurar el vostre compte." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Heu perdut la contrasenya?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "recorda'm" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Inici de sessió" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Acreditacions alternatives" @@ -704,8 +739,13 @@ msgstr "Acreditacions alternatives" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Ei,<br><br>només fer-te saber que %s ha compartit %s amb tu.<br><a href=\"%s\">Mira-ho:</a><br><br>Salut!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 82091cf75b36b3e4691d1e2f2139d2c0fcd68c6d..bfbedf31ec5eb3cd622fbf4ed81a30c2239d4e4d 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-24 15:10+0000\n" -"Last-Translator: rogerc\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" "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" @@ -121,7 +121,7 @@ msgstr "La URL no pot ser buida" msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Error" @@ -165,13 +165,13 @@ msgstr "s'ha substituït {old_name} per {new_name}" msgid "undo" msgstr "desfés" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetes" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fitxer" @@ -209,31 +209,44 @@ msgstr "El vostre espai d'emmagatzemament és ple, els fitxers ja no es poden ac msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "El vostre espai d'emmagatzemament és gairebé ple ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "L'encriptació s'ha desactivat però els vostres fitxers segueixen encriptats. Aneu a la vostra configuració personal per desencriptar els vostres fitxers." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Error en moure el fitxer" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nom" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Mida" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Modificat" @@ -294,49 +307,49 @@ msgstr "Carpeta" msgid "From link" msgstr "Des d'enllaç" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Fitxers esborrats" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "No teniu permisos d'escriptura aquí." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Baixa" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Deixa de compartir" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Esborra" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 695090cfef6ba9af7f56dda817b88029c4d45981..e03c0ada38ab5dc9afc454c9c79fda3ec1d7e9b7 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/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-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <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" @@ -46,17 +46,24 @@ msgstr "La contrasenya s'ha canviat." msgid "Could not change the password. Maybe the old password was not correct." msgstr "No s'ha pogut canviar la contrasenya. Potser la contrasenya anterior no era correcta." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "La contrasenya de la clau privada s'ha actualitzat." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "No s'ha pogut actualitzar la contrasenya de la clau privada. Potser la contrasenya anterior no era correcta." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -64,36 +71,30 @@ msgid "" "files." msgstr "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora del sistema ownCloud (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Manca de requisits." -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Assegureu-vos que teniu instal·lat PHP 5.3.3 o una versió superior i que està activat Open SSL i habilitada i configurada correctament l'extensió de PHP. De moment, l'aplicació d'encriptació s'ha desactivat." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Els usuaris següents no estan configurats per a l'encriptació:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Desant..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "La vostra clau privada no és vàlida! Potser la vostra contrasenya ha canviat des de fora." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Podeu desbloquejar la clau privada en el vostre" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "arranjament personal" @@ -110,27 +111,35 @@ msgstr "Activa la clau de recuperació (permet recuperar fitxers d'usuaris en ca msgid "Recovery key password" msgstr "Clau de recuperació de la contrasenya" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Activat" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Desactivat" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Canvia la clau de recuperació de contrasenya:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Antiga clau de recuperació de contrasenya" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Nova clau de recuperació de contrasenya" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Canvia la contrasenya" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 6e08a5ad52215f1ddc0cbae398962138b79d5375..3f33f7d6493833fc4c07924dfd8fbd10afc9864e 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-08-22 10:36-0400\n" -"PO-Revision-Date: 2013-08-21 16:01+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -28,43 +28,43 @@ msgstr "No s'ha pogut esborrar permanentment %s" msgid "Couldn't restore %s" msgstr "No s'ha pogut restaurar %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "executa l'operació de restauració" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Error" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "esborra el fitxer permanentment" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Esborra permanentment" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nom" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Eliminat" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n carpetes" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n fitxers" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "restaurat" @@ -72,11 +72,11 @@ msgstr "restaurat" msgid "Nothing in here. Your trash bin is empty!" msgstr "La paperera està buida!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Recupera" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Esborra" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index c82e5efacb6ed72d492e653c99490ff73a044c21..54df775184f4c73e7e69d932a10c32049d349869 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/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-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:32+0000\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" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,318 +18,325 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "No heu especificat cap nom d'aplicació" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Ajuda" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personal" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Configuració" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Usuaris" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administració" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ha fallat l'actualització \"%s\"." -#: avatar.php:56 +#: 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ó" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Tipus de fitxer desconegut" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Imatge no vàlida" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "controleu els vostres serveis web" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "no es pot obrir \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "La baixada en ZIP està desactivada." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Els fitxers s'han de baixar d'un en un." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Torna a Fitxers" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Baixeu els fitxers en trossos petits, de forma separada, o pregunteu a l'administrador." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "No heu especificat la font en instal·lar l'aplicació" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "No heu especificat href en instal·lar l'aplicació des de http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "No heu seleccionat el camí en instal·lar una aplicació des d'un fitxer local" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Els fitxers del tipus %s no són compatibles" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Ha fallat l'obertura del fitxer en instal·lar l'aplicació" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "L'aplicació no proporciona un fitxer info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "L'aplicació no es pot instal·lar perquè hi ha codi no autoritzat en l'aplicació" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "L'aplicació no es pot instal·lar perquè no és compatible amb aquesta versió d'ownCloud" -#: 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 "L'aplicació no es pot instal·lar perquè conté l'etiqueta <shipped>vertader</shipped> que no es permet per aplicacions no enviades" -#: 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 "L'aplicació no es pot instal·lar perquè la versió a info.xml/version no és la mateixa que la versió indicada des de la botiga d'aplicacions" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "La carpeta de l'aplicació ja existeix" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "No es pot crear la carpeta de l'aplicació. Arregleu els permisos. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "L'aplicació no està habilitada" -#: 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 "Error d'autenticació" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "El testimoni ha expirat. Torneu a carregar la pàgina." -#: 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 "Fitxers" -#: 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 "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Imatges" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s escriviu el nom d'usuari de la base de dades." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s escriviu el nom de la base de dades." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s no podeu usar punts en el nom de la base de dades" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nom d'usuari i/o contrasenya MS SQL no vàlids: %s" -#: 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 "Heu d'escriure un compte existent o el d'administrador." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya MySQL no vàlids" -#: 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 "Error DB: \"%s\"" -#: 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 "L'ordre en conflicte és: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "L'usuari MySQL '%s'@'localhost' ja existeix." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Elimina aquest usuari de MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "L'usuari MySQL '%s'@'%%' ja existeix" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Elimina aquest usuari de MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "No s'ha pogut establir la connexió Oracle" -#: 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 "Nom d'usuari i/o contrasenya Oracle no vàlids" -#: 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 "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s" -#: 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 "Nom d'usuari i/o contrasenya PostgreSQL no vàlids" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Establiu un nom d'usuari per l'administrador." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Establiu una contrasenya per l'administrador." -#: 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 "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Comproveu les <a href='%s'>guies d'instal·lació</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "No s'ha trobat la categoria \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "segons enrere" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fa %n minut" msgstr[1] "fa %n minuts" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fa %n hora" msgstr[1] "fa %n hores" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "avui" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "ahir" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "fa %n dia" msgstr[1] "fa %n dies" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "el mes passat" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fa %n mes" msgstr[1] "fa %n mesos" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "l'any passat" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "anys enrere" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Provocat per:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "No s'ha trobat la categoria \"%s\"" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 1053dcb2434dd984f9431d48d6e3070d331d320d..738583e7b61cccdde51bb86cb998e72b65ab2a88 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-09-22 12:56-0400\n" -"PO-Revision-Date: 2013-09-20 15:20+0000\n" +"POT-Creation-Date: 2013-10-07 12:17-0400\n" +"PO-Revision-Date: 2013-10-07 10:50+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -119,11 +119,11 @@ msgstr "No es pot canviar la contrasenya" msgid "Update to {appversion}" msgstr "Actualitza a {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Desactiva" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Habilita" @@ -131,43 +131,43 @@ msgstr "Habilita" msgid "Please wait...." msgstr "Espereu..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Error en desactivar l'aplicació" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Error en activar l'aplicació" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Actualitzant..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Error en actualitzar l'aplicació" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Error" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Actualitza" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Actualitzada" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Seleccioneu una imatge de perfil" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "Desencriptant fitxers... Espereu, això pot trigar una estona." -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Desant..." @@ -183,32 +183,32 @@ msgstr "desfés" msgid "Unable to remove user" msgstr "No s'ha pogut eliminar l'usuari" -#: 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 "Grups" -#: 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 Admin" -#: js/users.js:120 templates/users.php:170 +#: js/users.js:123 templates/users.php:170 msgid "Delete" msgstr "Esborra" -#: js/users.js:277 +#: js/users.js:280 msgid "add group" msgstr "afegeix grup" -#: js/users.js:436 +#: js/users.js:442 msgid "A valid username must be provided" msgstr "Heu de facilitar un nom d'usuari vàlid" -#: 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 en crear l'usuari" -#: js/users.js:442 +#: js/users.js:448 msgid "A valid password must be provided" msgstr "Heu de facilitar una contrasenya vàlida" @@ -343,46 +343,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Permet als usuaris compartir només amb els usuaris del seu grup" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "Permet notificacions per correu electrónic" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "Permet a l'usuari enviar notificacions de fitxers compartits per correu " + +#: templates/admin.php:178 msgid "Security" msgstr "Seguretat" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Força HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Força la connexió dels clients a %s a través d'una connexió encriptada." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Connecteu a %s a través de HTTPS per habilitar o inhabilitar l'accés SSL." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Registre" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Nivell de registre" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Més" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Menys" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Versió" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 902aea9b33ab007d3b9ff812738a376d490c80ea..79d3480d9a49e0b1a8db70e964065d7fc4abb328 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -26,17 +26,17 @@ msgstr "Ha fallat en eliminar els mapatges" msgid "Failed to delete the server configuration" msgstr "Ha fallat en eliminar la configuració del servidor" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "La configuració és vàlida i s'ha pogut establir la comunicació!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "La configuració és vàlida, però ha fallat el Bind. Comproveu les credencials i l'arranjament del servidor." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 914c6bcc2079c4c5742d66ab20e77dc7b7f74e96..0c24c9b204eb2a0658242abe251987bb4bb2df8e 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-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-29 16:57+0000\n" -"Last-Translator: dibalaj <dibalaj@dibalaj.cz>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <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" @@ -23,12 +23,17 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s s vámi sdílí »%s«" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "skupina" @@ -325,8 +330,8 @@ msgstr "Není určen typ objektu." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Chyba" @@ -346,126 +351,134 @@ msgstr "Sdílené" msgid "Share" msgstr "Sdílet" -#: js/share.js:131 js/share.js:696 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Chyba při sdílení" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Chyba při rušení sdílení" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Chyba při změně oprávnění" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "S Vámi a skupinou {group} sdílí {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "S Vámi sdílí {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Sdílet s" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Sdílet s odkazem" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Chránit heslem" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Heslo" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Povolit veřejné nahrávání" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Odeslat osobě odkaz e-mailem" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Odeslat" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Nastavit datum vypršení platnosti" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Datum vypršení platnosti" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Sdílet e-mailem:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Žádní lidé nenalezeni" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Sdílení již sdílené položky není povoleno" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Sdíleno v {item} s {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Zrušit sdílení" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "lze upravovat" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "řízení přístupu" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "vytvořit" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "aktualizovat" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "smazat" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "sdílet" -#: js/share.js:400 js/share.js:643 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:656 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:668 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:683 +#: js/share.js:694 msgid "Sending ..." msgstr "Odesílám ..." -#: js/share.js:694 +#: js/share.js:705 msgid "Email sent" msgstr "E-mail odeslán" +#: js/share.js:729 +msgid "Warning" +msgstr "Varování" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -502,7 +515,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "E-mailem Vám bude zaslán odkaz pro obnovu hesla." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Uživatelské jméno" @@ -574,8 +587,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Ahoj,\n\njenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -628,48 +651,52 @@ msgstr "Pro informace, jak správně nastavit váš server, se podívejte do <a msgid "Create an <strong>admin account</strong>" msgstr "Vytvořit <strong>účet správce</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Pokročilé" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Složka s daty" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Nastavit databázi" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "bude použito" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Uživatel databáze" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Heslo databáze" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Název databáze" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Tabulkový prostor databáze" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Hostitel databáze" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Dokončit nastavení" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -693,19 +720,27 @@ msgstr "Pokud jste v nedávné době neměnili své heslo, Váš účet může b msgid "Please change your password to secure your account again." msgstr "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Ztratili jste své heslo?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "zapamatovat" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Přihlásit" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternativní přihlášení" @@ -713,8 +748,13 @@ msgstr "Alternativní přihlášení" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Ahoj,<br><br>jenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete <br><a href=\"%s\">zde</a>.<br><br>Díky" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 5cff84e574f2a9e5345a690ac3bd63f6b67e503c..631ace328f692de359d7cfed4decf3c489822cb4 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-09-30 10:14-0400\n" -"PO-Revision-Date: 2013-09-29 16:54+0000\n" -"Last-Translator: dibalaj <dibalaj@dibalaj.cz>\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" "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" @@ -124,7 +124,7 @@ msgstr "URL nemůže být prázdná." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Název složky nelze použít. Použití názvu 'Shared' je ownCloudem rezervováno" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Chyba" @@ -168,14 +168,14 @@ msgstr "nahrazeno {new_name} s {old_name}" msgid "undo" msgstr "vrátit zpět" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n složka" msgstr[1] "%n složky" msgstr[2] "%n složek" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n soubor" @@ -215,31 +215,44 @@ msgstr "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubo msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Vaše úložiště je téměř plné ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifrování bylo vypnuto, vaše soubory jsou však stále zašifrované. Běžte prosím do osobního nastavení, kde soubory odšifrujete." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Chyba při přesunu souboru" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Název" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Velikost" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Upraveno" @@ -300,49 +313,49 @@ msgstr "Složka" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Odstraněné soubory" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Nemáte zde práva zápisu." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Zrušit sdílení" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Smazat" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Odesílaný soubor je příliš velký" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledávají, prosím čekejte." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Aktuální prohledávání" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index ffbcfd39418793aeb2dd2f4c00aa14560b9aea96..7f6ac78f5a8a9704b34cb0d5c25e05093f82c493 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-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: pstast <petr@stastny.eu>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <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" @@ -48,17 +48,24 @@ msgstr "Heslo bylo úspěšně změněno." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Změna hesla se nezdařila. Pravděpodobně nebylo stávající heslo zadáno správně." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Heslo soukromého klíče úspěšně aktualizováno." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -66,36 +73,30 @@ msgid "" "files." msgstr "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno vně systému ownCloud (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Nesplněné závislosti." -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Ujistěte se prosím, že máte nainstalované PHP 5.3.3 nebo novější a že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Prozatím byla aplikace pro šifrování vypnuta." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Následující uživatelé nemají nastavené šifrování:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Ukládám..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno zvenčí." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Můžete odemknout váš soukromý klíč ve vašem" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "osobní nastavení" @@ -112,27 +113,35 @@ msgstr "Povolit klíč pro obnovu (umožňuje obnovu uživatelských souborů v msgid "Recovery key password" msgstr "Heslo klíče pro obnovu" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Povoleno" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Zakázáno" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Změna hesla klíče pro obnovu:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Původní heslo klíče pro obnovu" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Nové heslo klíče pro obnovu" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Změnit heslo" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index a9e29ba28e7829572bdf937afd2e2ffdd15bccb1..dc83c75b232314a27efc312bc1a0f809bc335900 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-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-05 18:50+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -38,20 +38,20 @@ msgstr "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbo msgid "Error configuring Google Drive storage" msgstr "Chyba při nastavení úložiště Google Drive" -#: lib/config.php:448 +#: 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>Varování:</b> není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje." -#: lib/config.php:451 +#: 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>Varování:</b> podpora FTP v PHP není povolena nebo není nainstalována. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje." -#: lib/config.php:454 +#: 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/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 9294025f67db8a3c3b067de4d4339f7173989873..3b54400bc0c735b4b42d2d6082c5af85c929ba2e 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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-16 09:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -29,45 +29,45 @@ msgstr "Nelze trvale odstranit %s" msgid "Couldn't restore %s" msgstr "Nelze obnovit %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "provést obnovu" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Chyba" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "trvale odstranit soubor" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Trvale odstranit" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Název" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Smazáno" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n adresář" msgstr[1] "%n adresáře" msgstr[2] "%n adresářů" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n soubor" msgstr[1] "%n soubory" msgstr[2] "%n souborů" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "obnoveno" @@ -75,11 +75,11 @@ msgstr "obnoveno" msgid "Nothing in here. Your trash bin is empty!" msgstr "Žádný obsah. Váš koš je prázdný." -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Obnovit" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Smazat" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index ef75336427f2a0bda8343db33ffdfda14e5ac595..56adeee4759a71ec2fc232f071451b656e1d77c4 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 18:20+0000\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" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -20,322 +20,329 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "Nebyl zadan název aplikace" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Nápověda" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Osobní" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Nastavení" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Uživatelé" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administrace" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Selhala aktualizace verze \"%s\"." -#: avatar.php:56 +#: 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" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Neznámý typ souboru" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Chybný obrázek" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "webové služby pod Vaší kontrolou" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "nelze otevřít \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "Stahování v ZIPu je vypnuto." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Soubory musí být stahovány jednotlivě." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Zpět k souborům" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Vybrané soubory jsou příliš velké pro vytvoření ZIP souboru." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Stáhněte soubory po menších částech, samostatně, nebo se obraťte na správce." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Nebyl zadán zdroj při instalaci aplikace" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Nebyl zadán odkaz pro instalaci aplikace z HTTP" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Nebyla zadána cesta pro instalaci aplikace z místního souboru" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Archivy typu %s nejsou podporovány" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Chyba při otevírání archivu během instalace aplikace" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Aplikace neposkytuje soubor info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Aplikace nemůže být nainstalována, protože obsahuje nepovolený kód" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Aplikace nemůže být nainstalována, protože není kompatibilní s touto verzí ownCloud" -#: 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 "Aplikace nemůže být nainstalována, protože obsahuje značku\n<shipped>\n\ntrue\n</shipped>\n\ncož není povoleno pro nedodávané aplikace" -#: 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 "Aplikace nemůže být nainstalována, protože verze uvedená v info.xml/version nesouhlasí s verzí oznámenou z úložiště aplikací." -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "Adresář aplikace již existuje" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nelze vytvořit složku aplikace. Opravte práva souborů. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Aplikace není povolena" -#: 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 "Chyba ověření" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token vypršel. Obnovte prosím stránku." -#: 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 "Soubory" -#: 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 "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Obrázky" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "Zadejte uživatelské jméno %s databáze." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "Zadejte název databáze pro %s databáze." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "V názvu databáze %s nesmíte používat tečky." -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Uživatelské jméno či heslo MSSQL není platné: %s" -#: 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 "Musíte zadat existující účet či správce." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Uživatelské jméno či heslo MySQL není platné" -#: 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 "Chyba databáze: \"%s\"" -#: 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 "Příslušný příkaz byl: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Uživatel '%s'@'localhost' již v MySQL existuje." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Zrušte tohoto uživatele z MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Uživatel '%s'@'%%' již v MySQL existuje" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Zrušte tohoto uživatele z MySQL" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Spojení s Oracle nemohlo být navázáno" -#: 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 "Uživatelské jméno či heslo Oracle není platné" -#: 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 "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s" -#: 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 "Uživatelské jméno či heslo PostgreSQL není platné" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Zadejte uživatelské jméno správce." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Zadejte heslo správce." -#: 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 "Váš webový server není správně nastaven pro umožnění synchronizace, rozhraní WebDAV se zdá být rozbité." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Zkonzultujte, prosím, <a href='%s'>průvodce instalací</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Nelze nalézt kategorii \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "před pár sekundami" -#: template/functions.php:97 +#: private/template/functions.php:123 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" -#: template/functions.php:98 +#: private/template/functions.php:124 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" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "dnes" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "včera" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "před %n dnem" msgstr[1] "před %n dny" msgstr[2] "před %n dny" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "minulý měsíc" -#: template/functions.php:103 +#: private/template/functions.php:131 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" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "minulý rok" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "před lety" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Příčina:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Nelze nalézt kategorii \"%s\"" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index b979460916a764f7a852469637596425e8739de0..b488beb455011bcc0cda5f35916b373e47cd138c 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,11 @@ msgstr "Změna hesla se nezdařila" msgid "Update to {appversion}" msgstr "Aktualizovat na {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Zakázat" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Povolit" @@ -133,43 +133,43 @@ msgstr "Povolit" msgid "Please wait...." msgstr "Čekejte prosím..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Chyba při zakazování aplikace" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Chyba při povolování aplikace" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Aktualizuji..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Chyba při aktualizaci aplikace" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Chyba" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Aktualizovat" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Aktualizováno" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Vyberte profilový obrázek" -#: js/personal.js:265 +#: js/personal.js:270 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:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Ukládám..." @@ -345,46 +345,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Zabezpečení" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Vynutit HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vynutí připojování klientů k %s šifrovaným spojením." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucování SSL." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Záznam" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Úroveň zaznamenávání" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Více" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Méně" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Verze" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 69340de29b3fe05e745dec5e5ae35386c11ef57b..9d29eb9ed88fdec3b77d5fde9d465332e4f31da7 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -29,17 +29,17 @@ msgstr "Selhalo zrušení mapování." msgid "Failed to delete the server configuration" msgstr "Selhalo smazání nastavení serveru" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Nastavení je v pořádku a spojení bylo navázáno." -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurace je v pořádku, ale spojení selhalo. Zkontrolujte, prosím, nastavení serveru a přihlašovací údaje." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 1e0692c377bcd6687e23ab3b275b872009ad1074..c9b8cd1fa71b321c2d10213ba3ecaaea2b1c43a9 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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" @@ -18,12 +18,17 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "grŵp" @@ -325,8 +330,8 @@ msgstr "Nid yw'r math o wrthrych wedi cael ei nodi." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Gwall" @@ -346,126 +351,134 @@ msgstr "Rhannwyd" msgid "Share" msgstr "Rhannu" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Gwall wrth rannu" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Gwall wrth ddad-rannu" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Gwall wrth newid caniatâd" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Rhannwyd â chi a'r grŵp {group} gan {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Rhannwyd â chi gan {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Rhannu gyda" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Dolen ar gyfer rhannu" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Diogelu cyfrinair" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Cyfrinair" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "E-bostio dolen at berson" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Anfon" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Gosod dyddiad dod i ben" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Dyddiad dod i ben" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Rhannu drwy e-bost:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Heb ganfod pobl" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Does dim hawl ail-rannu" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Rhannwyd yn {item} â {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Dad-rannu" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "yn gallu golygu" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "rheolaeth mynediad" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "creu" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "diweddaru" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "dileu" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "rhannu" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Diogelwyd â chyfrinair" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Gwall wrth ddad-osod dyddiad dod i ben" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Gwall wrth osod dyddiad dod i ben" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Yn anfon ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Anfonwyd yr e-bost" +#: js/share.js:729 +msgid "Warning" +msgstr "Rhybudd" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -502,7 +515,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Byddwch yn derbyn dolen drwy e-bost i ailosod eich cyfrinair." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Enw defnyddiwr" @@ -574,7 +587,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -628,48 +651,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Crewch <strong>gyfrif gweinyddol</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Uwch" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Plygell data" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Cyflunio'r gronfa ddata" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "ddefnyddir" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Defnyddiwr cronfa ddata" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Cyfrinair cronfa ddata" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Enw cronfa ddata" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Tablespace cronfa ddata" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Gwesteiwr cronfa ddata" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Gorffen sefydlu" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -693,19 +720,27 @@ msgstr "Os na wnaethoch chi newid eich cyfrinair yn ddiweddar, gall eich cyfrif msgid "Please change your password to secure your account again." msgstr "Newidiwch eich cyfrinair i ddiogleu eich cyfrif eto." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Wedi colli'ch cyfrinair?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "cofio" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Mewngofnodi" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Mewngofnodiadau Amgen" @@ -713,7 +748,12 @@ msgstr "Mewngofnodiadau Amgen" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index e2d27216bbb5e2e9488b06f9aeacd9552246a464..c7432554834bc3c50b25b1e96327517ff01a4159 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "Cyfeiriadur annilys." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Ffeiliau" @@ -119,7 +119,7 @@ msgstr "Does dim hawl cael URL gwag." 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Gwall" @@ -163,7 +163,7 @@ msgstr "newidiwyd {new_name} yn lle {old_name}" msgid "undo" msgstr "dadwneud" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -171,7 +171,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -213,31 +213,44 @@ msgstr "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach! msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Enw" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Maint" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Addaswyd" @@ -298,49 +311,49 @@ msgstr "Plygell" msgid "From link" msgstr "Dolen o" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Ffeiliau ddilewyd" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Nid oes gennych hawliau ysgrifennu fan hyn." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Llwytho i lawr" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Dad-rannu" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Dileu" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Maint llwytho i fyny'n rhy fawr" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Sganio cyfredol" diff --git a/l10n/cy_GB/files_encryption.po b/l10n/cy_GB/files_encryption.po index 9a63fede82d64e70917e03f526b578163e696481..77fedfc65eaf7cddd92130b2b4c46fdc9b24c2e2 100644 --- a/l10n/cy_GB/files_encryption.po +++ b/l10n/cy_GB/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -44,17 +44,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -62,36 +69,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Yn cadw..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -108,27 +109,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index c9721c7493732ce0907354918b29b4641905155d..6433a79beda1e6193f5c0d8c966c54a2e77f9536 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <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,7 +17,7 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\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 "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index b9b366cf6367b6da3651a35311d407b2cbf09d96..69f8f97c375a39c14090dafb7e32d8e46efff48e 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,31 +27,31 @@ msgstr "Methwyd dileu %s yn barhaol" msgid "Couldn't restore %s" msgstr "Methwyd adfer %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "gweithrediad adfer" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Gwall" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "dileu ffeil yn barhaol" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Dileu'n barhaol" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Enw" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Wedi dileu" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -59,7 +59,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -67,7 +67,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -75,11 +75,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "Does dim byd yma. Mae eich bin sbwriel yn wag!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Adfer" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Dileu" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 63e302b3190324dbdb73bf08ee076310687af45c..40e5844db99797292dc61239461a4102918e05da 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <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,270 +17,282 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Cymorth" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personol" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Gosodiadau" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Defnyddwyr" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Gweinyddu" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "gwasanaethau gwe a reolir gennych" -#: 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 "Mae llwytho ZIP wedi ei ddiffodd." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Mae angen llwytho ffeiliau i lawr fesul un." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Nôl i Ffeiliau" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip." -#: 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 "Nid yw'r pecyn wedi'i alluogi" -#: 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 "Gwall dilysu" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Tocyn wedi dod i ben. Ail-lwythwch y dudalen." -#: 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 "Ffeiliau" -#: 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 "Testun" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Delweddau" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s rhowch enw defnyddiwr y gronfa ddata." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s rhowch enw'r gronfa ddata." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s does dim hawl defnyddio dot yn enw'r gronfa ddata" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Enw a/neu gyfrinair MS SQL annilys: %s" -#: 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 "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Enw a/neu gyfrinair MySQL annilys" -#: 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 "Gwall DB: \"%s\"" -#: 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 "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Defnyddiwr MySQL '%s'@'localhost' yn bodoli eisoes." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Gollwng y defnyddiwr hwn o MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Defnyddiwr MySQL '%s'@'%%' eisoes yn bodoli" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Gollwng y defnyddiwr hwn o MySQL." -#: 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 "Enw a/neu gyfrinair Oracle annilys" -#: 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 "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s" -#: 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 "Enw a/neu gyfrinair PostgreSQL annilys" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Creu enw defnyddiwr i'r gweinyddwr." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Gosod cyfrinair y gweinyddwr." -#: 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 "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Gwiriwch y <a href='%s'>canllawiau gosod</a> eto." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Methu canfod categori \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "eiliad yn ôl" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -288,7 +300,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 +308,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "heddiw" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "ddoe" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -312,11 +324,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "mis diwethaf" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -324,19 +336,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "y llynedd" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "blwyddyn yn ôl" -#: 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 "Methu canfod categori \"%s\"" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 6a1d7704d0f30fba1733a73812488f7baec6fa90..9c377511379ecfe64c036ad082d34d8bc055a3d6 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Gwall" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Yn cadw..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 3756eac182a21c1925d4faf31087407326076903..35fee083107f812fba0c2999ae57c13d6cc3a0c6 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/da/core.po b/l10n/da/core.po index 89530e074562234a7f497a4149c6e4833921c7ad..4cada3338a64695aef5fc71945b7d7835758ed88 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-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-24 17:20+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -21,12 +21,17 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s delte »%s« med sig" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "gruppe" @@ -96,7 +101,7 @@ msgstr "Fejl ved fjernelse af %s fra favoritter." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Ingen fil eller billede givet" #: avatar/controller.php:81 msgid "Unknown filetype" @@ -108,11 +113,11 @@ msgstr "Ugyldigt billede" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Intet midlertidigt profilbillede tilgængeligt, prøv igen" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Ingen beskæringsdata give" #: js/config.php:32 msgid "Sunday" @@ -252,7 +257,7 @@ msgstr "Vælg" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Fejl ved indlæsning af filvælger skabelon: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -268,27 +273,27 @@ msgstr "OK" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Fejl ved indlæsning af besked skabelon: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} filkonflikt" +msgstr[1] "{count} filkonflikter" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "En filkonflikt" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Hvilke filer ønsker du at beholde?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Hvis du vælger begge versioner, vil den kopierede fil få tilføjet et nummer til sit navn." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -296,19 +301,19 @@ msgstr "Annuller" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Videre" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(alle valgt)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} valgt)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Fejl ved inlæsning af; fil eksistere skabelon" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -318,8 +323,8 @@ msgstr "Objekttypen er ikke angivet." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Fejl" @@ -339,126 +344,134 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:131 js/share.js:696 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fejl under deling" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Fejl under annullering af deling" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Fejl under justering af rettigheder" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Delt med dig og gruppen {group} af {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Delt med dig af {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Del med" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Del med link" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Beskyt med adgangskode" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Kodeord" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Tillad Offentlig Upload" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "E-mail link til person" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Send" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Vælg udløbsdato" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Udløbsdato" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Del via email:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Ingen personer fundet" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Videredeling ikke tilladt" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Fjern deling" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "kan redigere" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "Adgangskontrol" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "opret" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "opdater" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "slet" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "del" -#: js/share.js:400 js/share.js:643 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:656 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:668 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:683 +#: js/share.js:694 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:694 +#: js/share.js:705 msgid "Email sent" msgstr "E-mail afsendt" +#: js/share.js:729 +msgid "Warning" +msgstr "Advarsel" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -495,7 +508,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Du vil modtage et link til at nulstille dit kodeord via email." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Brugernavn" @@ -567,8 +580,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hallo\n\ndette blot for at lade dig vide, at %s har delt %s med dig.\nSe det: %s\n\nHej" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -621,48 +644,52 @@ msgstr "For information om, hvordan du konfigurerer din server korrekt se <a hre msgid "Create an <strong>admin account</strong>" msgstr "Opret en <strong>administratorkonto</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avanceret" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "vil blive brugt" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Databasebruger" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Databasekodeord" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Navn på database" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Database tabelplads" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Databasehost" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Afslut opsætning" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -686,19 +713,27 @@ msgstr "Hvis du ikke har ændret din adgangskode for nylig, har nogen muligvis t msgid "Please change your password to secure your account again." msgstr "Skift adgangskode for at sikre din konto igen." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Mistet dit kodeord?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "husk" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Log ind" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternative logins" @@ -706,8 +741,13 @@ msgstr "Alternative logins" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Hallo,<br><br>dette blot for at lade dig vide, at %s har delt \"%s\" med dig.<br><a href=\"%s\">Se det!</a><br><br>Hej" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/da/files.po b/l10n/da/files.po index b6cf95c8d9c8bce02cb1bb77f711d54587d067ed..1bb759e43d61d9cdd7b222a2a4e0b633e52e8943 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -79,23 +79,23 @@ msgstr "Der er ikke nok plads til rådlighed" #: ajax/upload.php:120 ajax/upload.php:143 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Upload fejlede. Kunne ikke hente filinformation." #: ajax/upload.php:136 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Upload fejlede. Kunne ikke finde den uploadede fil." #: ajax/upload.php:160 msgid "Invalid directory." msgstr "Ugyldig mappe." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Filer" #: js/file-upload.js:244 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Kan ikke upload {filename} da det er enten en mappe eller indholder 0 bytes." #: js/file-upload.js:255 msgid "Not enough space available" @@ -107,7 +107,7 @@ msgstr "Upload afbrudt." #: js/file-upload.js:356 msgid "Could not get result from server." -msgstr "" +msgstr "Kunne ikke hente resultat fra server." #: js/file-upload.js:446 msgid "" @@ -122,7 +122,7 @@ msgstr "URLen kan ikke være tom." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ugyldigt mappenavn. Brug af 'Shared' er forbeholdt af ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Fejl" @@ -166,13 +166,13 @@ msgstr "erstattede {new_name} med {old_name}" msgid "undo" msgstr "fortryd" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" @@ -210,31 +210,44 @@ msgstr "Din opbevaringsplads er fyldt op, filer kan ikke opdateres eller synkron msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Krypteringen blev deaktiveret, men dine filer er stadig krypteret. Gå venligst til dine personlige indstillinger for at dekryptere dine filer. " -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" -msgstr "" +msgstr "Fejl ved flytning af fil" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Navn" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Størrelse" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Ændret" @@ -295,49 +308,49 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Slettede filer" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Du har ikke skriverettigheder her." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Download" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Fjern deling" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Slet" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Upload er for stor" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Filerne bliver indlæst, vent venligst." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Indlæser" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index aef21e07adb2612e005925b2c17d3170c1be2011..403f3a3aa67df7d40665d43bf7656f158e5a9199 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/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-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: claus_chr <claus_chr@webspeed.dk>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <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" @@ -45,17 +45,24 @@ msgstr "Kodeordet blev ændret succesfuldt" msgid "Could not change the password. Maybe the old password was not correct." msgstr "Kunne ikke ændre kodeordet. Måske var det gamle kodeord ikke korrekt." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Privat nøgle kodeord succesfuldt opdateret." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Kunne ikke opdatere det private nøgle kodeord-. Måske var det gamle kodeord forkert." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -63,36 +70,30 @@ msgid "" "files." msgstr "Din private nøgle er gyldig! Sandsynligvis blev dit kodeord ændre uden for ownCloud systemet (f.eks. dit firmas register). Du kan opdatere dit private nøgle kodeord under personlige indstillinger, for at generhverve adgang til dine krypterede filer." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Manglende betingelser." -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Følgende brugere er ikke sat op til kryptering:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Gemmer..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Din private nøgle er ikke gyldig. Måske blev dit kodeord ændre udefra." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Du kan låse din private nøgle op i din " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "Personlige indstillinger" @@ -109,27 +110,35 @@ msgstr "Aktiver gendannelsesnøgle (Tillad gendannelse af brugerfiler i tilfæld msgid "Recovery key password" msgstr "Gendannelsesnøgle kodeord" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Aktiveret" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Deaktiveret" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Skift gendannelsesnøgle kodeord:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Gammel Gendannelsesnøgle kodeord" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Ny Gendannelsesnøgle kodeord" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Skift Kodeord" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 3f0098ca8622cbe0bd828c9a32c0e1e6070a8fd7..0e92e10c117775d4e00cc837aac61de081d37fc2 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-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-16 05:00+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: claus_chr <claus_chr@webspeed.dk>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -29,43 +29,43 @@ msgstr "Kunne ikke slette %s permanent" msgid "Couldn't restore %s" msgstr "Kunne ikke gendanne %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "udfør gendannelsesoperation" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Fejl" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "slet fil permanent" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Slet permanent" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Navn" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Slettet" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Gendannet" @@ -73,11 +73,11 @@ msgstr "Gendannet" msgid "Nothing in here. Your trash bin is empty!" msgstr "Intet at se her. Din papirkurv er tom!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Gendan" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Slet" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 7d01d7a9691a614870f7f688fc6c9e43804ab26f..14c6ec889b695dfae2349ba3bf04ab308ba980d9 100644 --- a/l10n/da/lib.po +++ b/l10n/da/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-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-24 17:20+0000\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" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -20,318 +20,325 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "Intet app-navn angivet" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Hjælp" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personligt" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Indstillinger" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Brugere" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgradering af \"%s\" fejlede" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "Personligt profilbillede virker endnu ikke sammen med kryptering" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Ukendt filtype" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Ugyldigt billede" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "Webtjenester under din kontrol" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Kan ikke åbne \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "ZIP-download er slået fra." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Filer skal downloades en for en." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Tilbage til Filer" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "De markerede filer er for store til at generere en ZIP-fil." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Download filerne i små bider, seperat, eller kontakt venligst din administrator." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Ingen kilde angivet under installation af app" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Ingen href angivet under installation af app via http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Ingen sti angivet under installation af app fra lokal fil" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Arkiver af type %s understøttes ikke" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Kunne ikke åbne arkiv under installation af appen" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Der følger ingen info.xml-fil med appen" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Appen kan ikke installeres, da den indeholder ikke-tilladt kode" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Appen kan ikke installeres, da den ikke er kompatibel med denne version af ownCloud." -#: 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 "Appen kan ikke installeres, da den indeholder taget\n<shipped>\n\ntrue\n</shipped>\n\nhvilket ikke er tilladt for ikke-medfølgende apps" -#: 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 "App kan ikke installeres, da versionen i info.xml/version ikke er den samme som versionen rapporteret fra app-storen" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "App-mappe findes allerede" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Kan ikke oprette app-mappe. Ret tilladelser. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Programmet er ikke aktiveret" -#: 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 "Adgangsfejl" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Adgang er udløbet. Genindlæs siden." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Filer" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "SMS" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Billeder" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s indtast database brugernavnet." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s indtast database navnet." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s du må ikke bruge punktummer i databasenavnet." -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL brugernavn og/eller adgangskode ikke er gyldigt: %s" -#: 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 "Du bliver nødt til at indtaste en eksisterende bruger eller en administrator." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL brugernavn og/eller kodeord er ikke gyldigt." -#: 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 "Databasefejl: \"%s\"" -#: 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 "Fejlende kommando var: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL brugeren '%s'@'localhost' eksisterer allerede." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Slet denne bruger fra MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL brugeren '%s'@'%%' eksisterer allerede." -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Slet denne bruger fra MySQL" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracle forbindelsen kunne ikke etableres" -#: 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 "Oracle brugernavn og/eller kodeord er ikke gyldigt." -#: 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 "Fejlende kommando var: \"%s\", navn: %s, password: %s" -#: 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 "PostgreSQL brugernavn og/eller kodeord er ikke gyldigt." -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Angiv et admin brugernavn." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Angiv et admin kodeord." -#: 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 "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Kunne ikke finde kategorien \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "sekunder siden" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut siden" msgstr[1] "%n minutter siden" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "i dag" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "i går" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dage siden" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "sidste måned" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n måned siden" msgstr[1] "%n måneder siden" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "sidste år" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "år siden" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Forårsaget af:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Kunne ikke finde kategorien \"%s\"" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index e5f2b57e882248d17c45975d4b6fc255dbff8bce..9a2698240fadbbc91bb4af4c91449cb9e7b26f45 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-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-24 17:00+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:20+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:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Vælg et profilbillede" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekryptere filer... Vent venligst, dette kan tage lang tid. " -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Gemmer..." @@ -344,46 +344,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Tillad brugere at kun dele med brugerne i deres grupper" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "Tillad mail underretninger" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "Tillad brugere at sende mail underretninger for delte filer" + +#: templates/admin.php:178 msgid "Security" msgstr "Sikkerhed" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Gennemtving HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tving klienten til at forbinde til %s via en kryptetet forbindelse." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Forbind venligst til din %s via HTTPS for at aktivere eller deaktivere SSL tvang." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Mere" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Mindre" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Version" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 656890881c2551f5db1521ad41793ce25737339f..a07b2cbf1cc29493f0f34ad0be4f1940af440fab 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -26,17 +26,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Kunne ikke slette server konfigurationen" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigurationen er korrekt og forbindelsen kunne etableres!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/de/core.po b/l10n/de/core.po index 44eb6eec04088b407a54ffc3366c883f7998f3b0..a8c37a296758444f1147870d70108fdce1f1d9c4 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-21 10:00+0000\n" -"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,12 +25,17 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s teilte »%s« mit Ihnen" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Die E-Mail konnte nicht an folgende Benutzer gesendet werden: %s" + +#: ajax/share.php:327 msgid "group" msgstr "Gruppe" @@ -322,8 +327,8 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Fehler" @@ -343,126 +348,134 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fehler beim Teilen" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Fehler beim Aufheben der Freigabe" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Fehler beim Ändern der Rechte" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} hat dies mit Dir und der Gruppe {group} geteilt" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "{owner} hat dies mit Dir geteilt" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Teilen mit" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Über einen Link freigegeben" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passwort" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Öffentliches Hochladen erlauben" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Senden" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Setze ein Ablaufdatum" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Über eine E-Mail teilen:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Weiterverteilen ist nicht erlaubt" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Für {user} in {item} freigegeben" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "Benutzer per E-Mail informieren" + +#: js/share.js:361 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "erstellen" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "aktualisieren" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "löschen" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "teilen" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "E-Mail wurde verschickt" +#: js/share.js:729 +msgid "Warning" +msgstr "Warnung" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -499,7 +512,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Du erhältst einen Link per E-Mail, um Dein Passwort zurückzusetzen." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Benutzername" @@ -571,8 +584,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hallo,\n\nwollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.\nSchau es dir an: %s\n\nGruß!" +msgstr "Hallo,\n\nich wollte Dich nur wissen lassen, dass %s %s mit Dir teilt.\nSchaue es Dir an: %s\n\n" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "Die Freigabe wird ablaufen am %s.\n\n" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "Hallo!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -625,48 +648,52 @@ msgstr "Für Informationen, wie du deinen Server richtig konfigurierst lese bitt msgid "Create an <strong>admin account</strong>" msgstr "<strong>Administrator-Konto</strong> anlegen" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Fortgeschritten" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Installation abschließen" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "Abschließen ..." + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -690,19 +717,27 @@ msgstr "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAcc msgid "Please change your password to secure your account again." msgstr "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "merken" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Einloggen" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternative Logins" @@ -710,8 +745,13 @@ msgstr "Alternative Logins" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Hallo,<br/><br/>wollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.<br/><a href=\"%s\">Schau es dir an.</a><br/><br/>Gruß!" +"href=\"%s\">View it!</a><br><br>" +msgstr "Hallo,<br/><br/>wollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.<br/><a href=\"%s\">Schau es dir an.</a><br/><br/>" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "Die Freigabe wird ablaufen am %s.<br><br>" #: templates/update.php:3 #, php-format diff --git a/l10n/de/files.po b/l10n/de/files.po index 06bce6446387eb8109c664cdc080e6f07909f97b..542b1e6b713d66d47b27f1122ac974c0698928d9 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-09-22 12:51-0400\n" -"PO-Revision-Date: 2013-09-21 10:00+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 21:00+0000\n" "Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -125,7 +125,7 @@ msgstr "Die URL darf nicht leer sein." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Der Ordnername ist ungültig. Nur ownCloud kann den Ordner \"Shared\" anlegen" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Fehler" @@ -169,13 +169,13 @@ msgstr "{old_name} ersetzt durch {new_name}" msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" @@ -213,31 +213,44 @@ msgstr "Dein Speicher ist voll, daher können keine Dateien mehr aktualisiert od msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Dein Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Verschlüsselung-App ist aktiviert aber Deine Schlüssel sind nicht initialisiert. Bitte melden sich nochmals ab und wieder an." + +#: 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 "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisiere dein privates Schlüssel-Passwort um den Zugriff auf Deine verschlüsselten Dateien wiederherzustellen." + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind deine Dateien nach wie vor verschlüsselt. Bitte gehe zu deinen persönlichen Einstellungen, um deine Dateien zu entschlüsseln." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Fehler beim Verschieben der Datei" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Name" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Größe" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Geändert" @@ -298,49 +311,49 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Du hast hier keine Schreib-Berechtigung." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Freigabe aufheben" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Löschen" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index fbe536c708a851b7815d458c92b6c166f25309f1..3599eb69e5ae04fac8b9f4a446d2214e2827f0c3 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-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,17 +50,24 @@ msgstr "Dein Passwort wurde geändert." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort falsch." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Passwort des privaten Schlüssels erfolgreich aktualisiert" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Eventuell war das alte Passwort falsch." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,36 +75,30 @@ msgid "" "files." msgstr "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Fehlende Vorraussetzungen" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Speichern..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Ihr privater Schlüssel ist ungültig! Eventuell wurde Ihr Passwort von außerhalb geändert." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Du kannst den privaten Schlüssel ändern und zwar in deinem" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "Private Einstellungen" @@ -114,27 +115,35 @@ msgstr "Wiederherstellungsschlüssel aktivieren (ermöglicht das Wiederherstelle msgid "Recovery key password" msgstr "Wiederherstellungsschlüssel-Passwort" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Aktiviert" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Deaktiviert" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Wiederherstellungsschlüssel-Passwort ändern:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Altes Wiederherstellungsschlüssel-Passwort" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Neues Wiederherstellungsschlüssel-Passwort" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Passwort ändern" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 4d78f4aabd3f8e54de0c4ea683c2d53b146c28ae..f1cfe7ba75e8705246fa1acb08b369829136d219 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-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-15 09:10+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -28,43 +28,43 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "Wiederherstellung ausführen" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Fehler" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "Datei dauerhaft löschen" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Name" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "gelöscht" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n Ordner" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n Dateien" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Wiederhergestellt" @@ -72,11 +72,11 @@ msgstr "Wiederhergestellt" msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, der Papierkorb ist leer!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index c054df799c0356172ae0002bdef4a7104e0c24fb..cef3adec6339db57fd9d66609f5a87c4270135f6 100644 --- a/l10n/de/lib.po +++ b/l10n/de/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-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:05+0000\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" "MIME-Version: 1.0\n" @@ -21,318 +21,325 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "Es wurde kein Applikation-Name angegeben" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Hilfe" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Persönlich" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Einstellungen" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Benutzer" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administration" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." -#: avatar.php:56 +#: 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" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Unbekannter Dateityp" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Ungültiges Bild" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "Web-Services unter Deiner Kontrolle" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Öffnen von \"%s\" fehlgeschlagen" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Lade die Dateien in kleineren, separaten, Stücken herunter oder bitte deinen Administrator." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Für die Installation der Applikation wurde keine Quelle angegeben" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Der Link (href) wurde nicht angegeben um die Applikation per http zu installieren" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Bei der Installation der Applikation aus einer lokalen Datei wurde kein Pfad angegeben" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Archive vom Typ %s werden nicht unterstützt" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Das Archiv konnte bei der Installation der Applikation nicht geöffnet werden" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Die Applikation enthält keine info,xml Datei" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Die Applikation kann auf Grund von unerlaubten Code nicht installiert werden" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Die Anwendung konnte nicht installiert werden, weil Sie nicht mit dieser Version von ownCloud kompatibel ist." -#: 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 "Die Applikation konnte nicht installiert werden, da diese das <shipped>true</shipped> Tag beinhaltet und dieses, bei nicht mitausgelieferten Applikationen, nicht erlaubt ist ist" -#: 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 "Die Applikation konnte nicht installiert werden, da die Version in der info.xml nicht die gleiche Version wie im App-Store ist" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "Das Applikationsverzeichnis existiert bereits" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Es kann kein Applikationsordner erstellt werden. Bitte passen sie die Berechtigungen an. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: 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 "Fehler bei der Anmeldung" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte lade die Seite neu." -#: 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 "Dateien" -#: 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 "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Bilder" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s gib den Datenbank-Benutzernamen an." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s gib den Datenbank-Namen an." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Password ungültig: %s" -#: 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 "Du musst entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL Benutzername und/oder Passwort ungültig" -#: 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 "DB Fehler: \"%s\"" -#: 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 "Fehlerhafter Befehl war: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Lösche diesen Benutzer von MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL Benutzer '%s'@'%%' existiert bereits" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Lösche diesen Benutzer aus MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Es konnte keine Verbindung zur Oracle-Datenbank hergestellt werden" -#: 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 "Oracle Benutzername und/oder Passwort ungültig" -#: 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 "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" -#: 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 "PostgreSQL Benutzername und/oder Passwort ungültig" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Setze Administrator Benutzername." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: 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 "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Bitte prüfe die <a href='%s'>Installationsanleitungen</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Die Kategorie \"%s\" konnte nicht gefunden werden." + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "Gerade eben" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "Vor %n Minuten" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "Vor %n Stunden" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "Heute" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "Gestern" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "Vor %n Tagen" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "Letzten Monat" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "Vor %n Monaten" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "Letztes Jahr" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "Vor Jahren" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Verursacht durch:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Die Kategorie \"%s\" konnte nicht gefunden werden." diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 4cf53d6658dc8c787aab553e0eb33c64a1cabdd7..9ba08c054507234c8926fa0da9a0dd0f707dfe0b 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -122,11 +122,11 @@ msgstr "Passwort konnte nicht geändert werden" msgid "Update to {appversion}" msgstr "Aktualisiere zu {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Deaktivieren" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Aktivieren" @@ -134,43 +134,43 @@ msgstr "Aktivieren" msgid "Please wait...." msgstr "Bitte warten..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Beim Deaktivieren der Applikation ist ein Fehler aufgetreten" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Beim Aktivieren der Applikation ist ein Fehler aufgetreten" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Aktualisierung..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Fehler beim Aktualisieren der App" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Fehler" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Aktualisierung durchführen" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Wähle ein Profilbild" -#: js/personal.js:265 +#: js/personal.js:270 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:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Speichern..." @@ -346,46 +346,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "Mail-Benachrichtigung erlauben" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" + +#: templates/admin.php:178 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Erzwinge HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinde dich zu deinem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Mehr" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Weniger" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Version" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index aa8ba6bb140b628d11ce1a8cda389b430f95b07b..a1ea9218847cd3baefca70b1c002f93b243b26d7 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -29,17 +29,17 @@ msgstr "Löschen der Zuordnung fehlgeschlagen." msgid "Failed to delete the server configuration" msgstr "Löschen der Serverkonfiguration fehlgeschlagen" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfe die Servereinstellungen und Anmeldeinformationen." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index 0c8f3a25ae20d635034ebaf7305e2cd1fdc569cd..c095d3a7f6ef404260d67979cbe56a87c195bb3e 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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" @@ -18,12 +18,17 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -315,8 +320,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -336,126 +341,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -492,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -564,7 +577,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -618,48 +641,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -683,19 +710,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -703,7 +738,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index 7c47140c8437327a1450bc8776d789a2d4696794..f437a4aa3be654bbacf3fc16545d9c806925cfcf 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -292,49 +305,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/de_AT/files_encryption.po b/l10n/de_AT/files_encryption.po index 59daa54beab84f48b383bc6a2924cf006f41590e..a256dd9d3e796655bf4e70645682a28a571ad0d8 100644 --- a/l10n/de_AT/files_encryption.po +++ b/l10n/de_AT/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index c39c070ed506915444d48734ff21089b5d679321..a14686b0ec7d558ab15ab768a3953b3265c44846 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -130,43 +130,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -342,46 +342,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index cb7631fdc2f0c33104338e2d28144aa399e0e791..5117bf9fc4f829f9fafed79bcb550444ce22396f 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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" @@ -26,12 +26,17 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s teilt »%s« mit Ihnen" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "Gruppe" @@ -323,8 +328,8 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Fehler" @@ -344,126 +349,134 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fehler beim Teilen" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Fehler beim Aufheben der Freigabe" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Fehler bei der Änderung der Rechte" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Von {owner} mit Ihnen und der Gruppe {group} geteilt." -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Von {owner} mit Ihnen geteilt." -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Teilen mit" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Über einen Link teilen" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passwort" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Öffentliches Hochladen erlauben" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Senden" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Ein Ablaufdatum setzen" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Mittels einer E-Mail teilen:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "erstellen" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "aktualisieren" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "löschen" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "teilen" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Email gesendet" +#: js/share.js:729 +msgid "Warning" +msgstr "Warnung" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -500,7 +513,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Benutzername" @@ -572,8 +585,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüsse!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -626,48 +649,52 @@ msgstr "Für Informationen, wie Sie Ihren Server richtig konfigurieren lesen Sie msgid "Create an <strong>admin account</strong>" msgstr "<strong>Administrator-Konto</strong> anlegen" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Fortgeschritten" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Installation abschliessen" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -691,19 +718,27 @@ msgstr "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAcc msgid "Please change your password to secure your account again." msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "merken" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Einloggen" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternative Logins" @@ -711,8 +746,13 @@ msgstr "Alternative Logins" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Hallo,<br><br>ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.<br><a href=\"%s\">Schauen Sie es sich an!</a><br><br>Viele Grüsse!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 0d4817bb295c3369d1de86bd14ac0744f375690a..b625a8b5e4d089c7e7af1564a4a020a58545e9e2 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -95,7 +95,7 @@ msgstr "" msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Dateien" @@ -128,7 +128,7 @@ msgstr "Die URL darf nicht leer sein." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ungültiger Ordnername. Die Verwendung von «Shared» ist ownCloud vorbehalten." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Fehler" @@ -172,13 +172,13 @@ msgstr "{old_name} wurde ersetzt durch {new_name}" msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n Ordner" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -216,31 +216,44 @@ msgstr "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert ode msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei grösseren Dateien etwas dauern." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Name" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Grösse" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Geändert" @@ -301,49 +314,49 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Sie haben hier keine Schreib-Berechtigungen." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Laden Sie etwas hoch!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Freigabe aufheben" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Löschen" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Der Upload ist zu gross" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgrösse für Uploads auf diesem Server." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_CH/files_encryption.po b/l10n/de_CH/files_encryption.po index 774a24105153f864d2e897af00f9ddecb209f5b4..80f813910e100e452c31329ee33b30fce30fc656 100644 --- a/l10n/de_CH/files_encryption.po +++ b/l10n/de_CH/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-08-27 11:18-0400\n" -"PO-Revision-Date: 2013-08-26 08:20+0000\n" -"Last-Translator: FlorianScholz <work@bgstyle.de>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <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" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,17 +49,24 @@ msgstr "Das Passwort wurde erfolgreich geändert." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -67,36 +74,30 @@ msgid "" "files." msgstr "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von ausserhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Fehlende Voraussetzungen" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Speichern..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von ausserhalb geändert." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Sie können den privaten Schlüssel ändern und zwar in Ihrem" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "Persönliche Einstellungen" @@ -113,27 +114,35 @@ msgstr "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherst msgid "Recovery key password" msgstr "Wiederherstellungschlüsselpasswort" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Aktiviert" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Deaktiviert" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Wiederherstellungsschlüsselpasswort ändern" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Altes Wiederherstellungsschlüsselpasswort" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Neues Wiederherstellungsschlüsselpasswort " -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Passwort ändern" diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po index 8d124a52de5003a9a08a62d89391cd6895f2bcc6..f9b2141702e1b283ca287d60827d2df1d817a1b5 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-07 14:02+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -38,20 +38,20 @@ msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein." msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:448 +#: 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:451 +#: 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:454 +#: 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_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index 5061816a4dcccc1a649f13c72be875945e0f8cf6..2682be087d226218269183286aae9ea886ef85ee 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-08-27 11:18-0400\n" -"PO-Revision-Date: 2013-08-26 08:30+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -30,43 +30,43 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "Wiederherstellung ausführen" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Fehler" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "Datei dauerhaft löschen" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Name" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Gelöscht" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Wiederhergestellt" @@ -74,11 +74,11 @@ msgstr "Wiederhergestellt" msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, Ihr Papierkorb ist leer!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index ff7512d924018515c8a78becd42b3c613ba536ee..0125f27f4fe1f4e614957c4c935dc755db707795 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <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,318 +21,325 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "Kein App-Name spezifiziert" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Hilfe" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Persönlich" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Einstellungen" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Benutzer" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administrator" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Öffnen von \"%s\" fehlgeschlagen" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu gross, um eine ZIP-Datei zu erstellen." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator." -#: 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 "Anwendung kann wegen nicht erlaubten Codes nicht installiert werden" -#: 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 "Anwendungsverzeichnis existiert bereits" -#: 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 "Die Anwendung ist nicht aktiviert" -#: 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 "Authentifizierungs-Fehler" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." -#: 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 "Dateien" -#: 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 "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Bilder" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s geben Sie den Datenbank-Benutzernamen an." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s geben Sie den Datenbank-Namen an." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s" -#: 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 "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL Benutzername und/oder Passwort ungültig" -#: 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 "DB Fehler: \"%s\"" -#: 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 "Fehlerhafter Befehl war: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Lösche diesen Benutzer aus MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL Benutzer '%s'@'%%' existiert bereits" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Lösche diesen Benutzer aus MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden." -#: 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 "Oracle Benutzername und/oder Passwort ungültig" -#: 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 "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" -#: 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 "PostgreSQL Benutzername und/oder Passwort ungültig" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Setze Administrator Benutzername." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: 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 "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Die Kategorie «%s» konnte nicht gefunden werden." + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "Gerade eben" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "Vor %n Minuten" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "Vor %n Stunden" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "Heute" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "Gestern" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "Vor %n Tagen" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "Letzten Monat" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "Vor %n Monaten" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "Letztes Jahr" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "Vor Jahren" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Verursacht durch:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Die Kategorie «%s» konnte nicht gefunden werden." diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index 745b7eec826794434a294a4716cf4e3175364434..cbd581f01c219f0d71f6308f6299cacdbaab2e33 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -126,11 +126,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Update zu {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Deaktivieren" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Aktivieren" @@ -138,43 +138,43 @@ msgstr "Aktivieren" msgid "Please wait...." msgstr "Bitte warten...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Fehler während der Deaktivierung der Anwendung" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Fehler während der Aktivierung der Anwendung" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Update..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Es ist ein Fehler während des Updates aufgetreten" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Fehler" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Update durchführen" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 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:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Speichern..." @@ -350,46 +350,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Mehr" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Weniger" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Version" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index 04763d8c636bded0e66be510ca4637c08621f27c..203b73cdf5332cb9b2267ca99e1c95f38f8fa961 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -33,17 +33,17 @@ msgstr "Löschen der Zuordnung fehlgeschlagen." msgid "Failed to delete the server configuration" msgstr "Löschen der Serverkonfiguration fehlgeschlagen" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfen Sie die Servereinstellungen und die Anmeldeinformationen." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index cfdcd679973914db06b578c7421a0e32cb882e48..edd750f3911e6b3966fc1d0969c5221df9fc301e 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-21 10:00+0000\n" -"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,12 +25,17 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s geteilt »%s« mit Ihnen" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Die E-Mail konnte nicht an folgende Benutzer gesendet werden: %s" + +#: ajax/share.php:327 msgid "group" msgstr "Gruppe" @@ -322,8 +327,8 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Fehler" @@ -343,126 +348,134 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fehler beim Teilen" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Fehler beim Aufheben der Freigabe" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Fehler bei der Änderung der Rechte" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Von {owner} mit Ihnen und der Gruppe {group} geteilt." -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Von {owner} mit Ihnen geteilt." -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Teilen mit" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Über einen Link teilen" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passwort" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Öffentliches Hochladen erlauben" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Senden" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Ein Ablaufdatum setzen" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Mittels einer E-Mail teilen:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "Benutzer per E-Mail informieren" + +#: js/share.js:361 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "erstellen" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "aktualisieren" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "löschen" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "teilen" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Email gesendet" +#: js/share.js:729 +msgid "Warning" +msgstr "Warnung" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -499,7 +512,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Benutzername" @@ -571,8 +584,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüße!" +msgstr "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\n" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "Die Freigabe wird ablaufen am %s.\n\n" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "Hallo!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -625,48 +648,52 @@ msgstr "Für Informationen, wie Sie Ihren Server richtig konfigurieren lesen Sie msgid "Create an <strong>admin account</strong>" msgstr "<strong>Administrator-Konto</strong> anlegen" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Fortgeschritten" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Installation abschließen" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "Abschließen ..." + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -690,19 +717,27 @@ msgstr "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAcc msgid "Please change your password to secure your account again." msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "merken" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Einloggen" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternative Logins" @@ -710,8 +745,13 @@ msgstr "Alternative Logins" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Hallo,<br><br>ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.<br><a href=\"%s\">Schauen Sie es sich an!</a><br><br>Viele Grüße!" +"href=\"%s\">View it!</a><br><br>" +msgstr "Hallo,<br><br>ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.<br><a href=\"%s\">Schauen Sie es sich an!</a><br><br>" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "Die Freigabe wird ablaufen am %s.<br><br>" #: templates/update.php:3 #, php-format diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index ce852eb583f656cf5e097b31239fa1e82a247c53..9990d482852bd8ea93bccaf0afcb72db0a42d187 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-09-22 12:51-0400\n" -"PO-Revision-Date: 2013-09-21 10:00+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 21:00+0000\n" "Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -128,7 +128,7 @@ msgstr "Die URL darf nicht leer sein." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Fehler" @@ -172,13 +172,13 @@ msgstr "{old_name} wurde ersetzt durch {new_name}" msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" @@ -216,31 +216,44 @@ msgstr "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert ode msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Verschlüsselung-App ist aktiviert aber Ihre Schlüssel sind nicht initialisiert. Bitte melden sich nochmals ab und wieder an." + +#: 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 "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisieren Sie Ihr privates Schlüssel-Passwort um den Zugriff auf Ihre verschlüsselten Dateien wiederherzustellen." + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Fehler beim Verschieben der Datei" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Name" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Größe" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Geändert" @@ -301,49 +314,49 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Sie haben hier keine Schreib-Berechtigungen." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Laden Sie etwas hoch!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Freigabe aufheben" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Löschen" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index 1571956a4cf949a3a2ec11e3fc48e1b3b8d7e46a..d5577daf9208e2e4771adf5c28e734834abbdb01 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-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,17 +47,24 @@ msgstr "Das Passwort wurde erfolgreich geändert." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -65,36 +72,30 @@ msgid "" "files." msgstr "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Fehlende Voraussetzungen" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Speichern..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Sie können den privaten Schlüssel ändern und zwar in Ihrem" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "Persönliche Einstellungen" @@ -111,27 +112,35 @@ msgstr "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherst msgid "Recovery key password" msgstr "Wiederherstellungschlüsselpasswort" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Aktiviert" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Deaktiviert" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Wiederherstellungsschlüsselpasswort ändern" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Altes Wiederherstellungsschlüsselpasswort" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Neues Wiederherstellungsschlüsselpasswort " -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Passwort ändern" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 1875dbf8bfc1b42df7d5a03f165342397fb60ea9..0f2bea561273999b44d5dafd971b7115af536b9d 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-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-15 09:01+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: noxin <transifex.com@davidmainzer.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -29,43 +29,43 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "Wiederherstellung ausführen" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Fehler" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "Datei dauerhaft löschen" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Name" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Gelöscht" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Dateien" msgstr[1] "%n Dateien" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Wiederhergestellt" @@ -73,11 +73,11 @@ msgstr "Wiederhergestellt" msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, Ihr Papierkorb ist leer!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index e70bc08de29a0cb215cc018f31e5fa4cc1c2f787..18a5ff6232a7c001b0c0da98b25ccb4a92959748 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/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-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:05+0000\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" "MIME-Version: 1.0\n" @@ -20,318 +20,325 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "Es wurde kein Applikation-Name angegeben" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Hilfe" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Persönlich" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Einstellungen" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Benutzer" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administrator" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." -#: avatar.php:56 +#: 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" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Unbekannter Dateityp" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Ungültiges Bild" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Öffnen von \"%s\" fehlgeschlagen" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Für die Installation der Applikation wurde keine Quelle angegeben" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Der Link (href) wurde nicht angegeben um die Applikation per http zu installieren" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Bei der Installation der Applikation aus einer lokalen Datei wurde kein Pfad angegeben" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Archive des Typs %s werden nicht unterstützt." -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Das Archiv konnte bei der Installation der Applikation nicht geöffnet werden" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Die Applikation enthält keine info,xml Datei" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Die Applikation kann auf Grund von unerlaubten Code nicht installiert werden" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Die Anwendung konnte nicht installiert werden, weil Sie nicht mit dieser Version von ownCloud kompatibel ist." -#: 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 "Die Applikation konnte nicht installiert werden, da diese das <shipped>true</shipped> Tag beinhaltet und dieses, bei nicht mitausgelieferten Applikationen, nicht erlaubt ist ist" -#: 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 "Die Applikation konnte nicht installiert werden, da die Version in der info.xml nicht die gleiche Version wie im App-Store ist" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "Der Ordner für die Anwendung existiert bereits." -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Der Ordner für die Anwendung konnte nicht angelegt werden. Bitte überprüfen Sie die Ordner- und Dateirechte und passen Sie diese entsprechend an. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: 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 "Authentifizierungs-Fehler" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." -#: 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 "Dateien" -#: 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 "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Bilder" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s geben Sie den Datenbank-Benutzernamen an." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s geben Sie den Datenbank-Namen an." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s" -#: 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 "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL Benutzername und/oder Passwort ungültig" -#: 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 "DB Fehler: \"%s\"" -#: 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 "Fehlerhafter Befehl war: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Lösche diesen Benutzer aus MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL Benutzer '%s'@'%%' existiert bereits" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Lösche diesen Benutzer aus MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden." -#: 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 "Oracle Benutzername und/oder Passwort ungültig" -#: 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 "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" -#: 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 "PostgreSQL Benutzername und/oder Passwort ungültig" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Setze Administrator Benutzername." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: 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 "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Die Kategorie \"%s\" konnte nicht gefunden werden." + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "Gerade eben" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "Heute" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "Gestern" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "Letzten Monat" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "Letztes Jahr" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "Vor Jahren" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Verursacht durch:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Die Kategorie \"%s\" konnte nicht gefunden werden." diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 3a889bcbca6b35a5b76cd3dc715e1bb33f8f1b73..31925d001a85f63e6aeefc41a4c2051b8060b2c3 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -124,11 +124,11 @@ msgstr "Passwort konnte nicht geändert werden" msgid "Update to {appversion}" msgstr "Update zu {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Deaktivieren" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Aktivieren" @@ -136,43 +136,43 @@ msgstr "Aktivieren" msgid "Please wait...." msgstr "Bitte warten...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Beim Deaktivieren der Applikation ist ein Fehler aufgetreten" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Beim Aktivieren der Applikation ist ein Fehler aufgetreten" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Update..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Es ist ein Fehler während des Updates aufgetreten" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Fehler" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Update durchführen" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Wählen Sie ein Profilbild" -#: js/personal.js:265 +#: js/personal.js:270 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:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Speichern..." @@ -348,46 +348,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "Mail-Benachrichtigung erlauben" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" + +#: templates/admin.php:178 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Mehr" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Weniger" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Version" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 09f58790782a203fe77bc5501e82fe882d22efa6..659a5d690a8714975ef5e4ea2f13275f05aa693e 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.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-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: noxin <transifex.com@davidmainzer.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -31,17 +31,17 @@ msgstr "Löschen der Zuordnung fehlgeschlagen." msgid "Failed to delete the server configuration" msgstr "Löschen der Serverkonfiguration fehlgeschlagen" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfen Sie die Servereinstellungen und die Anmeldeinformationen." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/el/core.po b/l10n/el/core.po index 9b88a333be16ee51479db8468d8159bb74ad6a4f..67436197940a975a72b3975836fad547fe85bffa 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,17 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "Ο %s διαμοιράστηκε μαζί σας το »%s«" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "ομάδα" @@ -321,8 +326,8 @@ msgstr "Δεν καθορίστηκε ο τύπος του αντικειμέν #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Σφάλμα" @@ -342,126 +347,134 @@ msgstr "Κοινόχρηστα" msgid "Share" msgstr "Διαμοιρασμός" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Σφάλμα κατά το σταμάτημα του διαμοιρασμού" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Σφάλμα κατά την αλλαγή των δικαιωμάτων" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Διαμοιράστηκε με σας και με την ομάδα {group} του {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Διαμοιράστηκε με σας από τον {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Διαμοιρασμός με" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Διαμοιρασμός με σύνδεσμο" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Προστασία συνθηματικού" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Συνθηματικό" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Να επιτρέπεται η Δημόσια Αποστολή" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Αποστολή συνδέσμου με email " -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Αποστολή" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Ορισμός ημ. λήξης" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Ημερομηνία λήξης" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Διαμοιρασμός μέσω email:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Δεν βρέθηκε άνθρωπος" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Ξαναμοιρασμός δεν επιτρέπεται" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Διαμοιρασμός του {item} με τον {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "δυνατότητα αλλαγής" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "έλεγχος πρόσβασης" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "δημιουργία" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "ενημέρωση" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "διαγραφή" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Προστασία με συνθηματικό" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Αποστολή..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Το Email απεστάλη " +#: js/share.js:729 +msgid "Warning" +msgstr "Προειδοποίηση" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -498,7 +511,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Όνομα χρήστη" @@ -570,8 +583,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Γεια σας,\n\nσας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το %s.\nΔείτε το: %s\n\nΓεια χαρά!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -624,48 +647,52 @@ msgstr "Για πληροφορίες πως να ρυθμίσετε ορθά τ msgid "Create an <strong>admin account</strong>" msgstr "Δημιουργήστε έναν <strong>λογαριασμό διαχειριστή</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Για προχωρημένους" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Φάκελος δεδομένων" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Ρύθμιση της βάσης δεδομένων" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "θα χρησιμοποιηθούν" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Χρήστης της βάσης δεδομένων" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Συνθηματικό βάσης δεδομένων" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Κενά Πινάκων Βάσης Δεδομένων" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Διακομιστής βάσης δεδομένων" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -689,19 +716,27 @@ msgstr "Εάν δεν αλλάξατε το συνθηματικό σας προ msgid "Please change your password to secure your account again." msgstr "Παρακαλώ αλλάξτε το συνθηματικό σας για να ασφαλίσετε πάλι τον λογαριασμό σας." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Ξεχάσατε το συνθηματικό σας;" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "απομνημόνευση" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Είσοδος" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Εναλλακτικές Συνδέσεις" @@ -709,8 +744,13 @@ msgstr "Εναλλακτικές Συνδέσεις" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Γεια σας,<br><br>σας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το »%s«.<br><a href=\"%s\">Δείτε το!</a><br><br>Γεια χαρά!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/el/files.po b/l10n/el/files.po index 87c112acc670ac2b71e8c37587c4b0dcf5632a37..8794c5a9de2d761308cf349950b8486b3f2fec99 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-25 12:10+0000\n" -"Last-Translator: gtsamis <gtsamis@yahoo.com>\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" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,7 +123,7 @@ msgstr "Η URL δεν μπορεί να είναι κενή." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από το ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Σφάλμα" @@ -167,13 +167,13 @@ msgstr "αντικαταστάθηκε το {new_name} με {old_name}" msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n φάκελος" msgstr[1] "%n φάκελοι" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n αρχείο" @@ -211,31 +211,44 @@ msgstr "Ο αποθηκευτικός σας χώρος είναι γεμάτο msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Η κρυπτογράφηση απενεργοποιήθηκε, αλλά τα αρχεία σας είναι ακόμα κρυπτογραφημένα. Παρακαλούμε απενεργοποιήσετε την κρυπτογράφηση αρχείων από τις προσωπικές σας ρυθμίσεις" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Σφάλμα κατά τη μετακίνηση του αρχείου" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Όνομα" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Τροποποιήθηκε" @@ -296,49 +309,49 @@ msgstr "Φάκελος" msgid "From link" msgstr "Από σύνδεσμο" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Διαγραμμένα αρχεία" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Δεν έχετε δικαιώματα εγγραφής εδώ." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Λήψη" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Διαγραφή" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Πολύ μεγάλο αρχείο προς αποστολή" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Τρέχουσα ανίχνευση" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index 8cb29d786403323a67992bacec296aeac473567d..c960ab2c37e1468baa270bf26f9872f33f41e2be 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -46,17 +46,24 @@ msgstr "Ο κωδικός αλλάχτηκε επιτυχώς." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -64,36 +71,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Γίνεται αποθήκευση..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "προσωπικές ρυθμίσεις" @@ -110,27 +111,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Ενεργοποιημένο" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Απενεργοποιημένο" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Αλλαγή Κωδικού Πρόσβασης" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index fd0a919e9f3ef61cc4e0f3686f80f6115b9bdba5..dc88fc6766c9887091422edb5cb4d6f569287046 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -18,7 +18,7 @@ msgstr "" "Language: el\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 "Προσβαση παρασχέθηκε" @@ -26,7 +26,7 @@ msgstr "Προσβαση παρασχέθηκε" msgid "Error configuring Dropbox storage" msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Dropbox " -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Παροχή πρόσβασης" @@ -34,24 +34,24 @@ msgstr "Παροχή πρόσβασης" msgid "Please provide a valid Dropbox app key and secret." msgstr "Παρακαλούμε δώστε έγκυρο κλειδί Dropbox και μυστικό." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Σφάλμα ρυθμίζωντας αποθήκευση 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>Προσοχή:</b> Ο \"smbclient\" δεν εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση CIFS/SMB. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." -#: 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>Προσοχή:</b> Η υποστήριξη FTP στην PHP δεν ενεργοποιήθηκε ή εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση FTP. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." -#: 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/el/files_trashbin.po b/l10n/el/files_trashbin.po index d1043567c1beb64b0882c18823622f558407997c..e70d23893912f085ea3d65c160be28d1de8d6d8a 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-08-30 09:32-0400\n" -"PO-Revision-Date: 2013-08-30 09:00+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -44,27 +44,27 @@ msgstr "μόνιμη διαγραφή αρχείου" msgid "Delete permanently" msgstr "Μόνιμη διαγραφή" -#: js/trash.js:184 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Όνομα" -#: js/trash.js:185 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Διαγράφηκε" -#: js/trash.js:193 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n φάκελοι" -#: js/trash.js:199 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n αρχεία" -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "έγινε επαναφορά" @@ -72,11 +72,11 @@ msgstr "έγινε επαναφορά" msgid "Nothing in here. Your trash bin is empty!" msgstr "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Επαναφορά" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Διαγραφή" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index e26684eae7f872e552140a81709ea9b08c38a449..21de2bf03be73698db28f97d04e55d56d493a9c2 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -18,318 +18,325 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Βοήθεια" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Προσωπικά" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Ρυθμίσεις" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Χρήστες" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Διαχειριστής" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Αποτυχία αναβάθμισης του \"%s\"." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "αδυναμία ανοίγματος \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "Η λήψη ZIP απενεργοποιήθηκε." -#: 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 "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip." -#: 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 "%s εισάγετε το όνομα χρήστη της βάσης δεδομένων." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s εισάγετε το όνομα της βάσης δεδομένων." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s μάλλον δεν χρησιμοποιείτε τελείες στο όνομα της βάσης δεδομένων" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Το όνομα χρήστη και/ή ο κωδικός της MS SQL δεν είναι έγκυρα: %s" -#: 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 "Μη έγκυρος χρήστης και/ή συνθηματικό της MySQL" -#: 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 "Σφάλμα Βάσης Δεδομένων: \"%s\"" -#: 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 "Η εντολη παραβατικοτητας ηταν: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Υπάρχει ήδη ο χρήστης '%s'@'localhost' της MySQL." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Απόρριψη αυτού του χρήστη από την MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Ο χρήστης '%s'@'%%' της MySQL υπάρχει ήδη" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Απόρριψη αυτού του χρήστη από την MySQL" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Αδυναμία σύνδεσης Oracle" -#: 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 "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle" -#: 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 "Η εντολη παραβατικοτητας ηταν: \"%s\", ονομα: %s, κωδικος: %s" -#: 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 "Μη έγκυρος χρήστης και/ή συνθηματικό της PostgreSQL" -#: 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 "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Ελέγξτε ξανά τις <a href='%s'>οδηγίες εγκατάστασης</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Αδυναμία εύρεσης κατηγορίας \"%s\"" + +#: 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 "Αδυναμία εύρεσης κατηγορίας \"%s\"" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 1e84a673d35bec3e9ce12cd24527a3025f4f793d..550b8adf00b72dcc4e306fb7a2ff26e70df5038b 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ msgstr "Αδυναμία ενημέρωσης εφαρμογής" #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Εσφαλμένο συνθηματικό" #: changepassword/controller.php:42 msgid "No user supplied" @@ -117,17 +117,17 @@ msgstr "" #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "Αδυναμία αλλαγής συνθηματικού" #: js/apps.js:43 msgid "Update to {appversion}" msgstr "Ενημέρωση σε {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Απενεργοποίηση" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Ενεργοποίηση" @@ -135,43 +135,43 @@ msgstr "Ενεργοποίηση" msgid "Please wait...." msgstr "Παρακαλώ περιμένετε..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" -msgstr "" +msgstr "Σφάλμα κατά την απενεργοποίηση εισόδου" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" -msgstr "" +msgstr "Σφάλμα κατά την ενεργοποίηση της εφαρμογής" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Ενημέρωση..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Σφάλμα κατά την ενημέρωση της εφαρμογής" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Σφάλμα" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Ενημέρωση" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Ενημερώθηκε" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" -msgstr "" +msgstr "Επιλογή εικόνας προφίλ" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Γίνεται αποθήκευση..." @@ -246,7 +246,7 @@ msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κα #: templates/admin.php:33 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." -msgstr "" +msgstr "Ελέγξτε ξανά τις <a href=\"%s\">οδηγίες εγκατάστασης</a>." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -347,46 +347,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Ασφάλεια" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Επιβολή χρήσης HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Καταγραφές" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Περισσότερα" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -503,11 +511,11 @@ msgstr "" #: templates/personal.php:92 msgid "Select new from Files" -msgstr "" +msgstr "Επιλογή νέου από τα Αρχεία" #: templates/personal.php:93 msgid "Remove image" -msgstr "" +msgstr "Αφαίρεση εικόνας" #: templates/personal.php:94 msgid "Either png or jpg. Ideally square but you will be able to crop it." @@ -515,11 +523,11 @@ msgstr "" #: templates/personal.php:97 msgid "Abort" -msgstr "" +msgstr "Ματαίωση" #: templates/personal.php:98 msgid "Choose as profile image" -msgstr "" +msgstr "Επιλογή εικόνας προφίλ" #: templates/personal.php:106 templates/personal.php:107 msgid "Language" @@ -550,7 +558,7 @@ msgstr "" #: templates/personal.php:146 msgid "Log-in password" -msgstr "" +msgstr "Συνθηματικό εισόδου" #: templates/personal.php:151 msgid "Decrypt all Files" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index ac03107faae4a3c3fc8bacc3366299cc771cea22..1385bd0c1219941076dbf79c8583c9d5c132bcd8 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Αποτυχία διαγραφής ρυθμίσεων διακομιστή" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Οι ρυθμίσεις είναι έγκυρες και η σύνδεση μπορεί να πραγματοποιηθεί!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Οι ρυθμίσεις είναι έγκυρες, αλλά απέτυχε η σύνδεση. Παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή και τα διαπιστευτήρια." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index 8f786dfe211811d24c856364740767b95f23961e..61cc1f0e63e561775b51122bdd31d54cc3884dee 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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" @@ -18,12 +18,17 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -315,8 +320,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -336,126 +341,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passcode" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -492,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -564,7 +577,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -618,48 +641,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -683,19 +710,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -703,7 +738,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index ea57ff8382adcb90d04ac58fb60bfa1103223710..9601c8a74dea2189dace540d666142aad46133b6 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -292,49 +305,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Download" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/en@pirate/files_encryption.po b/l10n/en@pirate/files_encryption.po index 00358fec52b00d36c045d10fc348420482f1e6d0..8aec124f55e326e2a70322e74e0a5cea106603f5 100644 --- a/l10n/en@pirate/files_encryption.po +++ b/l10n/en@pirate/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index df5539ce0c643e2e082a721b8b26499362f601e7..d3de56502356ef20f5b7ce9bd65486ea2f795ffe 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index f9b0f0d24fa9aa0f3a1e0ab69e6dbb75dc985d50..46d46197206fb40d5026d733d963f4830e7d2c28 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-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-23 16:10+0000\n" -"Last-Translator: mnestis <transifex@mnestis.net>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <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,12 +18,17 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s shared \"%s\" with you" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "group" @@ -315,8 +320,8 @@ msgstr "The object type is not specified." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Error" @@ -336,126 +341,134 @@ msgstr "Shared" msgid "Share" msgstr "Share" -#: js/share.js:131 js/share.js:696 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Error whilst sharing" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Error whilst unsharing" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Error whilst changing permissions" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Shared with you and the group {group} by {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Shared with you by {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Share with" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Share with link" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Password protect" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Password" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Allow Public Upload" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Email link to person" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Send" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Set expiration date" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Expiration date" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Share via email:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "No people found" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Resharing is not allowed" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Shared in {item} with {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Unshare" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "can edit" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "access control" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "create" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "update" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "delete" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "share" -#: js/share.js:400 js/share.js:643 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Password protected" -#: js/share.js:656 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Error unsetting expiration date" -#: js/share.js:668 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:683 +#: js/share.js:694 msgid "Sending ..." msgstr "Sending ..." -#: js/share.js:694 +#: js/share.js:705 msgid "Email sent" msgstr "Email sent" +#: js/share.js:729 +msgid "Warning" +msgstr "Warning" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -492,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "You will receive a link to reset your password via email." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Username" @@ -564,8 +577,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -618,48 +641,52 @@ msgstr "For information how to properly configure your server, please see the <a msgid "Create an <strong>admin account</strong>" msgstr "Create an <strong>admin account</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Advanced" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Data folder" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Configure the database" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "will be used" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Database user" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Database password" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Database name" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Database host" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Finish setup" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -683,19 +710,27 @@ msgstr "If you did not change your password recently, your account may be compro msgid "Please change your password to secure your account again." msgstr "Please change your password to secure your account again." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Lost your password?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "remember" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Log in" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternative Logins" @@ -703,8 +738,13 @@ msgstr "Alternative Logins" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Hey there,<br><br>just letting you know that %s shared \"%s\" with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index bf8e9374348519fed92117ba8310a4e3cbaac06f..e65d6cb2489bcbb33f52e17551001af3b481aaaa 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-24 16:00+0000\n" -"Last-Translator: mnestis <transifex@mnestis.net>\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" "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" @@ -120,7 +120,7 @@ msgstr "URL cannot be empty." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Error" @@ -164,13 +164,13 @@ msgstr "replaced {new_name} with {old_name}" msgid "undo" msgstr "undo" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" msgstr[1] "%n folders" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" @@ -208,31 +208,44 @@ msgstr "Your storage is full, files can not be updated or synced anymore!" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Your storage is almost full ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Error moving file" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Name" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Size" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Modified" @@ -293,49 +306,49 @@ msgstr "Folder" msgid "From link" msgstr "From link" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Deleted files" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Cancel upload" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "You don’t have write permission here." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Nothing in here. Upload something!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Download" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Unshare" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Delete" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Upload too large" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "The files you are trying to upload exceed the maximum size for file uploads on this server." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Files are being scanned, please wait." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Current scanning" diff --git a/l10n/en_GB/files_encryption.po b/l10n/en_GB/files_encryption.po index b81a0ff62ab101b9efc856a30303e05adff98848..1354eff62b27e50a26014caf2311227fd3e82306 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-08-30 09:31-0400\n" -"PO-Revision-Date: 2013-08-29 16:50+0000\n" -"Last-Translator: mnestis <transifex@mnestis.net>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <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" @@ -44,17 +44,24 @@ msgstr "Password changed successfully." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Could not change the password. Maybe the old password was incorrect." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Private key password updated successfully." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Could not update the private key password. Maybe the old password was not correct." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -62,36 +69,30 @@ msgid "" "files." msgstr "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Missing requirements." -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Following users are not set up for encryption:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Saving..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Your private key is not valid! Maybe the your password was changed externally." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "personal settings" @@ -108,27 +109,35 @@ msgstr "Enable recovery key (allow to recover users files in case of password lo msgid "Recovery key password" msgstr "Recovery key password" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Enabled" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Disabled" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Change recovery key password:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Old Recovery key password" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "New Recovery key password" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Change Password" diff --git a/l10n/en_GB/files_external.po b/l10n/en_GB/files_external.po index 6190c958520e668424f15466702eae9eaa6ab2c3..1f4b3dec4dbbbbb784d6d9c99d456c6da91d0f22 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-18 16:45+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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_trashbin.po b/l10n/en_GB/files_trashbin.po index 6b87c1ddd491eb1735c1b63b833e144ca47c83f9..d32064c181322f1c542fef966d3a4a355190dcdf 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-18 16:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -64,7 +64,7 @@ msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n files" -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "restored" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 14e6d1c7a8b64f60c4aaffc3102e4116b259d959..ec48646159667e72b1777a7d445b6805d14940bf 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/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-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-18 13:32+0000\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" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -18,318 +18,325 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "No app name specified" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Help" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personal" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Settings" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Users" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Failed to upgrade \"%s\"." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "Custom profile pictures don't work with encryption yet" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Unknown filetype" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Invalid image" -#: 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 "cannot open \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "ZIP download is turned off." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Files need to be downloaded one by one." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Back to Files" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Selected files too large to generate zip file." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Download the files in smaller chunks, seperately or kindly ask your administrator." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "No source specified when installing app" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "No href specified when installing app from http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "No path specified when installing app from local file" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Archives of type %s are not supported" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Failed to open archive when installing app" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "App does not provide an info.xml file" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "App can't be installed because of unallowed code in the App" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "App can't be installed because it is not compatible with this version of ownCloud" -#: 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 "App can't be installed because it contains the <shipped>true</shipped> tag which is not allowed for non shipped apps" -#: 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 "App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "App directory already exists" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Can't create app folder. Please fix permissions. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Application is not enabled" -#: 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 "Authentication error" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expired. Please reload page." -#: 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 "Files" -#: 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 "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Images" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s enter the database username." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s enter the database name." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s you may not use dots in the database name" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL username and/or password not valid: %s" -#: 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 "You need to enter either an existing account or the administrator." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL username and/or password not valid" -#: 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 "DB Error: \"%s\"" -#: 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 "Offending command was: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL user '%s'@'localhost' exists already." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Drop this user from MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL user '%s'@'%%' already exists" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Drop this user from MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracle connection could not be established" -#: 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 "Oracle username and/or password not valid" -#: 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 "Offending command was: \"%s\", name: %s, password: %s" -#: 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 "PostgreSQL username and/or password not valid" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Set an admin username." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Set an admin password." -#: 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 "Your web server is not yet properly setup to allow files synchronisation because the WebDAV interface seems to be broken." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Please double check the <a href='%s'>installation guides</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Could not find category \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "seconds ago" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute ago" msgstr[1] "%n minutes ago" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hour ago" msgstr[1] "%n hours ago" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "today" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "yesterday" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n day go" msgstr[1] "%n days ago" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "last month" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n month ago" msgstr[1] "%n months ago" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "last year" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "years ago" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Caused by:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Could not find category \"%s\"" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index bcc1f4f64a0bcfd6e3cfa32aeed0df32deade797..2afc895a38d7b379d32fe3d021b96791a30e833c 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -118,11 +118,11 @@ msgstr "Unable to change password" msgid "Update to {appversion}" msgstr "Update to {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Disable" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Enable" @@ -130,43 +130,43 @@ msgstr "Enable" msgid "Please wait...." msgstr "Please wait...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Error whilst disabling app" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Error whilst enabling app" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Updating...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Error whilst updating app" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Error" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Update" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Updated" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Select a profile picture" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decrypting files... Please wait, this can take some time." -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Saving..." @@ -342,46 +342,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Allow users to only share with users in their groups" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Security" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Enforce HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forces the clients to connect to %s via an encrypted connection." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Log level" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "More" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Less" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Version" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index 419452929a171c42e58233090353613ba839436e..d525130a2e6adc01ace4ea49e1e9a5e7acb103fc 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -26,17 +26,17 @@ msgstr "Failed to clear the mappings." msgid "Failed to delete the server configuration" msgstr "Failed to delete the server configuration" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "The configuration is valid and the connection could be established!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "The configuration is valid, but the Bind failed. Please check the server settings and credentials." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 1ea5a607492784974565d40ec60ddb8e749a6f55..6ff322fbfa19c4baa1fcf08210f9e44044554a60 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -19,12 +19,17 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s kunhavigis “%s” kun vi" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "grupo" @@ -316,8 +321,8 @@ msgstr "Ne indikiĝis tipo de la objekto." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Eraro" @@ -337,126 +342,134 @@ msgstr "Dividita" msgid "Share" msgstr "Kunhavigi" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Eraro dum malkunhavigo" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Eraro dum ŝanĝo de permesoj" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Kunhavigita kun vi kaj la grupo {group} de {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Kunhavigita kun vi de {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Kunhavigi kun" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Kunhavigi per ligilo" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Protekti per pasvorto" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Pasvorto" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Retpoŝti la ligilon al ulo" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Sendi" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Agordi limdaton" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Limdato" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Kunhavigi per retpoŝto:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Ne troviĝis gento" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Rekunhavigo ne permesatas" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Kunhavigita en {item} kun {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Malkunhavigi" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "povas redakti" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "alirkontrolo" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "krei" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "ĝisdatigi" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "forigi" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "kunhavigi" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" +#: js/share.js:729 +msgid "Warning" +msgstr "Averto" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -493,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Uzantonomo" @@ -565,8 +578,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Saluton:\n\nNi nur sciigas vin, ke %s kunhavigis %s kun vi.\nVidu ĝin: %s\n\nĜis!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -619,48 +642,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Krei <strong>administran konton</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Progresinta" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Datuma dosierujo" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Agordi la datumbazon" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "estos uzata" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Datumbaza uzanto" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Datumbaza pasvorto" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Datumbaza nomo" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Datumbaza tabelospaco" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Datumbaza gastigo" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Fini la instalon" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -684,19 +711,27 @@ msgstr "Se vi ne ŝanĝis vian pasvorton lastatempe, via konto eble kompromitas! msgid "Please change your password to secure your account again." msgstr "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Ĉu vi perdis vian pasvorton?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "memori" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Ensaluti" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternativaj ensalutoj" @@ -704,8 +739,13 @@ msgstr "Alternativaj ensalutoj" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Saluton:<br /><br />Ni nur sciigas vin, ke %s kunhavigis “%s” kun vi.<br /><a href=\"%s\">Vidu ĝin</a><br /><br />Ĝis!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 0f9a143e22a751fe069fc3e89638d5aa21de3685..e87b33f99bfa28020f1c0d949d27e6a7930789a8 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -87,7 +87,7 @@ msgstr "" msgid "Invalid directory." msgstr "Nevalida dosierujo." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Dosieroj" @@ -120,7 +120,7 @@ msgstr "URL ne povas esti malplena." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nevalida dosierujnomo. La uzo de “Shared” estas rezervita de ownCloud." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Eraro" @@ -164,13 +164,13 @@ msgstr "anstataŭiĝis {new_name} per {old_name}" msgid "undo" msgstr "malfari" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -208,31 +208,44 @@ msgstr "Via memoro plenas, ne plu eblas ĝisdatigi aŭ sinkronigi dosierojn!" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Via memoro preskaŭ plenas ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nomo" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Grando" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Modifita" @@ -293,49 +306,49 @@ msgstr "Dosierujo" msgid "From link" msgstr "El ligilo" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Forigitaj dosieroj" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Vi ne havas permeson skribi ĉi tie." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Nenio estas ĉi tie. Alŝutu ion!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Elŝuti" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Malkunhavigi" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Forigi" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Alŝuto tro larĝa" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Dosieroj estas skanataj, bonvolu atendi." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Nuna skano" diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index 10dcc993da797a8687b9dbf52b4295b81adb248d..e607bf91723d524109969b71d7dc171067cadc85 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -44,17 +44,24 @@ msgstr "La pasvorto sukcese ŝanĝiĝis." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -62,36 +69,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Konservante..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "persona agordo" @@ -108,27 +109,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Kapabligita" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Malkapabligita" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Ŝarĝi pasvorton" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index a97c1db9c07030b1ca163600850f293cbc99e39a..236aa1811e3ec62140822bc61e8f5277f61148a2 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: eo\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 "Alirpermeso donita" @@ -25,7 +25,7 @@ msgstr "Alirpermeso donita" msgid "Error configuring Dropbox storage" msgstr "Eraro dum agordado de la memorservo Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Doni alirpermeson" @@ -33,24 +33,24 @@ msgstr "Doni alirpermeson" msgid "Please provide a valid Dropbox app key and secret." msgstr "Bonvolu provizi ŝlosilon de la aplikaĵo Dropbox validan kaj sekretan." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Eraro dum agordado de la memorservo 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 "" -#: 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 "" -#: 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/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index def217fe084d861997ff1b75f22e3a6d92e24fff..cb45265ca89b250c0fde4dde98df23e9ccd72949 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Eraro" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Forigi por ĉiam" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nomo" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +71,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Restaŭri" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Forigi" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 355fcf739840dea8af368efa5fabebfa7f731254..3c339b239cecb803f6c4217eb7cf65c12f555937 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -18,318 +18,325 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Helpo" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Persona" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Agordo" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Uzantoj" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administranto" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "TTT-servoj regataj de vi" -#: 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 "ZIP-elŝuto estas malkapabligita." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Dosieroj devas elŝutiĝi unuope." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Reen al la dosieroj" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero." -#: 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 "La aplikaĵo ne estas kapabligita" -#: 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 "Aŭtentiga eraro" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Ĵetono eksvalidiĝis. Bonvolu reŝargi la paĝon." -#: 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 "Dosieroj" -#: 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 "Teksto" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Bildoj" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s enigu la uzantonomon de la datumbazo." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s enigu la nomon de la datumbazo." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s vi ne povas uzi punktojn en la nomo de la datumbazo" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "La uzantonomo de MS SQL aŭ la pasvorto ne validas: %s" -#: 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 "La uzantonomo de MySQL aŭ la pasvorto ne validas" -#: 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 "Datumbaza eraro: “%s”" -#: 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 "La uzanto de MySQL “%s”@“localhost” jam ekzistas." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Forigi ĉi tiun uzanton el MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "La uzanto de MySQL “%s”@“%%” jam ekzistas" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Forigi ĉi tiun uzanton el MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Konekto al Oracle ne povas stariĝi" -#: 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 "La uzantonomo de Oracle aŭ la pasvorto ne validas" -#: 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 "La uzantonomo de PostgreSQL aŭ la pasvorto ne validas" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Starigi administran uzantonomon." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Starigi administran pasvorton." -#: 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 "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Bonvolu duoble kontroli la <a href='%s'>gvidilon por instalo</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Ne troviĝis kategorio “%s”" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: 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 "hodiaŭ" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "hieraŭ" -#: 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 "lastamonate" -#: 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 "lastajare" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "jaroj antaŭe" -#: 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 "Ne troviĝis kategorio “%s”" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index d049887b7b2301a7902859f3c06b4e9433f4262a..69adadb1645de86da535a13c2248bb2944802190 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Malkapabligi" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Kapabligi" @@ -129,43 +129,43 @@ msgstr "Kapabligi" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Eraro" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Ĝisdatigi" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Konservante..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Kapabligi uzantojn nur kunhavigi kun uzantoj el siaj grupoj" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Registronivelo" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Pli" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Malpli" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Eldono" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index ea6f21e2c8888bf7961c2482bc790eccdc85a219..84547fe20e885b2df44ec9d8996494528ab25406 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mariano <mstreet@kde.org.ar>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"Last-Translator: Mariano <mstreet@kde.org.ar>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,19 +24,19 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "Malsukcesis forigo de la agordo de servilo" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." @@ -51,11 +52,11 @@ msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "Ĉu daŭrigi la agordon?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "Ne eblas aldoni agordon de servilo" #: js/settings.js:111 msgid "mappings cleared" @@ -71,11 +72,11 @@ msgstr "Eraro" #: js/settings.js:141 msgid "Connection test succeeded" -msgstr "" +msgstr "Provo de konekto sukcesis" #: js/settings.js:146 msgid "Connection test failed" -msgstr "" +msgstr "Provo de konekto malsukcesis" #: js/settings.js:156 msgid "Do you really want to delete the current Server Configuration?" @@ -100,11 +101,11 @@ msgstr "" #: templates/settings.php:16 msgid "Server configuration" -msgstr "" +msgstr "Agordo de servilo" #: templates/settings.php:32 msgid "Add Server Configuration" -msgstr "" +msgstr "Aldoni agordon de servilo" #: templates/settings.php:37 msgid "Host" @@ -399,7 +400,7 @@ msgstr "" #: templates/settings.php:108 msgid "Test Configuration" -msgstr "" +msgstr "Provi agordon" #: templates/settings.php:108 msgid "Help" diff --git a/l10n/es/core.po b/l10n/es/core.po index 5e96058e82f7255f6df62da85563fe0cd978917f..93b7aa44753e4adf4c43a8515ca65d4c7c62f051 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -27,12 +27,17 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s ha compatido »%s« contigo" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "grupo" @@ -102,23 +107,23 @@ msgstr "Error eliminando %s de los favoritos." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "No se especificó ningún archivo o imagen" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Tipo de archivo desconocido" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Imagen inválida" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "No hay disponible una imagen temporal de perfil, pruebe de nuevo" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "No se proporcionó datos del recorte" #: js/config.php:32 msgid "Sunday" @@ -258,7 +263,7 @@ msgstr "Seleccionar" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Error cargando plantilla del seleccionador de archivos: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -274,27 +279,27 @@ msgstr "Aceptar" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Error cargando plantilla del mensaje: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} conflicto de archivo" +msgstr[1] "{count} conflictos de archivo" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "On conflicto de archivo" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "¿Que archivos deseas mantener?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Si seleccionas ambas versiones, el archivo copiado tendrá añadido un número en su nombre." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -302,19 +307,19 @@ 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 "(seleccionados todos)" #: 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 "" +msgstr "Error cargando plantilla de archivo existente" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -324,8 +329,8 @@ msgstr "El tipo de objeto no está especificado." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Error" @@ -345,126 +350,134 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Error al compartir" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Error al dejar de compartir" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Error al cambiar permisos" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartido contigo y el grupo {group} por {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Compartido contigo por {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Compartir con" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Compartir con enlace" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Protección con contraseña" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Contraseña" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Permitir Subida Pública" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Enviar enlace por correo electrónico a una persona" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Enviar" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Establecer fecha de caducidad" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Fecha de caducidad" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Compartir por correo electrónico:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "puede editar" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "control de acceso" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "crear" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "actualizar" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "eliminar" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "compartir" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Correo electrónico enviado" +#: js/share.js:729 +msgid "Warning" +msgstr "Precaución" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -501,7 +514,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Recibirá un enlace por correo electrónico para restablecer su contraseña" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nombre de usuario" @@ -573,8 +586,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hey,\n\nsólo te hago saber que %s ha compartido %s contigo.\nEcha un ojo en: %s\n\n¡Un saludo!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -627,48 +650,52 @@ msgstr "Para información de cómo configurar apropiadamente su servidor, por fa msgid "Create an <strong>admin account</strong>" msgstr "Crear una <strong>cuenta de administrador</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Directorio de datos" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "se utilizarán" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Completar la instalación" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -692,19 +719,27 @@ msgstr "Si no ha cambiado su contraseña recientemente, ¡puede que su cuenta es msgid "Please change your password to secure your account again." msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "¿Ha perdido su contraseña?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "recordar" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Entrar" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Inicios de sesión alternativos" @@ -712,8 +747,13 @@ msgstr "Inicios de sesión alternativos" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Hey,<br><br>sólo te hago saber que %s ha compartido %s contigo.<br><a href=\"%s\">¡Echa un ojo!</a><br><br>¡Un saludo!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/es/files.po b/l10n/es/files.po index a4058e8958c7e29d4294dabfbf61af090f1eec6a..14e84c937378c1505cb6965329d6ff6c0f17542e 100644 --- a/l10n/es/files.po +++ b/l10n/es/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -82,23 +82,23 @@ msgstr "No hay suficiente espacio disponible" #: ajax/upload.php:120 ajax/upload.php:143 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Actualización fallida. No se pudo obtener información del archivo." #: ajax/upload.php:136 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Actualización fallida. No se pudo encontrar el archivo subido" #: ajax/upload.php:160 msgid "Invalid directory." msgstr "Directorio inválido." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Archivos" #: js/file-upload.js:244 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes" #: js/file-upload.js:255 msgid "Not enough space available" @@ -110,7 +110,7 @@ msgstr "Subida cancelada." #: js/file-upload.js:356 msgid "Could not get result from server." -msgstr "" +msgstr "No se pudo obtener respuesta del servidor." #: js/file-upload.js:446 msgid "" @@ -125,7 +125,7 @@ msgstr "La URL no puede estar vacía." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nombre de carpeta invalido. El uso de \"Shared\" está reservado por ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Error" @@ -169,13 +169,13 @@ msgstr "reemplazado {new_name} con {old_name}" msgid "undo" msgstr "deshacer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n carpetas" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -213,31 +213,44 @@ msgstr "Su almacenamiento está lleno, ¡no se pueden actualizar o sincronizar m msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Su almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Su descarga está siendo preparada. Esto puede tardar algún tiempo si los archivos son grandes." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" -msgstr "" +msgstr "Error moviendo archivo" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nombre" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Tamaño" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Modificado" @@ -298,49 +311,49 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde enlace" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Archivos eliminados" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "No tiene permisos de escritura aquí." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "No hay nada aquí. ¡Suba algo!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Descargar" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Dejar de compartir" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Subida demasido grande" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Los archivos están siendo escaneados, por favor espere." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index e32866e30113b8fb588bd628a6f7705771521b1c..7638a18810ca9e390991993e5645f14b4e1e5993 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Art O. Pal <artopal@fastmail.fm>, 2013 # asaez <asaez@asaez.eu>, 2013 # gmoriello <gmoriello@gmail.com>, 2013 # mikelanabitarte <mikelanabitarte@gmail.com>, 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-09-05 07:36-0400\n" -"PO-Revision-Date: 2013-09-03 18:20+0000\n" -"Last-Translator: Korrosivo <yo@rubendelcampo.es>\n" +"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"PO-Revision-Date: 2013-10-07 16:10+0000\n" +"Last-Translator: Art O. Pal <artopal@fastmail.fm>\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" @@ -50,17 +51,24 @@ msgstr "Su contraseña ha sido cambiada" msgid "Could not change the password. Maybe the old password was not correct." msgstr "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Contraseña de clave privada actualizada con éxito." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -68,36 +76,30 @@ msgid "" "files." msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros." -#: hooks/hooks.php:51 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Requisitos incompletos." -#: hooks/hooks.php:52 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada." -#: hooks/hooks.php:250 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Los siguientes usuarios no han sido configurados para el cifrado:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Guardando..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Ir directamente a su" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Puede desbloquear su clave privada en su" - -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "opciones personales" @@ -114,27 +116,35 @@ msgstr "Habilitar la clave de recuperación (permite recuperar los ficheros del msgid "Recovery key password" msgstr "Contraseña de clave de recuperación" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "Repetir contraseña de clave de recuperación" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Habilitar" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Deshabilitado" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Cambiar la contraseña de la clave de recuperación" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Antigua clave de recuperación" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Nueva clave de recuperación" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "Repetir nueva contraseña de clave de recuperación" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Cambiar contraseña" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 2f439a315fdb2a9fe58cdc0523c076812dbfce4d..375095a68b2182c5a07344f610e4286c20a6b6b9 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-09-05 07:36-0400\n" -"PO-Revision-Date: 2013-09-03 18:16+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -45,27 +45,27 @@ msgstr "eliminar archivo permanentemente" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/trash.js:184 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nombre" -#: js/trash.js:185 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Eliminado" -#: js/trash.js:193 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/trash.js:199 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "recuperado" @@ -73,11 +73,11 @@ msgstr "recuperado" msgid "Nothing in here. Your trash bin is empty!" msgstr "No hay nada aquí. ¡Tu papelera esta vacía!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Recuperar" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 319d9f9f13be6dd00912e7ea0f14cc68333d8924..c4da9c540a1844df77d9c6507aaae5b99f5e87f2 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" "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,318 +21,325 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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" -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "No se ha especificado nombre de la aplicación" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Ayuda" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personal" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Ajustes" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Usuarios" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administración" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falló la actualización \"%s\"." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" -msgstr "" +msgstr "Las imágenes de perfil personalizadas no funcionan con el cifrado aún" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" -msgstr "" +msgstr "Tipo de archivo desconocido" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" -msgstr "" +msgstr "Imagen inválida" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "Servicios web bajo su control" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "No se puede abrir \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Volver a Archivos" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente su administrador." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "No se ha especificado origen cuando se ha instalado la aplicación" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "No href especificado cuando se ha instalado la aplicación" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Sin path especificado cuando se ha instalado la aplicación desde el fichero local" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Ficheros de tipo %s no son soportados" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Fallo de apertura de fichero mientras se instala la aplicación" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "La aplicación no suministra un fichero info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "La aplicación no puede ser instalada por tener código no autorizado en la aplicación" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "La aplicación no se puede instalar porque no es compatible con esta versión de ownCloud" -#: 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 "La aplicación no se puede instalar porque contiene la etiqueta\n<shipped>\ntrue\n</shipped>\nque no está permitida para aplicaciones no distribuidas" -#: 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 "La aplicación no puede ser instalada por que la versión en info.xml/version no es la misma que la establecida en la app store" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "El directorio de la aplicación ya existe" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "No se puede crear la carpeta de la aplicación. Corrija los permisos. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: 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 "Error de autenticación" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirado. Por favor, recarga la página." -#: 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 "Archivos" -#: 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 "Texto" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Imágenes" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s ingresar el usuario de la base de datos." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s ingresar el nombre de la base de datos" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s puede utilizar puntos en el nombre de la base de datos" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Usuario y/o contraseña de MS SQL no válidos: %s" -#: 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 "Tiene que ingresar una cuenta existente o la del administrador." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Usuario y/o contraseña de MySQL no válidos" -#: 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 "Error BD: \"%s\"" -#: 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 "Comando infractor: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Usuario MySQL '%s'@'localhost' ya existe." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Eliminar este usuario de MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Usuario MySQL '%s'@'%%' ya existe" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Eliminar este usuario de MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "No se pudo establecer la conexión a Oracle" -#: 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 "Usuario y/o contraseña de Oracle no válidos" -#: 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 "Comando infractor: \"%s\", nombre: %s, contraseña: %s" -#: 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 "Usuario y/o contraseña de PostgreSQL no válidos" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Configurar un nombre de usuario del administrador" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Configurar la contraseña del administrador." -#: 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 "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "No puede encontrar la categoria \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "hace segundos" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "hoy" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "ayer" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "mes pasado" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "año pasado" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "hace años" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Causado por:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "No puede encontrar la categoria \"%s\"" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index f11743ea9540e9259807146b56064850ce611a49..a6d1816d4c66553f540ffee70b8942a780a62515 100644 --- a/l10n/es/settings.po +++ b/l10n/es/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -95,11 +95,11 @@ msgstr "No se pudo actualizar la aplicacion." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Contraseña incorrecta" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "No se especificó un usuari" #: changepassword/controller.php:74 msgid "" @@ -116,7 +116,7 @@ msgstr "Contraseña de recuperación de administrador incorrecta. Por favor comp msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" @@ -126,11 +126,11 @@ msgstr "No se ha podido cambiar la contraseña" msgid "Update to {appversion}" msgstr "Actualizado a {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Activar" @@ -138,43 +138,43 @@ msgstr "Activar" msgid "Please wait...." msgstr "Espere, por favor...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Error mientras se desactivaba la aplicación" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Error mientras se activaba la aplicación" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Actualizando...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Error mientras se actualizaba la aplicación" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Error" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Actualizar" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Actualizado" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Seleccionar una imagen de perfil" -#: js/personal.js:265 +#: js/personal.js:270 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:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Guardando..." @@ -350,46 +350,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión encriptada." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación SSL." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Registro" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Más" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Menos" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Versión" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -514,7 +522,7 @@ msgstr "Borrar imagen" #: templates/personal.php:94 msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "" +msgstr "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo." #: templates/personal.php:97 msgid "Abort" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 5751894003734cb1c83d865760554127f3fa4827..9b772412cea7590bb423dc8c14dfcf7c9ee83023 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 18:23+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -30,17 +30,17 @@ msgstr "Ocurrió un fallo al borrar las asignaciones." msgid "Failed to delete the server configuration" msgstr "No se pudo borrar la configuración del servidor" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "¡La configuración es válida y la conexión puede establecerse!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "La configuración es válida, pero falló el Enlace. Por favor, compruebe la configuración del servidor y las credenciales." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 6c72e8a9b003fb54bd63d93216da4fa921fc6403..19341075aea58fc47a8602d87c920dcc155d5d19 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +18,17 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s compartió \"%s\" con vos" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "grupo" @@ -315,8 +320,8 @@ msgstr "El tipo de objeto no está especificado. " #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Error" @@ -336,126 +341,134 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Error al compartir" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Error en al dejar de compartir" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Error al cambiar permisos" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartido con vos y el grupo {group} por {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Compartido con vos por {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Compartir con" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Compartir con enlace" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Proteger con contraseña " -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Contraseña" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Permitir Subida Pública" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Enviar el enlace por e-mail." -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Mandar" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Asignar fecha de vencimiento" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Fecha de vencimiento" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Compartir a través de e-mail:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "No se encontraron usuarios" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "No se permite volver a compartir" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "podés editar" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "control de acceso" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "crear" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "actualizar" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "borrar" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "compartir" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de vencimiento" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Mandando..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "e-mail mandado" +#: js/share.js:729 +msgid "Warning" +msgstr "Atención" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -492,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Vas a recibir un enlace por e-mail para restablecer tu contraseña." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nombre de usuario" @@ -564,8 +577,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo acá: %s\n\n¡Chau!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -618,48 +641,52 @@ msgstr "Para información sobre cómo configurar apropiadamente tu servidor, por msgid "Create an <strong>admin account</strong>" msgstr "Crear una <strong>cuenta de administrador</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "se usarán" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Huésped de la base de datos" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Completar la instalación" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -683,19 +710,27 @@ msgstr "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta msgid "Please change your password to secure your account again." msgstr "Por favor, cambiá tu contraseña para incrementar la seguridad de tu cuenta." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "¿Perdiste tu contraseña?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "recordame" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Iniciar sesión" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Nombre alternativos de usuarios" @@ -703,8 +738,13 @@ msgstr "Nombre alternativos de usuarios" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Hola,<br><br>Simplemente te informo que %s compartió %s con vos.<br><a href=\"%s\">Miralo acá:</a><br><br>¡Chau!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index f502ba71685d650b478b77f3d70a653605f29c4f..622c0d6766b5f5c445b7f78a791b31a5d3f49f28 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "" msgid "Invalid directory." msgstr "Directorio inválido." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Archivos" @@ -123,7 +123,7 @@ msgstr "La URL no puede estar vacía" msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nombre de directorio inválido. El uso de \"Shared\" está reservado por ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Error" @@ -167,13 +167,13 @@ msgstr "se reemplazó {new_name} con {old_name}" msgid "undo" msgstr "deshacer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" @@ -211,31 +211,44 @@ msgstr "El almacenamiento está lleno, los archivos no se pueden seguir actualiz msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "El almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "El proceso de cifrado se ha desactivado, pero los archivos aún están encriptados. Por favor, vaya a la configuración personal para descifrar los archivos." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nombre" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Tamaño" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Modificado" @@ -296,49 +309,49 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde enlace" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Archivos borrados" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "No tenés permisos de escritura acá." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "No hay nada. ¡Subí contenido!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Descargar" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Dejar de compartir" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Borrar" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "El tamaño del archivo que querés subir es demasiado grande" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que intentás subir sobrepasan el tamaño máximo " -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor esperá." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index c01c38b8342c7fd7e2855425e8a4858e8faaf112..7084c3602f4d9568569d93e88d9eac837b328a9d 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/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-09-07 04:39-0400\n" -"PO-Revision-Date: 2013-09-06 20:20+0000\n" -"Last-Translator: cnngimenez\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,17 +45,24 @@ msgstr "Tu contraseña fue cambiada" msgid "Could not change the password. Maybe the old password was not correct." msgstr "No se pudo cambiar la contraseña. Comprobá que la contraseña actual sea correcta." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Contraseña de clave privada actualizada con éxito." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "No fue posible actualizar la contraseña de clave privada. Tal vez la contraseña anterior no es correcta." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -63,36 +70,30 @@ msgid "" "files." msgstr "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde fuera del sistema de ownCloud (por ej. desde tu cuenta de sistema). Podés actualizar tu clave privada en la sección de \"configuración personal\", para recuperar el acceso a tus archivos." -#: hooks/hooks.php:51 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Requisitos incompletos." -#: hooks/hooks.php:52 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Por favor, asegúrese de que PHP 5.3.3 o una versión más reciente esté instalado y que OpenSSL junto con la extensión PHP esté habilitado y configurado apropiadamente. Por ahora, la aplicación de encriptación ha sido deshabilitada." -#: hooks/hooks.php:250 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Los siguientes usuarios no fueron configurados para encriptar:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Guardando..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde afuera." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Podés desbloquear tu clave privada en tu" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "Configuración personal" @@ -109,27 +110,35 @@ msgstr "Habilitar clave de recuperación (te permite recuperar los archivos de u msgid "Recovery key password" msgstr "Contraseña de recuperación de clave" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Habilitado" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Deshabilitado" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Cambiar contraseña para recuperar la clave:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Contraseña antigua de recuperación de clave" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Nueva contraseña de recuperación de clave" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Cambiar contraseña" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 91783cd3659edb305866506388f7d8c57a4508f5..1dfe9a4ee12ed4395e64e6ab90e9495e88bb7a5a 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -18,7 +18,7 @@ msgstr "" "Language: es_AR\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 permitido" @@ -26,7 +26,7 @@ msgstr "Acceso permitido" msgid "Error configuring Dropbox storage" msgstr "Error al configurar el almacenamiento de Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Permitir acceso" @@ -34,24 +34,24 @@ msgstr "Permitir acceso" msgid "Please provide a valid Dropbox app key and secret." msgstr "Por favor, proporcioná un secreto y una contraseña válida para la aplicación 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 al configurar 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 está instalado. Montar archivos CIFS/SMB no es posible. Por favor, pedile al administrador de tu 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 está instalado. Montar archivos FTP no es posible. Por favor, pedile al administrador de tu 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_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index cf833c421a973e893adf19b510e7c60f64028c2c..abcc1f3e13784d0531ab768d34935bc873d63554 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-09-10 10:41-0400\n" -"PO-Revision-Date: 2013-09-10 13:50+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -44,27 +44,27 @@ msgstr "Borrar archivo de manera permanente" msgid "Delete permanently" msgstr "Borrar de manera permanente" -#: js/trash.js:184 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nombre" -#: js/trash.js:185 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Borrado" -#: js/trash.js:193 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n directorio" msgstr[1] "%n directorios" -#: js/trash.js:199 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "recuperado" @@ -72,11 +72,11 @@ msgstr "recuperado" msgid "Nothing in here. Your trash bin is empty!" msgstr "No hay nada acá. ¡La papelera está vacía!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Recuperar" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Borrar" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 17cc36ca73214629b1e7b17274290df6570b70c0..066f0111fa65b36ddd18cdfaa88ce0620df04510 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <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,318 +18,325 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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" -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "No fue especificado el nombre de la app" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Ayuda" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personal" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Configuración" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Usuarios" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administración" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "No se pudo actualizar \"%s\"." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "servicios web sobre los que tenés control" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "no se puede abrir \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados de a uno." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Volver a Archivos" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Descargá los archivos en partes más chicas, de forma separada, o pedíselos al administrador" -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "No se especificó el origen al instalar la app" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "No se especificó href al instalar la app" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "No se especificó PATH al instalar la app desde el archivo local" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "No hay soporte para archivos de tipo %s" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Error al abrir archivo mientras se instalaba la app" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "La app no suministra un archivo info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "No puede ser instalada la app por tener código no autorizado" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "No se puede instalar la app porque no es compatible con esta versión de ownCloud" -#: 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 "La app no se puede instalar porque contiene la etiqueta <shipped>true</shipped> que no está permitida para apps no distribuidas" -#: 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 "La app no puede ser instalada porque la versión en info.xml/version no es la misma que la establecida en el app store" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "El directorio de la app ya existe" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "No se puede crear el directorio para la app. Corregí los permisos. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: 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 "Error al autenticar" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirado. Por favor, recargá la página." -#: 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 "Archivos" -#: 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 "Texto" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Imágenes" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s Entrá el usuario de la base de datos" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s Entrá el nombre de la base de datos." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s no podés usar puntos en el nombre de la base de datos" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nombre de usuario y contraseña de MS SQL no son válidas: %s" -#: 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 "Tenés que ingresar una cuenta existente o el administrador." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Usuario y/o contraseña MySQL no válido" -#: 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 "Error DB: \"%s\"" -#: 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 "El comando no comprendido es: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Usuario MySQL '%s'@'localhost' ya existe." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Borrar este usuario de MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Usuario MySQL '%s'@'%%' ya existe" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Borrar este usuario de MySQL" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "No fue posible establecer la conexión a Oracle" -#: 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 "El nombre de usuario y/o contraseña no son válidos" -#: 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 "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\"" -#: 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 "Nombre de usuario o contraseña PostgradeSQL inválido." -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Configurar un nombre de administrador." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Configurar una contraseña de administrador." -#: 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 "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Por favor, comprobá nuevamente la <a href='%s'>guía de instalación</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "No fue posible encontrar la categoría \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "segundos atrás" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "hoy" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "ayer" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "el mes pasado" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "el año pasado" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "años atrás" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Provocado por:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "No fue posible encontrar la categoría \"%s\"" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index faf86eb46038a9ef441f0b098b6f1d20de403c8f..303428b3415494b7960e3d0d10e862f68b2d6873 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Actualizar a {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Activar" @@ -132,43 +132,43 @@ msgstr "Activar" msgid "Please wait...." msgstr "Por favor, esperá...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Se ha producido un error mientras se deshabilitaba la aplicación" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Se ha producido un error mientras se habilitaba la aplicación" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Actualizando...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Error al actualizar App" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Error" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Actualizar" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Actualizado" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "Desencriptando archivos... Por favor espere, esto puede tardar." -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Guardando..." @@ -344,46 +344,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los de sus mismos grupos" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Fuerza al cliente a conectarse a %s por medio de una conexión encriptada." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor conéctese a su %s por medio de HTTPS para habilitar o deshabilitar la característica SSL" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Nivel de Log" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Más" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Menos" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Versión" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index fbe5fabbcf3d59730d52f6ce0e0aa56eefd4ac21..e6e91d2f16d66c6df3e502785ffcc1fec3c6265a 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:47-0400\n" -"PO-Revision-Date: 2013-09-11 11:00+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -26,17 +26,17 @@ msgstr "Hubo un error al borrar las asignaciones." msgid "Failed to delete the server configuration" msgstr "Fallo al borrar la configuración del servidor" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "La configuración es válida y la conexión pudo ser establecida." -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "La configuración es válida, pero el enlace falló. Por favor, comprobá la configuración del servidor y las credenciales." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index d351beb1b75e7a83daf99191e1793c12f5492579..5e77ae7441fc161617a76b1ad72b12d96a51f03c 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -314,8 +319,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index 7405f7a77b613c39666949060f713ff4b00311b6..e8d08c5732a8fe96f1087cb8f64fb372076485ba 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -292,49 +305,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/es_MX/files_encryption.po b/l10n/es_MX/files_encryption.po index 0aa9dac64883faeae3eb2474b6bb356751e8ac06..27fa48061c02d0d55de6457220eb4f2a20a56e68 100644 --- a/l10n/es_MX/files_encryption.po +++ b/l10n/es_MX/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:39-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:51 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:52 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:250 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index 7b7e92dc23dad4c9619df0f305b382b2101fbad1..9c26ed69edeaa88a612aa827e3e981eb2894694a 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 872a66ae6aa6b9445381bcb4dcf8934c639d801a..aadb8d89be9856d75e45f7d580791e946338ae5e 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -19,12 +19,17 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s jagas sinuga »%s«" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Kirja saatmine järgnevatele kasutajatele ebaõnnestus: %s " + +#: ajax/share.php:327 msgid "group" msgstr "grupp" @@ -271,16 +276,16 @@ msgstr "Viga sõnumi malli laadimisel: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} failikonflikt" +msgstr[1] "{count} failikonflikti" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Üks failikonflikt" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Milliseid faile sa soovid alles hoida?" #: js/oc-dialogs.js:368 msgid "" @@ -294,15 +299,15 @@ msgstr "Loobu" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Jätka" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(kõik valitud)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} valitud)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" @@ -316,8 +321,8 @@ msgstr "Objekti tüüp pole määratletud." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Viga" @@ -337,126 +342,134 @@ msgstr "Jagatud" msgid "Share" msgstr "Jaga" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Viga jagamisel" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Viga jagamise lõpetamisel" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Viga õiguste muutmisel" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Jagatud sinu ja {group} grupiga {owner} poolt" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Sinuga jagas {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Jaga" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Jaga lingiga" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Parooliga kaitstud" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Parool" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Luba avalik üleslaadimine" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Saada link isikule e-postiga" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Saada" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Määra aegumise kuupäev" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Aegumise kuupäev" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Jaga e-postiga:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Ühtegi inimest ei leitud" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Edasijagamine pole lubatud" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Jagatud {item} kasutajaga {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "teavita kasutajaid e-postiga" + +#: js/share.js:361 msgid "can edit" msgstr "saab muuta" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "ligipääsukontroll" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "loo" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "uuenda" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "kustuta" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "jaga" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Saatmine ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "E-kiri on saadetud" +#: js/share.js:729 +msgid "Warning" +msgstr "Hoiatus" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -493,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Sinu parooli taastamise link saadetakse sulle e-postile." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Kasutajanimi" @@ -565,8 +578,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sinuga %s.\nVaata seda siin: %s\n\nTervitused!" +msgstr "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sulle välja %s.\nVaata seda: %s\n\n" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "Jagamine aegub %s.\n\n" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "Terekest!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -619,48 +642,52 @@ msgstr "Serveri korrektseks seadistuseks palun tutvu <a href=\"%s\" target=\"_bl msgid "Create an <strong>admin account</strong>" msgstr "Loo <strong>admini konto</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Täpsem" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Andmete kaust" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Seadista andmebaasi" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "kasutatakse" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Andmebaasi kasutaja" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Andmebaasi parool" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Andmebasi nimi" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Andmebaasi tabeliruum" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Andmebaasi host" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Lõpeta seadistamine" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "Lõpetamine ..." + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -684,19 +711,27 @@ msgstr "Kui sa ei muutnud oma parooli hiljuti, siis võib su kasutajakonto olla msgid "Please change your password to secure your account again." msgstr "Palun muuda parooli, et oma kasutajakonto uuesti turvata." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Kaotasid oma parooli?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "pea meeles" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Logi sisse" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatiivsed sisselogimisviisid" @@ -704,8 +739,13 @@ msgstr "Alternatiivsed sisselogimisviisid" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Hei,<br><br>lihtsalt annan sulle teada, et %s jagas sinuga »%s«.<br><a href=\"%s\">Vaata seda!</a><br><br>Tervitades!" +"href=\"%s\">View it!</a><br><br>" +msgstr "Hei,<br><br>lihtsalt annan sulle teada, et %s jagas sulle välja »%s«.<br><a href=\"%s\">Vaata seda!</a><br><br>" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "Jagamine aegub %s.<br><br>" #: templates/update.php:3 #, php-format diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 52bcf2de8f04e82466ccc2940d99a846869586a7..c0e88cd6cbf1dd314e0b80222890c94af9517019 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -78,17 +78,17 @@ msgstr "Saadaval pole piisavalt ruumi" #: ajax/upload.php:120 ajax/upload.php:143 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Üleslaadimine ebaõnnestus. Faili info hankimine ebaõnnestus." #: ajax/upload.php:136 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud" #: ajax/upload.php:160 msgid "Invalid directory." msgstr "Vigane kaust." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Failid" @@ -106,7 +106,7 @@ msgstr "Üleslaadimine tühistati." #: js/file-upload.js:356 msgid "Could not get result from server." -msgstr "" +msgstr "Serverist ei saadud tulemusi" #: js/file-upload.js:446 msgid "" @@ -121,7 +121,7 @@ msgstr "URL ei saa olla tühi." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Vigane kausta nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Viga" @@ -165,13 +165,13 @@ msgstr "asendas nime {old_name} nimega {new_name}" msgid "undo" msgstr "tagasi" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kataloog" msgstr[1] "%n kataloogi" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fail" @@ -209,31 +209,44 @@ msgstr "Sinu andmemaht on täis! Faile ei uuendata ega sünkroniseerita!" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Su andmemaht on peaaegu täis ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. " -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" -msgstr "" +msgstr "Viga faili eemaldamisel" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nimi" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Suurus" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Muudetud" @@ -294,49 +307,49 @@ msgstr "Kaust" msgid "From link" msgstr "Allikast" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Kustutatud failid" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Siin puudvad sul kirjutamisõigused." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Lae alla" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Lõpeta jagamine" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Kustuta" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index 317dc437d51f675c879617e0200e4c54eb8c3a80..7d195812ab34cf64ce8b9533ee895f6f877629d0 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-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <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" @@ -45,17 +45,24 @@ msgstr "Parool edukalt vahetatud." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Ei suutnud vahetada parooli. Võib-olla on vana parool valesti sisestatud." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Privaatse võtme parool edukalt uuendatud." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -63,36 +70,30 @@ msgid "" "files." msgstr "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Nõutavad on puudu." -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Järgmised kasutajad pole seadistatud krüpteeringuks:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Salvestamine..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Sinu privaatne võti ei ole õige. Võib-olla on parool vahetatud süsteemi väliselt." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Saad avada oma privaatse võtme oma" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "isiklikes seadetes" @@ -109,27 +110,35 @@ msgstr "Luba taastevõti (võimada kasutaja failide taastamine parooli kaotuse p msgid "Recovery key password" msgstr "Taastevõtme parool" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Sisse lülitatud" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Väljalülitatud" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Muuda taastevõtme parooli:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Vana taastevõtme parool" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Uus taastevõtme parool" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Muuda parooli" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index b371afd1271de812052e1dd8d3d93f0f520feb0e..19d868dd022a8e13710a967dc24c279e4b6c4768 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -18,7 +18,7 @@ msgstr "" "Language: et_EE\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 "Ligipääs on antud" @@ -26,7 +26,7 @@ msgstr "Ligipääs on antud" msgid "Error configuring Dropbox storage" msgstr "Viga Dropboxi salvestusruumi seadistamisel" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Anna ligipääs" @@ -34,24 +34,24 @@ msgstr "Anna ligipääs" msgid "Please provide a valid Dropbox app key and secret." msgstr "Palun sisesta korrektne Dropboxi rakenduse võti ja salasõna." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Viga Google Drive'i salvestusruumi seadistamisel" -#: 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>Hoiatus:</b> \"smbclient\" pole paigaldatud. Jagatud CIFS/SMB hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata SAMBA tugi." -#: 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>Hoiatus:</b> PHP-s puudub FTP tugi. Jagatud FTP hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi." -#: 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/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 438e1fb60a32ad7e5883aa4814f2b48df03e9063..358fc25d35c586ffd3c8881f967e85b0208d1645 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" -"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 17:48+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" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index c40a30127450abe3aa111fa06f781cc464a8135d..702903680163d1cb4088bc3327aec8fb5d4eca5c 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-22 10:36-0400\n" -"PO-Revision-Date: 2013-08-22 09:50+0000\n" -"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 17:46+0000\n" +"Last-Translator: Rivo Zängov <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" @@ -28,43 +28,43 @@ msgstr "%s jäädavalt kustutamine ebaõnnestus" msgid "Couldn't restore %s" msgstr "%s ei saa taastada" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "soorita taastamine" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Viga" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "kustuta fail jäädavalt" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Kustuta jäädavalt" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nimi" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Kustutatud" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n kataloogi" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fail" msgstr[1] "%n faili" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "taastatud" @@ -72,11 +72,11 @@ msgstr "taastatud" msgid "Nothing in here. Your trash bin is empty!" msgstr "Siin pole midagi. Sinu prügikast on tühi!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Taasta" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Kustuta" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index cfb0bfca4a332d1a1cc6a8e6a8ae1b2d88437939..b44937bc612f42e582c09be549e7f125381569de 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" -"PO-Revision-Date: 2013-08-12 10:40+0000\n" -"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 17:47+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" @@ -40,6 +40,6 @@ msgstr "Rohkem versioone..." msgid "No other versions available" msgstr "Muid versioone pole saadaval" -#: js/versions.js:149 +#: js/versions.js:147 msgid "Restore" msgstr "Taasta" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 70416438c1697bb616156da03333adfece834c5c..282b7282180acc91d5407470288ab78d54385421 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/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-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-18 08:20+0000\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" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -19,318 +19,325 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "Ühegi rakendi nime pole määratletud" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Abiinfo" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Isiklik" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Seaded" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Kasutajad" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ebaõnnestunud uuendus \"%s\"." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "Kohandatud profiili pildid ei toimi veel koos krüpteeringuga" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Tundmatu failitüüp" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Vigane pilt" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "veebitenused sinu kontrolli all" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "ei suuda avada \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "ZIP-ina allalaadimine on välja lülitatud." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Failid tuleb alla laadida ükshaaval." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Tagasi failide juurde" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Valitud failid on ZIP-faili loomiseks liiga suured." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Laadi failid alla eraldi väiksemate osadena või küsi nõu oma süsteemiadminstraatorilt." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Ühegi lähteallikat pole rakendi paigalduseks määratletud" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Ühtegi aadressi pole määratletud rakendi paigalduseks veebist" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Ühtegi teed pole määratletud paigaldamaks rakendit kohalikust failist" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "%s tüüpi arhiivid pole toetatud" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Arhiivi avamine ebaõnnestus rakendi paigalduse käigus" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Rakend ei paku ühtegi info.xml faili" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Rakendit ei saa paigaldada, kuna sisaldab lubamatud koodi" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Rakendit ei saa paigaldada, kuna see pole ühilduv selle ownCloud versiooniga." -#: 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 "Rakendit ei saa paigaldada, kuna see sisaldab \n<shipped>\n\ntrue\n</shipped>\nmärgendit, mis pole lubatud mitte veetud (non shipped) rakendites" -#: 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 "Rakendit ei saa paigaldada, kuna selle versioon info.xml/version pole sama, mis on märgitud rakendite laos." -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "Rakendi kataloog on juba olemas" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Ei saa luua rakendi kataloogi. Palun korrigeeri õigusi. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Rakendus pole sisse lülitatud" -#: 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 "Autentimise viga" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Kontrollkood aegus. Paelun lae leht uuesti." -#: 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 "Failid" -#: 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 "Tekst" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Pildid" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s sisesta andmebaasi kasutajatunnus." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s sisesta andmebaasi nimi." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s punktide kasutamine andmebaasi nimes pole lubatud" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL kasutajatunnus ja/või parool pole õiged: %s" -#: 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 "Sisesta kas juba olemasolev konto või administrator." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL kasutajatunnus ja/või parool pole õiged" -#: 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 "Andmebaasi viga: \"%s\"" -#: 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 "Tõrkuv käsk oli: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL kasutaja '%s'@'localhost' on juba olemas." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Kustuta see kasutaja MySQL-ist" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL kasutaja '%s'@'%%' on juba olemas" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Kustuta see kasutaja MySQL-ist." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Ei suuda luua ühendust Oracle baasiga" -#: 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 "Oracle kasutajatunnus ja/või parool pole õiged" -#: 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 "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s" -#: 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 "PostgreSQL kasutajatunnus ja/või parool pole õiged" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Määra admin kasutajanimi." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Määra admini parool." -#: 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 "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Ei leia kategooriat \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "sekundit tagasi" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutit tagasi" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n tundi tagasi" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "täna" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "eile" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n päeva tagasi" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "viimasel kuul" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n kuud tagasi" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "viimasel aastal" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "aastat tagasi" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Põhjustaja:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Ei leia kategooriat \"%s\"" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 72d666a7d0bca3b7d2bf895d3f7de6c08144698e..1d42da7efad500eaa58869c1d4a5f8596c3bd0a7 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 17:40+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" @@ -119,11 +119,11 @@ msgstr "Ei suuda parooli muuta" msgid "Update to {appversion}" msgstr "Uuenda versioonile {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Lülita välja" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Lülita sisse" @@ -131,43 +131,43 @@ msgstr "Lülita sisse" msgid "Please wait...." msgstr "Palun oota..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Viga rakendi keelamisel" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Viga rakendi lubamisel" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Uuendamine..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Viga rakenduse uuendamisel" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Viga" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Uuenda" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Uuendatud" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Vali profiili pilt" -#: js/personal.js:265 +#: js/personal.js:270 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:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Salvestamine..." @@ -343,46 +343,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "Luba teavitused e-postiga" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi" + +#: templates/admin.php:178 msgid "Security" msgstr "Turvalisus" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Sunni peale HTTPS-i kasutamine" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Sunnib kliente %s ühenduma krüpteeritult." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Palun ühendu oma %s üle HTTPS või keela SSL kasutamine." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Logi" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Logi tase" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Rohkem" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Vähem" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Versioon" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index bdc18ee7dba2d96261d67095384f7411ee590d8b..8f617c04fdce33627b3a8cc3f7a1dca6288760cd 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: pisike.sipelgas <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" @@ -27,17 +27,17 @@ msgstr "Vastendususte puhastamine ebaõnnestus." msgid "Failed to delete the server configuration" msgstr "Serveri seadistuse kustutamine ebaõnnestus" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Seadistus on korrektne ning ühendus on olemas!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Seadistus on korrektne, kuid ühendus ebaõnnestus. Palun kontrolli serveri seadeid ja ühenduseks kasutatavaid kasutajatunnuseid." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/et_EE/user_webdavauth.po b/l10n/et_EE/user_webdavauth.po index 575c051d6aa67cd14e87661a0ae745e09e8a4f9d..1b5c1513160fe5bef16ec207e70bcc413cde38ef 100644 --- a/l10n/et_EE/user_webdavauth.po +++ b/l10n/et_EE/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-13 09:11-0400\n" -"PO-Revision-Date: 2013-08-12 10:40+0000\n" -"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 17:40+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" @@ -32,4 +32,4 @@ 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 "ownCloud saadab kasutajatunnused sellel aadressil. See vidin kontrollib vastust ning tuvastab HTTP vastuskoodid 401 ja 403 kui vigased, ning kõik teised vastused kui korrektsed kasutajatunnused." +msgstr "ownCloud saadab kasutajatunnused sellel aadressil. See vidin kontrollib vastust ning tuvastab ning tõlgendab HTTP olekukoodid 401 ja 403 valedeks andmeteks ning kõik teised vastused korrektseteks andmeteks." diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 456f415e68465aa26ed9f4be4a5219ed581ee08a..e4d54a357abb42f4e0d0faaf891cb8e8542bc60b 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -19,12 +19,17 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s-ek »%s« zurekin partekatu du" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "taldea" @@ -316,8 +321,8 @@ msgstr "Objetu mota ez dago zehaztuta." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Errorea" @@ -337,126 +342,134 @@ msgstr "Elkarbanatuta" msgid "Share" msgstr "Elkarbanatu" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Errore bat egon da elkarbanaketa desegitean" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Errore bat egon da baimenak aldatzean" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner}-k zu eta {group} taldearekin elkarbanatuta" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "{owner}-k zurekin elkarbanatuta" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Elkarbanatu honekin" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Elkarbanatu lotura batekin" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Babestu pasahitzarekin" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Pasahitza" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Gaitu igotze publikoa" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Postaz bidali lotura " -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Bidali" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Ezarri muga data" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Muga data" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Elkarbanatu eposta bidez:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Ez da inor aurkitu" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Berriz elkarbanatzea ez dago baimendua" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "{user}ekin {item}-n elkarbanatuta" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "editatu dezake" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "sarrera kontrola" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "sortu" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "eguneratu" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "ezabatu" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "elkarbanatu" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Eposta bidalia" +#: js/share.js:729 +msgid "Warning" +msgstr "Abisua" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -493,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Erabiltzaile izena" @@ -565,8 +578,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Kaixo\n\n%s-ek %s zurekin partekatu duela jakin dezazun.\nIkusi ezazu: %s\n\nOngi jarraitu!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -619,48 +642,52 @@ msgstr "Zure zerbitrzaria ongi konfiguratzeko, mezedez <a href=\"%s\" target=\"_ msgid "Create an <strong>admin account</strong>" msgstr "Sortu <strong>kudeatzaile kontu<strong> bat" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Aurreratua" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Datuen karpeta" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Konfiguratu datu basea" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "erabiliko da" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Datubasearen erabiltzailea" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Datubasearen pasahitza" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Datubasearen izena" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Datu basearen taula-lekua" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Datubasearen hostalaria" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Bukatu konfigurazioa" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -684,19 +711,27 @@ msgstr "Zure pasahitza orain dela gutxi ez baduzu aldatu, zure kontua arriskuan msgid "Please change your password to secure your account again." msgstr "Mesedez aldatu zure pasahitza zure kontua berriz segurtatzeko." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Galdu duzu pasahitza?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "gogoratu" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Hasi saioa" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Beste erabiltzaile izenak" @@ -704,8 +739,13 @@ msgstr "Beste erabiltzaile izenak" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Kaixo<br><br>%s-ek %s zurekin partekatu duela jakin dezazun.<br><a href=\"%s\">\nIkusi ezazu</a><br><br>Ongi jarraitu!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 46b992abc377bd4e6e6aad9e66de80f2100753e2..0de4715c44d59cefa3e7e01ec62174926be15f93 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 11:40+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -78,23 +78,23 @@ msgstr "Ez dago behar aina leku erabilgarri," #: ajax/upload.php:120 ajax/upload.php:143 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu." #: ajax/upload.php:136 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "Igoerak huts egin du. Ezin izan da igotako fitxategia aurkitu" #: ajax/upload.php:160 msgid "Invalid directory." msgstr "Baliogabeko karpeta." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Fitxategiak" #: js/file-upload.js:244 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Ezin da {filename} igo karpeta bat delako edo 0 byte dituelako" #: js/file-upload.js:255 msgid "Not enough space available" @@ -106,7 +106,7 @@ msgstr "Igoera ezeztatuta" #: js/file-upload.js:356 msgid "Could not get result from server." -msgstr "" +msgstr "Ezin da zerbitzaritik emaitzik lortu" #: js/file-upload.js:446 msgid "" @@ -121,7 +121,7 @@ msgstr "URLa ezin da hutsik egon." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Karpeta izne baliogabea. \"Shared\" karpeta erabilpena OwnCloudentzat erreserbaturik dago." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Errorea" @@ -165,13 +165,13 @@ msgstr " {new_name}-k {old_name} ordezkatu du" msgid "undo" msgstr "desegin" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "karpeta %n" msgstr[1] "%n karpeta" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "fitxategi %n" @@ -179,7 +179,7 @@ msgstr[1] "%n fitxategi" #: js/filelist.js:541 msgid "{dirs} and {files}" -msgstr "" +msgstr "{dirs} eta {files}" #: js/filelist.js:731 js/filelist.js:769 msgid "Uploading %n file" @@ -209,31 +209,44 @@ msgstr "Zure biltegiratzea beterik dago, ezingo duzu aurrerantzean fitxategirik msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Enkriptazio aplikazioa gaituta dago baina zure gakoak ez daude konfiguratuta, mesedez saioa bukatu eta berriro hasi" + +#: 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 "Enkriptazio aplikaziorako gako pribatu okerra. Mesedez eguneratu zure gako pribatuaren pasahitza zure ezarpen pertsonaletan zure enkriptatuko fitxategietarako sarrera berreskuratzeko." + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Enkriptazioa desgaitua izan da baina zure fitxategiak oraindik enkriptatuta daude. Mesedez jo zure ezarpen pertsonaletara zure fitxategiak dekodifikatzeko." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. " -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" -msgstr "" +msgstr "Errorea fitxategia mugitzean" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Izena" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Tamaina" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Aldatuta" @@ -294,49 +307,49 @@ msgstr "Karpeta" msgid "From link" msgstr "Estekatik" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Ezabatutako fitxategiak" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Ez duzu hemen idazteko baimenik." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Ez dago ezer. Igo zerbait!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Deskargatu" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Ez elkarbanatu" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Ezabatu" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Igoera handiegia da" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Orain eskaneatzen ari da" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index 456db338acb5eb11b1b4e059d06c731d0bfb9fec..5c6eb3d83dcf0c5118c7011bd9a9f32c2ceb8f2f 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -46,17 +46,24 @@ msgstr "Pasahitza behar bezala aldatu da." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Ezin izan da pasahitza aldatu. Agian pasahitz zaharra okerrekoa da." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Gako pasahitz pribatu behar bezala eguneratu da." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Ezin izan da gako pribatu pasahitza eguneratu. Agian pasahitz zaharra okerrekoa da." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -64,36 +71,30 @@ msgid "" "files." msgstr "Zure gako pribatua ez da egokia! Seguruaski zure pasahitza ownCloud sistematik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Eskakizun batzuk ez dira betetzen." -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." -msgstr "" +msgstr "Mesedez ziurtatu PHP 5.3.3 edo berriago bat instalatuta dagoela eta OpenSSL PHP hedapenarekin gaitua eta ongi konfiguratuta dagoela. Oraingoz, enkriptazio aplikazioa desgaituta dago." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Hurrengo erabiltzaileak ez daude enktriptatzeko konfiguratutak:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Gordetzen..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Zure gako pribatua ez da egokia! Agian zure pasahitza kanpotik aldatu da." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Zure gako pribatua desblokeatu dezakezu zure" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "ezarpen pertsonalak" @@ -110,27 +111,35 @@ msgstr "Gaitu berreskurapen gakoa (erabiltzaileen fitxategiak berreskuratzea aha msgid "Recovery key password" msgstr "Berreskuratze gako pasahitza" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Gaitua" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Ez-gaitua" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Aldatu berreskuratze gako pasahitza:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Berreskuratze gako pasahitz zaharra" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Berreskuratze gako pasahitz berria" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Aldatu Pasahitza" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index fbe14c6446f23379ff8f0a0dc8c492311c329d1e..2acc8341c153955375b8e31c85b02b6eff5363db 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -18,7 +18,7 @@ msgstr "" "Language: eu\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 "Sarrera baimendua" @@ -26,7 +26,7 @@ msgstr "Sarrera baimendua" msgid "Error configuring Dropbox storage" msgstr "Errore bat egon da Dropbox biltegiratzea konfiguratzean" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Baimendu sarrera" @@ -34,24 +34,24 @@ msgstr "Baimendu sarrera" msgid "Please provide a valid Dropbox app key and secret." msgstr "Mesedez eman baliozkoa den Dropbox app giltza eta sekretua" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Errore bat egon da Google Drive biltegiratzea konfiguratzean" -#: 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>Abisua:</b> \"smbclient\" ez dago instalatuta. CIFS/SMB partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." -#: 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>Abisua:</b> PHPren FTP modulua ez dago instalatuta edo gaitua. FTP partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." -#: 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/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index bdb27c8c6d930d148bd6ae8830eb31c2db9b0f5c..1daada37714da776f93bb4cc9fcbc66a6cec6bc3 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-08-25 19:18-0400\n" -"PO-Revision-Date: 2013-08-25 23:10+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -28,43 +28,43 @@ msgstr "Ezin izan da %s betirako ezabatu" msgid "Couldn't restore %s" msgstr "Ezin izan da %s berreskuratu" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "berreskuratu" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Errorea" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "ezabatu fitxategia betirako" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Ezabatu betirako" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Izena" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Ezabatuta" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "karpeta %n" msgstr[1] "%n karpeta" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "fitxategi %n" msgstr[1] "%n fitxategi" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Berrezarrita" @@ -72,11 +72,11 @@ msgstr "Berrezarrita" msgid "Nothing in here. Your trash bin is empty!" msgstr "Ez dago ezer ez. Zure zakarrontzia hutsik dago!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Berrezarri" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Ezabatu" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 017ba3930fdcbda0ceed168b497eb87eafb74e74..7a64a4d3f4e81ef0af08467e95225d28ddf8fa86 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -19,318 +19,325 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Laguntza" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Pertsonala" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Ezarpenak" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Erabiltzaileak" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ezin izan da \"%s\" eguneratu." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "ezin da \"%s\" ireki" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "ZIP deskarga ez dago gaituta." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Fitxategiak banan-banan deskargatu behar dira." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Itzuli fitxategietara" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Deskargatu fitzategiak zati txikiagoetan, banan-banan edo eskatu mesedez zure administradoreari" -#: 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 "Aplikazioa ez dago gaituta" -#: 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 "Autentifikazio errorea" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Tokena iraungitu da. Mesedez birkargatu orria." -#: 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 "Fitxategiak" -#: 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 "Testua" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Irudiak" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s sartu datu basearen erabiltzaile izena." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s sartu datu basearen izena." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s ezin duzu punturik erabili datu basearen izenean." -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL erabiltzaile izena edota pasahitza ez dira egokiak: %s" -#: 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 "Existitzen den kontu bat edo administradorearena jarri behar duzu." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL erabiltzaile edota pasahitza ez dira egokiak." -#: 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 "DB errorea: \"%s\"" -#: 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 "Errorea komando honek sortu du: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL '%s'@'localhost' erabiltzailea dagoeneko existitzen da." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Ezabatu erabiltzaile hau MySQLtik" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL '%s'@'%%' erabiltzailea dagoeneko existitzen da" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Ezabatu erabiltzaile hau MySQLtik." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Ezin da Oracle konexioa sortu" -#: 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 "Oracle erabiltzaile edota pasahitza ez dira egokiak." -#: 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 "Errorea komando honek sortu du: \"%s\", izena: %s, pasahitza: %s" -#: 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 "PostgreSQL erabiltzaile edota pasahitza ez dira egokiak." -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Ezarri administraziorako erabiltzaile izena." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Ezarri administraziorako pasahitza." -#: 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 "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Mesedez begiratu <a href='%s'>instalazio gidak</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Ezin da \"%s\" kategoria aurkitu" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "segundu" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "orain dela minutu %n" msgstr[1] "orain dela %n minutu" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "orain dela ordu %n" msgstr[1] "orain dela %n ordu" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "gaur" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "atzo" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "orain dela egun %n" msgstr[1] "orain dela %n egun" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "joan den hilabetean" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "orain dela hilabete %n" msgstr[1] "orain dela %n hilabete" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "joan den urtean" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "urte" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Honek eraginda:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Ezin da \"%s\" kategoria aurkitu" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index fc5007d8579ca4c521cea726e599ba9112e7aa8a..44fe562161fa6c5fd9315a842a7ea4ff50317c49 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -119,11 +119,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Eguneratu {appversion}-ra" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Ez-gaitu" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Gaitu" @@ -131,43 +131,43 @@ msgstr "Gaitu" msgid "Please wait...." msgstr "Itxoin mesedez..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Eguneratzen..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Errorea aplikazioa eguneratzen zen bitartean" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Errorea" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Eguneratu" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Eguneratuta" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Gordetzen..." @@ -343,46 +343,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Segurtasuna" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Behartu HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Mesedez konektatu zure %s-ra HTTPS bidez SSL zehaztapenak aldatzeko." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Erregistro maila" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Gehiago" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 7712a3e1d1820702340fc20e5949033305ab2338..e54163f03be19316b51000c057bb0c65efbde0e6 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -26,17 +26,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Zerbitzariaren konfigurazioa ezabatzeak huts egin du" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigurazioa egokia da eta konexioa ezarri daiteke!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurazioa ongi dago, baina Bind-ek huts egin du. Mesedez egiaztatu zerbitzariaren ezarpenak eta kredentzialak." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 971a51aa87d4922df501a2467e3e5d5421d0bf24..4854035993f56c77e207520c944380109b4e50cf 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,17 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s به اشتراک گذاشته شده است »%s« توسط شما" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "گروه" @@ -310,8 +315,8 @@ msgstr "نوع شی تعیین نشده است." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "خطا" @@ -331,126 +336,134 @@ msgstr "اشتراک گذاشته شده" msgid "Share" msgstr "اشتراکگذاری" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "خطا درحال لغو اشتراک" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "خطا در حال تغییر مجوز" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "به اشتراک گذاشته شده با شما و گروه {گروه} توسط {دارنده}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "به اشتراک گذاشته شده با شما توسط { دارنده}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "به اشتراک گذاشتن با" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "به اشتراک گذاشتن با پیوند" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "نگهداری کردن رمز عبور" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "گذرواژه" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "اجازه آپلود عمومی" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "پیوند ایمیل برای شخص." -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "ارسال" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "تنظیم تاریخ انقضا" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "تاریخ انقضا" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "از طریق ایمیل به اشتراک بگذارید :" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "کسی یافت نشد" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "اشتراک گذاری مجدد مجاز نمی باشد" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "به اشتراک گذاشته شده در {بخش} با {کاربر}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "لغو اشتراک" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "می توان ویرایش کرد" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "کنترل دسترسی" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "ایجاد" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "به روز" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "پاک کردن" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "ایمیل ارسال شد" +#: js/share.js:729 +msgid "Warning" +msgstr "اخطار" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -487,7 +500,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "شما یک نامه الکترونیکی حاوی یک لینک جهت بازسازی گذرواژه دریافت خواهید کرد." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "نام کاربری" @@ -559,8 +572,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "اینجا,⏎\n فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده %s توسط شما.⏎\nمشاهده آن : %s⏎\n⏎\nبه سلامتی!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -613,48 +636,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "لطفا یک <strong> شناسه برای مدیر</strong> بسازید" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "پیشرفته" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "پوشه اطلاعاتی" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "پایگاه داده برنامه ریزی شدند" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "استفاده خواهد شد" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "شناسه پایگاه داده" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "پسورد پایگاه داده" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "نام پایگاه داده" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "جدول پایگاه داده" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "هاست پایگاه داده" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "اتمام نصب" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -678,19 +705,27 @@ msgstr "اگر شما اخیرا رمزعبور را تغییر نداده ای msgid "Please change your password to secure your account again." msgstr "لطفا رمز عبور خود را تغییر دهید تا مجددا حساب شما در امان باشد." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "آیا گذرواژه تان را به یاد نمی آورید؟" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "بیاد آوری" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "ورود" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "ورود متناوب" @@ -698,8 +733,13 @@ msgstr "ورود متناوب" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "اینجا<br><br> فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده»%s« توسط شما.<br><a href=\"%s\"> مشاهده آن!</a><br><br> به سلامتی!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/fa/files.po b/l10n/fa/files.po index b6b078cb364677190b8f0c488da46da9b4f40873..2117e92f8028ab796ffe70684c2b6403e9bdfdc2 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -87,7 +87,7 @@ msgstr "" msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر می باشد." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "پروندهها" @@ -120,7 +120,7 @@ msgstr "URL نمی تواند خالی باشد." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "نام پوشه نامعتبر است. استفاده از 'به اشتراک گذاشته شده' متعلق به ownCloud میباشد." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "خطا" @@ -164,12 +164,12 @@ msgstr "{نام_جدید} با { نام_قدیمی} جایگزین شد." msgid "undo" msgstr "بازگشت" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -205,31 +205,44 @@ msgstr "فضای ذخیره ی شما کاملا پر است، بیش از ای msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "نام" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "اندازه" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "تاریخ" @@ -290,49 +303,49 @@ msgstr "پوشه" msgid "From link" msgstr "از پیوند" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "فایل های حذف شده" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "شما اجازه ی نوشتن در اینجا را ندارید" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "اینجا هیچ چیز نیست." -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "دانلود" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "لغو اشتراک" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "حذف" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "بازرسی کنونی" diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index 4e22a4b067c3dd3ee1a18c2d75baeffd53af4d5c..4ec1a7fd3d4f7ce8ceefc0df6c8f983a7723e25c 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -44,17 +44,24 @@ msgstr "رمزعبور با موفقیت تغییر یافت." msgid "Could not change the password. Maybe the old password was not correct." msgstr "رمزعبور را نمیتواند تغییر دهد. شاید رمزعبورقدیمی صحیح نمی باشد." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "رمزعبور کلید خصوصی با موفقیت به روز شد." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "رمزعبور کلید خصوصی را نمی تواند به روز کند. شاید رمزعبور قدیمی صحیح نمی باشد." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -62,36 +69,30 @@ msgid "" "files." msgstr "کلید خصوصی شما معتبر نمی باشد! ظاهرا رمزعبور شما بیرون از سیستم ownCloud تغییر یافته است( به عنوان مثال پوشه سازمان شما ). شما میتوانید رمزعبور کلید خصوصی خود را در تنظیمات شخصیتان به روز کنید تا بتوانید به فایل های رمزگذاری شده خود را دسترسی داشته باشید." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "نیازمندی های گمشده" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "در حال ذخیره سازی..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "کلید خصوصی شما معتبر نیست! شاید رمزعبوراز بیرون تغییر یافته است." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "شما میتوانید کلید خصوصی خود را باز نمایید." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "تنظیمات شخصی" @@ -108,27 +109,35 @@ msgstr "فعال کردن کلید بازیابی(اجازه بازیابی فا msgid "Recovery key password" msgstr "رمزعبور کلید بازیابی" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "فعال شده" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "غیرفعال شده" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "تغییر رمزعبور کلید بازیابی:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "رمزعبور قدیمی کلید بازیابی " -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "رمزعبور جدید کلید بازیابی" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "تغییر رمزعبور" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 28f6d3cb82a8616d45f3c0af8f849bc32efc9c3e..1b71738f6715ce31f4da23fc1100d0557fa3f014 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -18,7 +18,7 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\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 "مجوز دسترسی صادر شد" @@ -26,7 +26,7 @@ msgstr "مجوز دسترسی صادر شد" msgid "Error configuring Dropbox storage" msgstr "خطا به هنگام تنظیم فضای دراپ باکس" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr " مجوز اعطا دسترسی" @@ -34,24 +34,24 @@ msgstr " مجوز اعطا دسترسی" msgid "Please provide a valid Dropbox app key and secret." msgstr "لطفا یک کلید و کد امنیتی صحیح دراپ باکس وارد کنید." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "خطا به هنگام تنظیم فضای 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 "خطا: \"smbclient\" نصب نشده است. نصب و راه اندازی سهام CIFS/SMB امکان پذیر نمیباشد. لطفا از مدیریت سازمان خود برای راه اندازی آن درخواست نمایید." -#: 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 "خطا: پشتیبانی FTP در PHP فعال نمی باشد یا نصب نشده است. نصب و راه اندازی از سهم های FTP امکان پذیر نمی باشد. لطفا از مدیر سیستم خود برای راه اندازی آن درخواست\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/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index b7425ae04baa4d38799800679999bf5754f49bf7..28c2687c75b4372954cb26dfe7fbaa1f1d7f4ed3 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -27,41 +27,41 @@ msgstr "%s را نمی توان برای همیشه حذف کرد" msgid "Couldn't restore %s" msgstr "%s را نمی توان بازگرداند" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "انجام عمل بازگرداندن" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "خطا" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "حذف فایل برای همیشه" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "حذف قطعی" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "نام" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "حذف شده" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +69,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است." -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "بازیابی" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "حذف" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index e395df54b9c3498bfa6955ab940c41e1c8d81461..c324c0ab23a553edc5e9e7141ff551808f408204 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -18,314 +18,321 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "راهنما" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "شخصی" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "تنظیمات" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "کاربران" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "مدیر" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "%s نام کاربری پایگاه داده را وارد نمایید." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s نام پایگاه داده را وارد نمایید." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s شما نباید از نقطه در نام پایگاه داده استفاده نمایید." -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "نام کاربری و / یا رمزعبور MS SQL معتبر نیست: %s" -#: 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 "نام کاربری و / یا رمزعبور MySQL معتبر نیست." -#: 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 "خطای پایگاه داده: \"%s\"" -#: 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 "دستور متخلف عبارت است از: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "کاربرMySQL '%s'@'localhost' درحال حاضر موجود است." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "این کاربر را از MySQL حذف نمایید." -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "کاربر'%s'@'%%' MySQL در حال حاضر موجود است." -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "این کاربر را از MySQL حذف نمایید." -#: 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 "دستور متخلف عبارت است از: \"%s\"، نام: \"%s\"، رمزعبور:\"%s\"" -#: 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 "PostgreSQL نام کاربری و / یا رمزعبور معتبر نیست." -#: 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 "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "لطفاً دوباره <a href='%s'>راهنمای نصب</a>را بررسی کنید." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "دسته بندی %s یافت نشد" + +#: 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 "دسته بندی %s یافت نشد" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 7a3f31a719578a9029284557c81befb2c732819a..f153db6b6a5579014d20b99292522722fe4a6e3b 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "بهنگام شده به {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "غیرفعال" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "فعال" @@ -130,43 +130,43 @@ msgstr "فعال" msgid "Please wait...." msgstr "لطفا صبر کنید ..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "در حال بروز رسانی..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "خطا در هنگام بهنگام سازی برنامه" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "خطا" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "به روز رسانی" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "بروز رسانی انجام شد" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "در حال ذخیره سازی..." @@ -342,46 +342,54 @@ msgid "Allow users to only share with users in their groups" msgstr "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "امنیت" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "وادار کردن HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "سطح ورود" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "بیشتر" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "کمتر" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "نسخه" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 9496f28720188d6dbd5f48741d9144acfd015419..a17c03601361b3d4683d2aa50ca01b2593591761 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -26,17 +26,17 @@ msgstr "عدم موفقیت در پاک کردن نگاشت." msgid "Failed to delete the server configuration" msgstr "عملیات حذف پیکربندی سرور ناموفق ماند" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "پیکربندی معتبر است و ارتباط می تواند برقرار شود" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "پیکربندی معتبراست، اما اتصال شکست خورد. لطفا تنظیمات و اعتبارهای سرور را بررسی کنید." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 2a2872e255064f2b9055f652039ca48935301792..ba49002c8a7db1bfcbb35522fef36708cd7bfb85 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-21 10:30+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <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" @@ -19,12 +19,17 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s jakoi kohteen »%s« kanssasi" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Sähköpostin lähetys seuraaville käyttäjille epäonnistui: %s" + +#: ajax/share.php:327 msgid "group" msgstr "ryhmä" @@ -94,7 +99,7 @@ msgstr "Virhe poistaessa kohdetta %s suosikeista." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Kuvaa tai tiedostoa ei määritelty" #: avatar/controller.php:81 msgid "Unknown filetype" @@ -280,13 +285,13 @@ msgstr "" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Mitkä tiedostot haluat säilyttää?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Jos valitset kummatkin versiot, kopioidun tiedoston nimeen lisätään numero." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -316,8 +321,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Virhe" @@ -337,126 +342,134 @@ msgstr "Jaettu" msgid "Share" msgstr "Jaa" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Virhe jaettaessa" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Virhe jakoa peruttaessa" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Virhe oikeuksia muuttaessa" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Jaettu sinun ja ryhmän {group} kanssa käyttäjän {owner} toimesta" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Jaettu kanssasi käyttäjän {owner} toimesta" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Jaa" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Jaa linkillä" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Suojaa salasanalla" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Salasana" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Salli julkinen lähetys" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Lähetä linkki sähköpostitse" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Lähetä" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Aseta päättymispäivä" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Päättymispäivä" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Jaa sähköpostilla:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Henkilöitä ei löytynyt" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Jakaminen uudelleen ei ole salittu" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "{item} on jaettu {user} kanssa" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Peru jakaminen" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "ilmoita käyttäjälle sähköpostitse" + +#: js/share.js:361 msgid "can edit" msgstr "voi muokata" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "Pääsyn hallinta" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "luo" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "päivitä" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "poista" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "jaa" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Sähköposti lähetetty" +#: js/share.js:729 +msgid "Warning" +msgstr "Varoitus" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -493,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Saat sähköpostitse linkin nollataksesi salasanan." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Käyttäjätunnus" @@ -565,8 +578,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hei!\n\n%s jakoi kohteen %s kanssasi.\nKatso se tästä: %s\n\nNäkemiin!" +msgstr "Hei sinä!\n\n%s jakoi kohteen %s kanssasi.\nTutustu siihen: %s\n\n" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "Jakaminen päättyy %s.\n\n" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -619,48 +642,52 @@ msgstr "Lisätietoja palvelimen asetuksien määrittämisestä on saatavilla <a msgid "Create an <strong>admin account</strong>" msgstr "Luo <strong>ylläpitäjän tunnus</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Lisäasetukset" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Datakansio" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Muokkaa tietokantaa" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "käytetään" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Tietokannan käyttäjä" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Tietokannan salasana" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Tietokannan nimi" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Tietokannan taulukkotila" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Tietokantapalvelin" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Viimeistele asennus" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "Valmistellaan…" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -684,19 +711,27 @@ msgstr "Jos et vaihtanut salasanaasi äskettäin, tilisi saattaa olla murrettu." msgid "Please change your password to secure your account again." msgstr "Vaihda salasanasi suojataksesi tilisi uudelleen." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Unohditko salasanasi?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "muista" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Kirjaudu sisään" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Vaihtoehtoiset kirjautumiset" @@ -704,8 +739,13 @@ msgstr "Vaihtoehtoiset kirjautumiset" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Hei!<br><br>%s jakoi kohteen »%s« kanssasi.<br><a href=\"%s\">Katso se tästä!</a><br><br>Näkemiin!" +"href=\"%s\">View it!</a><br><br>" +msgstr "Hei sinä!<br><br>%s jakoi kohteen »%s« kanssasi.<br><a href=\"%s\">Tutustu siihen!</a><br><br>" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "Jakaminen päättyy %s.<br><br>" #: templates/update.php:3 #, php-format diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 3e4e67e31d9c1c13f6223f9739dceb0e6a381dc6..345dc6cacd22aa8186e7fb99fffe9039c57eca63 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:51-0400\n" -"PO-Revision-Date: 2013-09-21 10:30+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\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" "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" @@ -120,7 +120,7 @@ msgstr "Verkko-osoite ei voi olla tyhjä" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Virhe" @@ -164,13 +164,13 @@ msgstr "" msgid "undo" msgstr "kumoa" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kansio" msgstr[1] "%n kansiota" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tiedosto" @@ -208,31 +208,44 @@ msgstr "Tallennustila on loppu, tiedostoja ei voi enää päivittää tai synkro msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Tallennustila on melkein loppu ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Virhe tiedostoa siirrettäessä" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nimi" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Koko" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Muokattu" @@ -293,49 +306,49 @@ msgstr "Kansio" msgid "From link" msgstr "Linkistä" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Poistetut tiedostot" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Tunnuksellasi ei ole kirjoitusoikeuksia tänne." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Lataa" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Peru jakaminen" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Poista" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index b3dea67b9279f7e211e9a3da8bda5db413a51882..4262f5e872b3c3134f30d311da520bac0e80c0e3 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/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-09-10 10:41-0400\n" -"PO-Revision-Date: 2013-09-09 19:20+0000\n" -"Last-Translator: muro <janne.morsky@metropolia.fi>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <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" @@ -45,17 +45,24 @@ msgstr "Salasana vaihdettiin onnistuneesti." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Salasanan vaihto epäonnistui. Kenties vanha salasana oli väärin." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -63,36 +70,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:51 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:52 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:250 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Seuraavat käyttäjät eivät ole määrittäneet salausta:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Tallennetaan..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "henkilökohtaiset asetukset" @@ -109,27 +110,35 @@ msgstr "" msgid "Recovery key password" msgstr "Palautusavaimen salasana" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Käytössä" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Ei käytössä" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Vaihda palautusavaimen salasana:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Vanha palautusavaimen salasana" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Uusi palautusavaimen salasana" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Vaihda salasana" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 717af8af88c64322ae6a7b9c47f34ed149ab18ab..38def67d241f4856949791cf6148d6b835125918 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-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-15 09:01+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: Jiri Grönroos <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" @@ -28,43 +28,43 @@ msgstr "Kohdetta %s ei voitu poistaa pysyvästi" msgid "Couldn't restore %s" msgstr "Kohteen %s palautus epäonnistui" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "suorita palautustoiminto" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Virhe" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "poista tiedosto pysyvästi" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Poista pysyvästi" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nimi" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Poistettu" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kansio" msgstr[1] "%n kansiota" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tiedosto" msgstr[1] "%n tiedostoa" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "palautettu" @@ -72,11 +72,11 @@ msgstr "palautettu" msgid "Nothing in here. Your trash bin is empty!" msgstr "Tyhjää täynnä! Roskakorissa ei ole mitään." -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Palauta" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Poista" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 41e7241ad3d22d3042fe141715fc1fe7bb4e383c..054b3f115684577871b0e250492177753ef10b77 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/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-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:05+0000\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" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,318 +18,325 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "Sovelluksen nimeä ei määritelty" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Ohje" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Henkilökohtainen" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Asetukset" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Käyttäjät" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Ylläpitäjä" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Kohteen \"%s\" päivitys epäonnistui." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "Omavalintaiset profiilikuvat eivät toimi salauksen kanssa vielä" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Tuntematon tiedostotyyppi" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Virheellinen kuva" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" -#: 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 "ZIP-lataus on poistettu käytöstä." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Tiedostot on ladattava yksittäin." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Takaisin tiedostoihin" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon." -#: 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 "Lähdettä ei määritelty sovellusta asennettaessa" -#: 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 "Polkua ei määritelty sovellusta asennettaessa paikallisesta tiedostosta" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Tyypin %s arkistot eivät ole tuettuja" -#: 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 "Sovellus ei sisällä info.xml-tiedostoa" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Sovellusta ei voi asentaa, koska sovellus sisältää kiellettyä koodia" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Sovellusta ei voi asentaa, koska se ei ole yhteensopiva käytössä olevan ownCloud-version kanssa" -#: 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 "Sovelluskansio on jo olemassa" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Sovelluskansion luominen ei onnistu. Korjaa käyttöoikeudet. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Sovellusta ei ole otettu käyttöön" -#: 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 "Tunnistautumisvirhe" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Valtuutus vanheni. Lataa sivu uudelleen." -#: 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 "Tiedostot" -#: 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 "Teksti" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Kuvat" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s anna tietokannan käyttäjätunnus." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s anna tietokannan nimi." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s et voi käyttää pisteitä tietokannan nimessä" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL -käyttäjätunnus ja/tai -salasana on väärin: %s" -#: 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 "MySQL:n käyttäjätunnus ja/tai salasana on väärin" -#: 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 "Tietokantavirhe: \"%s\"" -#: 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 "MySQL-käyttäjä '%s'@'localhost' on jo olemassa." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Pudota tämä käyttäjä MySQL:stä" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL-käyttäjä '%s'@'%%' on jo olemassa" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Pudota tämä käyttäjä MySQL:stä." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracle-yhteyttä ei voitu muodostaa" -#: 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 "Oraclen käyttäjätunnus ja/tai salasana on väärin" -#: 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 "PostgreSQL:n käyttäjätunnus ja/tai salasana on väärin" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Aseta ylläpitäjän käyttäjätunnus." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Aseta ylläpitäjän salasana." -#: 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 "Lue tarkasti <a href='%s'>asennusohjeet</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Luokkaa \"%s\" ei löytynyt" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "sekuntia sitten" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuutti sitten" msgstr[1] "%n minuuttia sitten" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tunti sitten" msgstr[1] "%n tuntia sitten" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "tänään" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "eilen" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n päivä sitten" msgstr[1] "%n päivää sitten" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "viime kuussa" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuukausi sitten" msgstr[1] "%n kuukautta sitten" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "viime vuonna" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "vuotta sitten" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Aiheuttaja:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Luokkaa \"%s\" ei löytynyt" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 2b9b270367a7d780f64ae7b1cf5fbc7214ea56f1..528192e96ab061d5a2b1cbb03bc2f229f2bc2421 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:40+0000\n" +"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -118,11 +118,11 @@ msgstr "Salasanan vaihto ei onnistunut" msgid "Update to {appversion}" msgstr "Päivitä versioon {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Poista käytöstä" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Käytä" @@ -130,43 +130,43 @@ msgstr "Käytä" msgid "Please wait...." msgstr "Odota hetki..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Virhe poistaessa sovellusta käytöstä" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Virhe ottaessa sovellusta käyttöön" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Päivitetään..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Virhe sovellusta päivittäessä" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Virhe" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Päivitä" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Päivitetty" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Valitse profiilikuva" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "Puretaan tiedostojen salausta... Odota, tämä voi kestää jonkin aikaa." -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Tallennetaan..." @@ -251,7 +251,7 @@ msgstr "Moduuli 'fileinfo' puuttuu" msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltavaa, jotta MIME-tyypin havaitseminen onnistuu parhaalla mahdollisella tavalla." #: templates/admin.php:58 msgid "Locale not working" @@ -342,46 +342,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "Salli sähköposti-ilmoitukset" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista" + +#: templates/admin.php:178 msgid "Security" msgstr "Tietoturva" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Pakota HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Loki" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Lokitaso" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Enemmän" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Versio" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index fb7a03660481ab92d2144928a992e16d4d279b2c..3b7670dea69d3f207b9d9d824bfd238c549aeab9 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/fr/core.po b/l10n/fr/core.po index bce932689a0cdf4f56ceebabbe402c662c368bcc..911dcd114dc6b9ad132e7614a88b3727efd19d10 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/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-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-26 15:10+0000\n" -"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <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" @@ -23,12 +23,17 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s partagé »%s« avec vous" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "groupe" @@ -320,8 +325,8 @@ msgstr "Le type d'objet n'est pas spécifié." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Erreur" @@ -341,126 +346,134 @@ msgstr "Partagé" msgid "Share" msgstr "Partager" -#: js/share.js:131 js/share.js:696 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Erreur lors de l'annulation du partage" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Erreur lors du changement des permissions" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Partagé par {owner} avec vous et le groupe {group}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Partagé avec vous par {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Partager avec" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Partager via lien" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Protéger par un mot de passe" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Mot de passe" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Autoriser l'upload par les utilisateurs non enregistrés" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Envoyez le lien par email" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Envoyer" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Spécifier la date d'expiration" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Date d'expiration" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Partager via e-mail :" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Aucun utilisateur trouvé" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Le repartage n'est pas autorisé" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Partagé dans {item} avec {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Ne plus partager" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "édition autorisée" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "contrôle des accès" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "créer" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "mettre à jour" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "supprimer" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "partager" -#: js/share.js:400 js/share.js:643 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:656 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:668 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:683 +#: js/share.js:694 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:694 +#: js/share.js:705 msgid "Email sent" msgstr "Email envoyé" +#: js/share.js:729 +msgid "Warning" +msgstr "Attention" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -497,7 +510,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nom d'utilisateur" @@ -569,8 +582,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Salut,\n\nje veux juste vous signaler %s partagé %s avec vous.\nVoyez-le: %s\n\nBonne continuation!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -623,48 +646,52 @@ msgstr "Pour les informations de configuration de votre serveur, veuillez lire l msgid "Create an <strong>admin account</strong>" msgstr "Créer un <strong>compte administrateur</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avancé" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Répertoire des données" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Configurer la base de données" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "sera utilisé" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Utilisateur pour la base de données" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Mot de passe de la base de données" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Nom de la base de données" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Tablespaces de la base de données" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Serveur de la base de données" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Terminer l'installation" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -688,19 +715,27 @@ msgstr "Si vous n'avez pas changé votre mot de passe récemment, votre compte r msgid "Please change your password to secure your account again." msgstr "Veuillez changer votre mot de passe pour sécuriser à nouveau votre compte." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Mot de passe perdu ?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "se souvenir de moi" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Connexion" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Logins alternatifs" @@ -708,8 +743,13 @@ msgstr "Logins alternatifs" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Salut,<br><br>je veux juste vous signaler %s partagé »%s« avec vous.<br><a href=\"%s\">Voyez-le!</a><br><br>Bonne continuation!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 72963e3573fd773385e070bf64815be0cf51340e..c76c180c2677cd4bef4cb77294d0d94d17ca8a52 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-23 19:30+0000\n" -"Last-Translator: ogre_sympathique <ogre.sympathique@speed.1s.fr>\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" "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" @@ -123,7 +123,7 @@ msgstr "L'URL ne peut-être vide" msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Erreur" @@ -167,13 +167,13 @@ msgstr "{new_name} a été remplacé par {old_name}" msgid "undo" msgstr "annuler" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dossier" msgstr[1] "%n dossiers" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fichier" @@ -211,31 +211,44 @@ msgstr "Votre espage de stockage est plein, les fichiers ne peuvent plus être t msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Votre espace de stockage est presque plein ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Le chiffrement était désactivé mais vos fichiers sont toujours chiffrés. Veuillez vous rendre sur vos Paramètres personnels pour déchiffrer vos fichiers." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Erreur lors du déplacement du fichier" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nom" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Taille" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Modifié" @@ -296,49 +309,49 @@ msgstr "Dossier" msgid "From link" msgstr "Depuis le lien" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Fichiers supprimés" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Vous n'avez pas le droit d'écriture ici." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Télécharger" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Ne plus partager" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Supprimer" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Téléversement trop volumineux" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 6616ed62275b217e12987118a2fab04a56f163f8..c9033cf761852cfc60b0e6a0d96d7df1894ea104 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/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-09-03 07:42-0400\n" -"PO-Revision-Date: 2013-09-03 10:00+0000\n" -"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <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" @@ -47,17 +47,24 @@ msgstr "Mot de passe changé avec succès " msgid "Could not change the password. Maybe the old password was not correct." msgstr "Ne peut pas changer le mot de passe. L'ancien mot de passe est peut-être incorrect." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Mot de passe de la clé privé mis à jour avec succès." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -65,36 +72,30 @@ msgid "" "files." msgstr "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte." -#: hooks/hooks.php:51 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Système minimum requis non respecté." -#: hooks/hooks.php:52 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Veuillez vous assurer qu'une version de PHP 5.3.3 ou supérieure est installée et qu'OpenSSL et son extension PHP sont activés et configurés correctement. En attendant, l'application de chiffrement été désactivée." -#: hooks/hooks.php:250 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Les utilisateurs suivants ne sont pas configurés pour le chiffrement :" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Enregistrement..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Vous pouvez déverrouiller votre clé privée dans votre" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "paramètres personnel" @@ -111,27 +112,35 @@ msgstr "Activer la clef de récupération (permet de récupérer les fichiers de msgid "Recovery key password" msgstr "Mot de passe de la clef de récupération" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Activer" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Désactiver" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Modifier le mot de passe de la clef de récupération :" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Ancien mot de passe de la clef de récupération" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Nouveau mot de passe de la clef de récupération" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Changer de mot de passe" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index c9b74a2e271fe41a5a71bb322d8e1b7b4871c272..3e69326d28dc2e591652e479a9d40f74021ded8c 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-04 14:11+0000\n" "Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 52238114518a7d377641da8faea59cafbf63aa8d..599cfe1a8efa057ed3b0922d5c1aaf74444aa118 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-09-03 07:43-0400\n" -"PO-Revision-Date: 2013-09-03 09:30+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -44,27 +44,27 @@ msgstr "effacer définitivement le fichier" msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/trash.js:184 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nom" -#: js/trash.js:185 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Effacé" -#: js/trash.js:193 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" +msgstr[0] "%n dossier" msgstr[1] "%n dossiers" -#: js/trash.js:199 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" +msgstr[0] "%n fichier" msgstr[1] "%n fichiers" -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "restauré" @@ -72,11 +72,11 @@ msgstr "restauré" msgid "Nothing in here. Your trash bin is empty!" msgstr "Il n'y a rien ici. Votre corbeille est vide !" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Restaurer" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Supprimer" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 792ec31010552bf3dc7a96dd04df132e5cb4cee3..a0467819d8e5920dda1eef21f7e35485ea148dfa 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-19 13:10+0000\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" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -20,318 +20,325 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "Aucun nom d'application spécifié" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Aide" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personnel" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Paramètres" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Utilisateurs" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administration" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Echec de la mise à niveau \"%s\"." -#: avatar.php:56 +#: 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." -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Type de fichier inconnu" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Image invalide" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "services web sous votre contrôle" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "impossible d'ouvrir \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "Téléchargement ZIP désactivé." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Les fichiers nécessitent d'être téléchargés un par un." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Retour aux Fichiers" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Les fichiers sélectionnés sont trop volumineux pour être compressés." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Télécharger les fichiers en parties plus petites, séparément ou demander avec bienveillance à votre administrateur." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Aucune source spécifiée pour installer l'application" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Aucun href spécifié pour installer l'application par http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Aucun chemin spécifié pour installer l'application depuis un fichier local" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Les archives de type %s ne sont pas supportées" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Échec de l'ouverture de l'archive lors de l'installation de l'application" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "L'application ne fournit pas de fichier info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "L'application ne peut être installée car elle contient du code non-autorisé" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "L'application ne peut être installée car elle n'est pas compatible avec cette version de ownCloud" -#: 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 "L'application ne peut être installée car elle contient la balise <shipped>true</shipped> qui n'est pas autorisée pour les applications non-diffusées" -#: 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 "L'application ne peut être installée car la version de info.xml/version n'est identique à celle indiquée sur l'app store" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "Le dossier de l'application existe déjà" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Impossible de créer le dossier de l'application. Corrigez les droits d'accès. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "L'application n'est pas activée" -#: 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 "Erreur d'authentification" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "La session a expiré. Veuillez recharger la page." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fichiers" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Texte" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Images" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s entrez le nom d'utilisateur de la base de données." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s entrez le nom de la base de données." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s vous nez pouvez pas utiliser de points dans le nom de la base de données" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Le nom d'utilisateur et/ou le mot de passe de la base MS SQL est invalide : %s" -#: 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 "Vous devez spécifier soit le nom d'un compte existant, soit celui de l'administrateur." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base MySQL invalide" -#: 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 "Erreur de la base de données : \"%s\"" -#: 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 "La requête en cause est : \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "L'utilisateur MySQL '%s'@'localhost' existe déjà." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Retirer cet utilisateur de la base MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "L'utilisateur MySQL '%s'@'%%' existe déjà" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Retirer cet utilisateur de la base MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "La connexion Oracle ne peut pas être établie" -#: 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 "Nom d'utilisateur et/ou mot de passe de la base Oracle invalide" -#: 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 "La requête en cause est : \"%s\", nom : %s, mot de passe : %s" -#: 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 "Nom d'utilisateur et/ou mot de passe de la base PostgreSQL invalide" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Spécifiez un nom d'utilisateur pour l'administrateur." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Spécifiez un mot de passe administrateur." -#: 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 "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Veuillez vous référer au <a href='%s'>guide d'installation</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Impossible de trouver la catégorie \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "il y a quelques secondes" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "il y a %n minutes" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "Il y a %n heures" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "aujourd'hui" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "hier" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "il y a %n jours" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "le mois dernier" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "Il y a %n mois" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "l'année dernière" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "il y a plusieurs années" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Causé par :" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Impossible de trouver la catégorie \"%s\"" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 21918cf68dabf59b248822b88aef61e0dd826802..685dbd3e186874b18abe0a7f3f875b7a6e41b998 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-26 15:00+0000\n" -"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\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" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -163,15 +163,15 @@ msgstr "Mettre à jour" msgid "Updated" msgstr "Mise à jour effectuée avec succès" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Selectionner une photo de profil " -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "Déchiffrement en cours... Cela peut prendre un certain temps." -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Enregistrement..." @@ -347,46 +347,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Sécurité" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Forcer HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forcer les clients à se connecter à %s via une connexion chiffrée." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Veuillez vous connecter à cette instance %s via HTTPS pour activer ou désactiver SSL." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Niveau de log" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Plus" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Moins" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Version" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 5d5731c15756684cc9e41ce3d6f20b06628ea718..679f44b182f06c76d0750ba3dc8df666e379859a 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -27,17 +27,17 @@ msgstr "Erreur lors de la suppression des associations." msgid "Failed to delete the server configuration" msgstr "Échec de la suppression de la configuration du serveur" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "La configuration est valide et la connexion peut être établie !" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "La configuration est valide, mais le lien ne peut être établi. Veuillez vérifier les paramètres du serveur ainsi que vos identifiants de connexion." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/gl/core.po b/l10n/gl/core.po index b8bcfd4eea811c69b0e3a9ca06f2aaeefcf57994..bf4f91c64b97ef21d8934414206bc4b21ae4afd3 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-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-23 10:30+0000\n" -"Last-Translator: mbouzada <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <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,12 +18,17 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s compartiu «%s» con vostede" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Non é posíbel enviar correo aos usuarios seguintes: %s" + +#: ajax/share.php:327 msgid "group" msgstr "grupo" @@ -315,8 +320,8 @@ msgstr "Non se especificou o tipo de obxecto." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Erro" @@ -336,126 +341,134 @@ msgstr "Compartir" msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:696 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Produciuse un erro ao compartir" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Produciuse un erro ao deixar de compartir" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Produciuse un erro ao cambiar os permisos" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartido con vostede e co grupo {group} por {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Compartido con vostede por {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Compartir con" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Compartir coa ligazón" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Protexido con contrasinais" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Contrasinal" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Permitir o envío público" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Enviar ligazón por correo" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Enviar" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Definir a data de caducidade" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Data de caducidade" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Compartir por correo:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Non se atopou xente" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Non se permite volver a compartir" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Deixar de compartir" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "notificar ao usuario por correo" + +#: js/share.js:361 msgid "can edit" msgstr "pode editar" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "control de acceso" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "crear" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "actualizar" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "eliminar" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "compartir" -#: js/share.js:400 js/share.js:643 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:656 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:668 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:683 +#: js/share.js:694 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:694 +#: js/share.js:705 msgid "Email sent" msgstr "Correo enviado" +#: js/share.js:729 +msgid "Warning" +msgstr "Aviso" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -492,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Recibirá unha ligazón por correo para restabelecer o contrasinal" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nome de usuario" @@ -564,8 +577,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\nSaúdos!" +msgstr "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\n" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "Esta compartición caduca o %s.\n\n" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "Saúdos!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -618,48 +641,52 @@ msgstr "Para obter información sobre como como configurar axeitadamente o seu s msgid "Create an <strong>admin account</strong>" msgstr "Crear unha <strong>contra de administrador</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Cartafol de datos" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Configurar a base de datos" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "vai ser utilizado" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Usuario da base de datos" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Contrasinal da base de datos" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Nome da base de datos" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Táboa de espazos da base de datos" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Servidor da base de datos" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Rematar a configuración" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "Rematado ..." + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -683,19 +710,27 @@ msgstr "Se non fixo recentemente cambios de contrasinal é posíbel que a súa c msgid "Please change your password to secure your account again." msgstr "Cambie de novo o seu contrasinal para asegurar a súa conta." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Perdeu o contrasinal?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "lembrar" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Conectar" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Accesos alternativos" @@ -703,8 +738,13 @@ msgstr "Accesos alternativos" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Ola,<br><br>só facerlle saber que %s compartiu «%s» con vostede.<br><a href=\"%s\">Véxao!</a><br><br>Saúdos!" +"href=\"%s\">View it!</a><br><br>" +msgstr "Ola,<br><br>Só facerlle saber que %s compartiu «%s» con vostede.<br><a href=\"%s\">Véxao!</a><br><br>" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "Esta compartición caduca o %s.<br><br>" #: templates/update.php:3 #, php-format diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 33e76e84873d4681ee7e72e25428a0a9dc5df899..99b866a9ada92c6718f52ecc210389cc672986d0 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-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-23 10:30+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 09:10+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" @@ -120,7 +120,7 @@ msgstr "O URL non pode quedar baleiro." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nome de cartafol incorrecto. O uso de «Compartido» e «Shared» está reservado para o ownClod" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Erro" @@ -164,13 +164,13 @@ msgstr "substituír {new_name} por {old_name}" msgid "undo" msgstr "desfacer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartafol" msgstr[1] "%n cartafoles" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" @@ -208,31 +208,44 @@ msgstr "O seu espazo de almacenamento está cheo, non é posíbel actualizar ou msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "O seu espazo de almacenamento está case cheo ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "O aplicativo de cifrado está activado, mais as chaves non foron inicializadas, saia da sesión e volva a acceder de novo" + +#: 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 "A chave privada para o aplicativo de cifrado non é correcta. Actualice o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros cifrados." + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "O cifrado foi desactivado, mais os ficheiros están cifrados. Vaia á configuración persoal para descifrar os ficheiros." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Produciuse un erro ao mover o ficheiro" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nome" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Tamaño" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Modificado" @@ -293,49 +306,49 @@ msgstr "Cartafol" msgid "From link" msgstr "Desde a ligazón" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Non ten permisos para escribir aquí." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Aquí non hai nada. Envíe algo." -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Descargar" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Deixar de compartir" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Envío demasiado grande" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Estanse analizando os ficheiros. Agarde." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index bdd69c8404817b3ee741e295041d542462f72c2e..128417f5c62897e9746060e7dd984ac0d68c0415 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"PO-Revision-Date: 2013-10-07 07:20+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" @@ -46,17 +46,24 @@ msgstr "O contrasinal foi cambiado satisfactoriamente" msgid "Could not change the password. Maybe the old password was not correct." msgstr "Non foi posíbel cambiar o contrasinal. Probabelmente o contrasinal antigo non é o correcto." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "A chave privada foi actualizada correctamente." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "Non se iniciou o aplicativo de cifrado! Quizais volva a activarse durante a sesión. Tente pechar a sesión e volver iniciala que tamén se inicie o aplicativo de cifrado." + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -64,36 +71,30 @@ msgid "" "files." msgstr "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Non se cumpren os requisitos." -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de o OpenSSL xunto coa extensión PHP estean activados e configurados correctamente. Polo de agora foi desactivado o aplicativo de cifrado." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Os seguintes usuarios non teñen configuración para o cifrado:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Gardando..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. " - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Pode desbloquear a chave privada nos seus" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Vaia directamente ao seu" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "axustes persoais" @@ -110,27 +111,35 @@ msgstr "Activar a chave de recuperación (permitirá recuperar os ficheiros dos msgid "Recovery key password" msgstr "Contrasinal da chave de recuperación" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "Repita o contrasinal da chave da recuperación" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Activado" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Desactivado" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Cambiar o contrasinal da chave de la recuperación:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Antigo contrasinal da chave de recuperación" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Novo contrasinal da chave de recuperación" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "Repita o novo contrasinal da chave da recuperación" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Cambiar o contrasinal" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index ad7adc59d70554573a6b9b53607da427c8e77cd9..7250668c4f00f774183aa49cd430a09e91b013d2 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-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-15 10:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -28,43 +28,43 @@ msgstr "Non foi posíbel eliminar %s permanente" msgid "Couldn't restore %s" msgstr "Non foi posíbel restaurar %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "realizar a operación de restauración" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Erro" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "eliminar o ficheiro permanentemente" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nome" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Eliminado" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartafol" msgstr[1] "%n cartafoles" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "restaurado" @@ -72,11 +72,11 @@ msgstr "restaurado" msgid "Nothing in here. Your trash bin is empty!" msgstr "Aquí non hai nada. O cesto do lixo está baleiro!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Restablecer" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 9cb8c43c361d5030f85bc2849985a704dcce660b..53df3e297f9403deaff0a291d46887e2388a6977 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/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-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:05+0000\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" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -18,318 +18,325 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "Non se especificou o nome do aplicativo" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Axuda" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Persoal" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Axustes" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Usuarios" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administración" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Non foi posíbel anovar «%s»." -#: avatar.php:56 +#: 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" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Tipo de ficheiro descoñecido" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Imaxe incorrecta" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "servizos web baixo o seu control" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "non foi posíbel abrir «%s»" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "As descargas ZIP están desactivadas." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros necesitan seren descargados dun en un." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Volver aos ficheiros" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Descargue os ficheiros en cachos máis pequenos e por separado, ou pídallos amabelmente ao seu administrador." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Non foi especificada ningunha orixe ao instalar aplicativos" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Non foi especificada ningunha href ao instalar aplicativos" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Non foi especificada ningunha ruta ao instalar aplicativos desde un ficheiro local" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Os arquivos do tipo %s non están admitidos" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Non foi posíbel abrir o arquivo ao instalar aplicativos" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "O aplicativo non fornece un ficheiro info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Non é posíbel instalar o aplicativo por mor de conter código non permitido" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Non é posíbel instalar o aplicativo por non seren compatíbel con esta versión do ownCloud." -#: 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 "Non é posíbel instalar o aplicativo por conter a etiqueta\n<shipped>\n\ntrue\n</shipped>\nque non está permitida para os aplicativos non enviados" -#: 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 "Non é posíbel instalar o aplicativo xa que a versión en info.xml/version non é a mesma que a versión informada desde a App Store" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "Xa existe o directorio do aplicativo" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Non é posíbel crear o cartafol de aplicativos. Corrixa os permisos. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "O aplicativo non está activado" -#: 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 "Produciuse un erro de autenticación" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Testemuña caducada. Recargue a páxina." -#: 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 "Ficheiros" -#: 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 "Texto" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Imaxes" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s introduza o nome de usuario da base de datos" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s introduza o nome da base de datos" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s non se poden empregar puntos na base de datos" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de usuario e/ou contrasinal de MS SQL incorrecto: %s" -#: 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 "Deberá introducir unha conta existente ou o administrador." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Nome de usuario e/ou contrasinal de MySQL incorrecto" -#: 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 "Produciuse un erro na base de datos: «%s»" -#: 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 "A orde ofensiva foi: «%s»" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "O usuario MySQL '%s'@'localhost' xa existe." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Omitir este usuario de MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "O usuario MySQL «%s»@«%%» xa existe." -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Omitir este usuario de MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Non foi posíbel estabelecer a conexión con Oracle" -#: 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 "Nome de usuario e/ou contrasinal de Oracle incorrecto" -#: 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 "A orde ofensiva foi: «%s», nome: %s, contrasinal: %s" -#: 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 "Nome de usuario e/ou contrasinal de PostgreSQL incorrecto" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Estabeleza un nome de usuario administrador" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Estabeleza un contrasinal de administrador" -#: 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 "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Volva comprobar as <a href='%s'>guías de instalación</a>" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Non foi posíbel atopar a categoría «%s»" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "segundos atrás" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "hai %n minuto" msgstr[1] "hai %n minutos" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "hai %n hora" msgstr[1] "hai %n horas" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "hoxe" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "onte" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "hai %n día" msgstr[1] "hai %n días" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "último mes" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "hai %n mes" msgstr[1] "hai %n meses" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "último ano" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "anos atrás" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Causado por:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Non foi posíbel atopar a categoría «%s»" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 8533d9c17c63ce58305b627f1111397c5afb0bac..513443ae5b44406cc7d449192d12f94d179c663c 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 08: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -118,11 +118,11 @@ msgstr "Non é posíbel cambiar o contrasinal" msgid "Update to {appversion}" msgstr "Actualizar á {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Activar" @@ -130,43 +130,43 @@ msgstr "Activar" msgid "Please wait...." msgstr "Agarde..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Produciuse un erro ao desactivar o aplicativo" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Produciuse un erro ao activar o aplicativo" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Actualizando..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Produciuse un erro mentres actualizaba o aplicativo" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Erro" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Actualizar" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Actualizado" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Seleccione unha imaxe para o perfil" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "Descifrando ficheiros... isto pode levar un anaco." -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Gardando..." @@ -342,46 +342,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Permitir que os usuarios compartan só cos usuarios dos seus grupos" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "Permitir o envío de notificacións por correo" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "Permitir que os usuarios envíen notificacións por correo dos ficheiros compartidos" + +#: templates/admin.php:178 msgid "Security" msgstr "Seguranza" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar que os clientes se conecten a %s empregando unha conexión cifrada." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Conéctese a %s empregando HTTPS para activar ou desactivar o forzado de SSL." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Rexistro" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Nivel de rexistro" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Máis" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Menos" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Versión" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 54fdccd2c352a75999ddeff9c1ded9735f9e42a5..7806b1d62c197f849e3fafccfc2793f022628952 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -26,17 +26,17 @@ msgstr "Non foi posíbel limpar as asignacións." msgid "Failed to delete the server configuration" msgstr "Non foi posíbel eliminar a configuración do servidor" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "A configuración é correcta e pode estabelecerse a conexión." -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "A configuración é correcta, mais a ligazón non. Comprobe a configuración do servidor e as credenciais." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/he/core.po b/l10n/he/core.po index c8ae1beb1e5fd92044829627135f701f7582ada1..35f88871856b263dead8d5c7e47644ce95dfbe6b 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -19,12 +19,17 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s שיתף/שיתפה איתך את »%s«" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "קבוצה" @@ -316,8 +321,8 @@ msgstr "סוג הפריט לא צוין." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "שגיאה" @@ -337,126 +342,134 @@ msgstr "שותף" msgid "Share" msgstr "שתף" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "שגיאה במהלך ביטול השיתוף" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "שגיאה במהלך שינוי ההגדרות" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "שותף אתך ועם הקבוצה {group} שבבעלות {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "שותף אתך על ידי {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "שיתוף עם" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "שיתוף עם קישור" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "הגנה בססמה" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "סיסמא" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "שליחת קישור בדוא״ל למשתמש" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "שליחה" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "הגדרת תאריך תפוגה" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "תאריך התפוגה" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "שיתוף באמצעות דוא״ל:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "לא נמצאו אנשים" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "אסור לעשות שיתוף מחדש" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "שותף תחת {item} עם {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "הסר שיתוף" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "ניתן לערוך" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "בקרת גישה" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "יצירה" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "עדכון" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "מחיקה" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "שיתוף" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" +#: js/share.js:729 +msgid "Warning" +msgstr "אזהרה" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -493,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "יישלח לתיבת הדוא״ל שלך קישור לאיפוס הססמה." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "שם משתמש" @@ -565,8 +578,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "שלום,\n\nרצינו לעדכן כי %s שיתף/שיתפה איתך את »%s«.\n\nלצפיה: %s\n\nיום טוב!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -619,48 +642,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "יצירת <strong>חשבון מנהל</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "מתקדם" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "תיקיית נתונים" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "הגדרת מסד הנתונים" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "ינוצלו" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "שם משתמש במסד הנתונים" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "ססמת מסד הנתונים" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "שם מסד הנתונים" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "מרחב הכתובות של מסד הנתונים" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "שרת בסיס נתונים" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "סיום התקנה" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -684,19 +711,27 @@ msgstr "אם לא שינית את ססמתך לאחרונה, יתכן שחשבו msgid "Please change your password to secure your account again." msgstr "נא לשנות את הססמה שלך כדי לאבטח את חשבונך מחדש." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "שכחת את ססמתך?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "שמירת הססמה" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "כניסה" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "כניסות אלטרנטיביות" @@ -704,8 +739,13 @@ msgstr "כניסות אלטרנטיביות" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "שלום,<br><br>רצינו לעדכן כי %s שיתף/שיתפה איתך את »%s«.<br><a href=\"%s\">לצפיה</a><br><br>יום טוב!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/he/files.po b/l10n/he/files.po index 15a0138955b493a0862daa1ef3814745da7b89d7..d37f03036acc5c34de44187e6942ea749f1743f6 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -87,7 +87,7 @@ msgstr "" msgid "Invalid directory." msgstr "תיקייה שגויה." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "קבצים" @@ -120,7 +120,7 @@ msgstr "קישור אינו יכול להיות ריק." 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "שגיאה" @@ -164,13 +164,13 @@ msgstr "{new_name} הוחלף ב־{old_name}" msgid "undo" msgstr "ביטול" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -208,31 +208,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "שם" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "גודל" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "זמן שינוי" @@ -293,49 +306,49 @@ msgstr "תיקייה" msgid "From link" msgstr "מקישור" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "הורדה" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "הסר שיתוף" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "מחיקה" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "העלאה גדולה מידי" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "הקבצים נסרקים, נא להמתין." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "הסריקה הנוכחית" diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index 200c5801924cdc2e3e072ba769c44e0276a9b35b..a113b684cf892296c405e72cfad911e07cd290bd 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "שמירה…" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 42013789e83c6e5b16cf04d965d5497bdf1bc70e..7c7f1a22e174781ba34be75099c76436704f5df4 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: he\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 "הוענקה גישה" @@ -25,7 +25,7 @@ msgstr "הוענקה גישה" msgid "Error configuring Dropbox storage" msgstr "אירעה שגיאה בעת הגדרת אחסון ב־Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "הענקת גישה" @@ -33,24 +33,24 @@ msgstr "הענקת גישה" msgid "Please provide a valid Dropbox app key and secret." msgstr "נא לספק קוד יישום וסוד תקניים של Dropbox." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "אירעה שגיאה בעת הגדרת אחסון ב־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 "" -#: 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 "" -#: 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/he/files_trashbin.po b/l10n/he/files_trashbin.po index b938a87bca02c54801355c4f4de3a67af0211061..ebdf6f415076bba56dbf9ca9ba3777a370eed115 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -28,43 +28,43 @@ msgstr "לא ניתן למחוק את %s לצמיתות" msgid "Couldn't restore %s" msgstr "לא ניתן לשחזר את %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "ביצוע פעולת שחזור" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "שגיאה" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "מחיקת קובץ לצמיתות" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "מחיקה לצמיתות" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "שם" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "נמחק" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -72,11 +72,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "אין כאן שום דבר. סל המיחזור שלך ריק!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "שחזור" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "מחיקה" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index d5ee81ab17acec454730f9ed001312ee9035e87f..8449860624826f9793eed0220e7940e408c1d874 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,325 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "עזרה" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "אישי" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "הגדרות" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "משתמשים" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "מנהל" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "הורדת ZIP כבויה" -#: 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 "הקבצים הנבחרים גדולים מידי ליצירת קובץ zip." -#: 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 "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "נא לעיין שוב ב<a href='%s'>מדריכי ההתקנה</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "לא ניתן למצוא את הקטגוריה „%s“" + +#: 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] "לפני %n דקות" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "לפני %n שעות" -#: 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] "לפני %n ימים" -#: 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] "לפני %n חודשים" -#: 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 "לא ניתן למצוא את הקטגוריה „%s“" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 25d1901bcce6e47afc9601c64f71d6595957e766..4a00de7bd328d294164aa7d566ed0800dfa66c7c 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "עדכון לגרסה {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "בטל" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "הפעלה" @@ -130,43 +130,43 @@ msgstr "הפעלה" msgid "Please wait...." msgstr "נא להמתין…" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "מתבצע עדכון…" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "אירעה שגיאה בעת עדכון היישום" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "שגיאה" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "עדכון" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "מעודכן" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "שמירה…" @@ -342,46 +342,54 @@ msgid "Allow users to only share with users in their groups" msgstr "לאפשר למשתמשים לשתף עם משתמשים בקבוצות שלהם בלבד" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "אבטחה" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "לאלץ HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "יומן" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "רמת הדיווח" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "יותר" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "פחות" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "גרסא" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 23b74eb81c3d2e917a409c4cde56f0a812b12486..00811e8330d67815063b34c301139faeeca3a42b 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -26,17 +26,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 834b2c48eba68cf6084af191c90cffdd754c8c77..20124d63a32574e6a33e285f96db799b659dec36 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -19,12 +19,17 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -316,8 +321,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "त्रुटि" @@ -337,126 +342,134 @@ msgstr "" msgid "Share" msgstr "साझा करें" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "के साथ साझा" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "पासवर्ड" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "भेजें" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "कोई व्यक्ति नहीं मिले " -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "भेजा जा रहा है" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "ईमेल भेज दिया गया है " +#: js/share.js:729 +msgid "Warning" +msgstr "चेतावनी " + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -493,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "पासवर्ड बदलने कि लिंक आपको ई-मेल द्वारा भेजी जायेगी|" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "प्रयोक्ता का नाम" @@ -565,7 +578,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -619,48 +642,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "व्यवस्थापक खाता बनाएँ" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "उन्नत" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "डाटा फोल्डर" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "डेटाबेस कॉन्फ़िगर करें " -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "उपयोग होगा" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "डेटाबेस उपयोगकर्ता" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "डेटाबेस पासवर्ड" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "डेटाबेस का नाम" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "सेटअप समाप्त करे" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -684,19 +711,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "याद रखें" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -704,7 +739,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/hi/files.po b/l10n/hi/files.po index f6fcb10b392d49e74822a8f46161b47514a2d852..9a0a85d390b300fe5e686ba02596e07fa4c683ce 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "त्रुटि" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -292,49 +305,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po index ac181cbae061eefad2de88e33b107dfc76ba03a2..30e76f8feba2aa804224d00951d14e0b6c83c7b6 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index 6ebcc054149ac9df3e65dc0e0001972438d4ec09..a67189f46b8560c36e12ae2e0634556e669be613 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "त्रुटि" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +71,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index e930c1b8889a3d7b18cd22ccb932abda4b2c988c..2828479f62fc84f497d078747a58a5c292a6245d 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,325 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "सहयोग" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "यक्तिगत" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "सेटिंग्स" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "उपयोगकर्ता" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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/hi/settings.po b/l10n/hi/settings.po index fc8e5837c9ca3bdef8516cba463b0e2bb4c8e55c..d4ee230efd807b9477f60736ebf6f4f2c1b0cfc6 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "त्रुटि" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "अद्यतन" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 61c20ec61715010595ab6be6d57e3ef8a82cceae..132e022bcfd5179f8e676107f9c3c73b11d12a51 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 59f10907b078a4324336b83371580486087c23aa..f1e702ed34c461e68953ff903556866c0d371a3e 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -319,8 +324,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Greška" @@ -340,126 +345,134 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Greška prilikom isključivanja djeljenja" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Greška prilikom promjena prava" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Djeli sa" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Djeli preko link-a" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Zaštiti lozinkom" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Lozinka" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Postavi datum isteka" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Datum isteka" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Dijeli preko email-a:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Osobe nisu pronađene" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Ponovo dijeljenje nije dopušteno" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Makni djeljenje" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "može mjenjat" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "kreiraj" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "ažuriraj" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "izbriši" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "djeli" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -496,7 +509,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Primit ćete link kako biste poništili zaporku putem e-maila." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Korisničko ime" @@ -568,7 +581,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -622,48 +645,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Stvori <strong>administratorski račun</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Napredno" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Mapa baze podataka" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Konfiguriraj bazu podataka" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "će se koristiti" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Korisnik baze podataka" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Lozinka baze podataka" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Ime baze podataka" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Poslužitelj baze podataka" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Završi postavljanje" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -687,19 +714,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "zapamtiti" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Prijava" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -707,7 +742,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 3eab0bfde87b557e1d4e112451ba21e0cc4f8b9e..039422202dad1b40dbd0050997e7c8d7efad9424 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Datoteke" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Greška" @@ -163,14 +163,14 @@ msgstr "" msgid "undo" msgstr "vrati" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -210,31 +210,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Ime" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Veličina" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Zadnja promjena" @@ -295,49 +308,49 @@ msgstr "mapa" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Preuzimanje" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Makni djeljenje" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Obriši" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Prijenos je preobiman" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Datoteke se skeniraju, molimo pričekajte." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Trenutno skeniranje" diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index db272d0927c3c2203a2b8ad3572624f48c0c0199..12a6998030e628c9577112160dd37c36365624b5 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Spremanje..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index a7a8e13f531b5981c57087fabb8f2fc82ba7e5da..af43094b3266e54cac87583c4f308dc794776199 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: js/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 "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 76a24e0c67e9b7d70bc6ea1c8db6a2021f5da3a3..09cacae10df4d9869bc1437a648e75033600abf7 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,45 +27,45 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Greška" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Ime" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -73,11 +73,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Obriši" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 4450ee5f5d90f9877ef5ad3c8baea96a10d9dc26..b3008a4540a00acbf03a49e9392efcfc16935f6c 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,322 +17,329 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Pomoć" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Osobno" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Postavke" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Korisnici" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administrator" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "web usluge pod vašom kontrolom" -#: 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 "Greška kod autorizacije" -#: 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 "Datoteke" -#: 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 "Tekst" -#: 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 "sekundi prije" -#: 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 "danas" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "jučer" -#: 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 "prošli mjesec" -#: 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 "prošlu godinu" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "godina" -#: 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/hr/settings.po b/l10n/hr/settings.po index aec94bb5dfb042bf008db39f528c769c3e8c0a3b..03c222ac5e9399f262167adc1911479d4944e83e 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Isključi" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Uključi" @@ -129,43 +129,43 @@ msgstr "Uključi" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Greška" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Spremanje..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "više" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 1d665b257f679dcdf59bb1f6e66b7867b1ff3a2f..f46f868f8d3a966f2404ae07096d874ee293bbba 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 9a7a4428b56fd3083d20abeff75570e4543bb995..4b2a51eaf5a0509d04cebcb8436fd9f4210d349b 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/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-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-30 00:42+0000\n" -"Last-Translator: ebela <bela@dandre.hu>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <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,12 +19,17 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s megosztotta Önnel ezt: »%s«" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "csoport" @@ -316,8 +321,8 @@ msgstr "Az objektum típusa nincs megadva." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Hiba" @@ -337,126 +342,134 @@ msgstr "Megosztott" msgid "Share" msgstr "Megosztás" -#: js/share.js:131 js/share.js:696 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Nem sikerült visszavonni a megosztást" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Nem sikerült módosítani a jogosultságokat" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Megosztotta Önnel és a(z) {group} csoporttal: {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Megosztotta Önnel: {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Kivel osztom meg" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Link megadásával osztom meg" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Jelszóval is védem" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Jelszó" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Feltöltést is engedélyezek" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Email címre küldjük el" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Küldjük el" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Legyen lejárati idő" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "A lejárati idő" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Megosztás emaillel:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Nincs találat" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Megosztva {item}-ben {user}-rel" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "A megosztás visszavonása" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "módosíthat" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "jogosultság" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "létrehoz" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "szerkeszt" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "töröl" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "megoszt" -#: js/share.js:400 js/share.js:643 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Jelszóval van védve" -#: js/share.js:656 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:668 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:683 +#: js/share.js:694 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:694 +#: js/share.js:705 msgid "Email sent" msgstr "Az emailt elküldtük" +#: js/share.js:729 +msgid "Warning" +msgstr "Figyelmeztetés" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -493,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Felhasználónév" @@ -565,8 +578,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Üdv!\n\nÚj hír: %s megosztotta Önnel ezt: %s.\nItt nézhető meg: %s\n\nMinden jót!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -619,48 +642,52 @@ msgstr "A kiszolgáló megfelelő beállításához kérjük olvassa el a <a hre msgid "Create an <strong>admin account</strong>" msgstr "<strong>Rendszergazdai belépés</strong> létrehozása" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Haladó" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Adatkönyvtár" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Adatbázis konfigurálása" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "adatbázist fogunk használni" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Adatbázis felhasználónév" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Adatbázis jelszó" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Az adatbázis neve" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Az adatbázis táblázattér (tablespace)" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Adatbázis szerver" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "A beállítások befejezése" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -684,19 +711,27 @@ msgstr "Ha mostanában nem módosította a jelszavát, akkor lehetséges, hogy i msgid "Please change your password to secure your account again." msgstr "A biztonsága érdekében változtassa meg a jelszavát!" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Elfelejtette a jelszavát?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "emlékezzen" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Bejelentkezés" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatív bejelentkezés" @@ -704,8 +739,13 @@ msgstr "Alternatív bejelentkezés" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Üdv!<br><br>Új hír: %s megosztotta Önnel ezt: »%s«.<br><a href=\"%s\">Itt nézhető meg!</a><br><br>Minden jót!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index e61d77e5cb26ed4d9a525256523df645ff4652f9..78fb764ef2f7818ef1c5daccb25b75fdc16cf69f 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-24 18:40+0000\n" -"Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\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" "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" @@ -120,7 +120,7 @@ msgstr "Az URL nem lehet semmi." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Érvénytelen mappanév. A 'Shared' az ownCloud számára fenntartott elnevezés" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Hiba" @@ -164,13 +164,13 @@ msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" msgid "undo" msgstr "visszavonás" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappa" msgstr[1] "%n mappa" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n állomány" @@ -208,31 +208,44 @@ msgstr "A tároló tele van, a fájlok nem frissíthetőek vagy szinkronizálhat msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "A tároló majdnem tele van ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "A titkosítási funkciót kikapcsolták, de az Ön állományai még mindig titkosított állapotban vannak. A személyes beállításoknál tudja a titkosítást feloldani." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Az állomány áthelyezése nem sikerült." -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Név" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Méret" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Módosítva" @@ -293,49 +306,49 @@ msgstr "Mappa" msgid "From link" msgstr "Feltöltés linkről" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Törölt fájlok" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Itt nincs írásjoga." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Itt nincs semmi. Töltsön fel valamit!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Letöltés" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "A megosztás visszavonása" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Törlés" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "A feltöltés túl nagy" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Ellenőrzés alatt" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index b21350959cba30be1af2cb0fdd85c24cf113c7ea..a2a1a319f83f63ab52ad772e5a502bfb455fe508 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/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-09-03 07:42-0400\n" -"PO-Revision-Date: 2013-09-01 19:30+0000\n" -"Last-Translator: blackc0de <complic@vipmail.hu>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <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" @@ -44,17 +44,24 @@ msgstr "Jelszó sikeresen megváltoztatva." msgid "Could not change the password. Maybe the old password was not correct." msgstr "A jelszót nem lehet megváltoztatni! Lehet, hogy hibás volt a régi jelszó." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -62,36 +69,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:51 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:52 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Kérlek győződj meg arról, hogy PHP 5.3.3 vagy annál frissebb van telepítve, valamint a PHP-hez tartozó OpenSSL bővítmény be van-e kapcsolva és az helyesen van-e konfigurálva! Ki lett kapcsolva ideiglenesen a titkosító alkalmazás." -#: hooks/hooks.php:250 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Mentés..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "személyes beállítások" @@ -108,27 +109,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Bekapcsolva" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Kikapcsolva" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Jelszó megváltoztatása" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 9a1567b54e25da82031faeabb9b2851c0be1179d..438523b0f62928ce1e557ce22e47a7e2763889f8 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -18,7 +18,7 @@ msgstr "" "Language: hu_HU\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 "Érvényes hozzáférés" @@ -26,7 +26,7 @@ msgstr "Érvényes hozzáférés" msgid "Error configuring Dropbox storage" msgstr "A Dropbox tárolót nem sikerült beállítani" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Megadom a hozzáférést" @@ -34,24 +34,24 @@ msgstr "Megadom a hozzáférést" msgid "Please provide a valid Dropbox app key and secret." msgstr "Adjon meg egy érvényes Dropbox app key-t és secretet!" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "A Google Drive tárolót nem sikerült beállítani" -#: 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>Figyelem:</b> az \"smbclient\" nincs telepítve a kiszolgálón. Emiatt nem lehet CIFS/SMB megosztásokat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot." -#: 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>Figyelem:</b> a PHP FTP támogatása vagy nincs telepítve, vagy nincs engedélyezve a kiszolgálón. Emiatt nem lehetséges FTP-tárolókat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot." -#: 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/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index d0d6f3bc51a10c4df5cfadd6569727931a25965e..c669e0e0262b0d49aa6576b67e5995cefe826560 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-09-27 00:01-0400\n" -"PO-Revision-Date: 2013-09-24 18:40+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 57212087ee511580e5b71ff55212490c08bd491f..1d76c5438069af3c67e15ce71a28bad2c4b09b12 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/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-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-30 00:50+0000\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" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -19,318 +19,325 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:237 +#: private/app.php:237 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: app.php:248 +#: private/app.php:248 msgid "No app name specified" msgstr "Nincs az alkalmazás név megadva." -#: app.php:352 +#: private/app.php:352 msgid "Help" msgstr "Súgó" -#: app.php:365 +#: private/app.php:365 msgid "Personal" msgstr "Személyes" -#: app.php:376 +#: private/app.php:376 msgid "Settings" msgstr "Beállítások" -#: app.php:388 +#: private/app.php:388 msgid "Users" msgstr "Felhasználók" -#: app.php:401 +#: private/app.php:401 msgid "Admin" msgstr "Adminsztráció" -#: app.php:832 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Sikertelen Frissítés \"%s\"." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Ismeretlen file tipús" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Hibás kép" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "webszolgáltatások saját kézben" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "nem sikerült megnyitni \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "A ZIP-letöltés nincs engedélyezve." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "A fájlokat egyenként kell letölteni." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Vissza a Fájlokhoz" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "A kiválasztott fájlok túl nagyok a zip tömörítéshez." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Tölts le a fileokat kisebb chunkokban, kölün vagy kérj segitséget a rendszergazdádtól." -#: 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 "Az alkalmazás nem szolgáltatott info.xml file-t" -#: 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 "Az alalmazás nem telepíthető, mert nem kompatibilis az ownClod ezzel a verziójával." -#: 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 "Az alkalmazás mappája már létezik" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nem lehetett létrehozni az alkalmzás mappáját. Kérlek ellenőrizd a jogosultásgokat. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Az alkalmazás nincs engedélyezve" -#: 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 "Azonosítási hiba" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "A token lejárt. Frissítse az oldalt." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fájlok" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Szöveg" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Képek" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s adja meg az adatbázist elérő felhasználó login nevét." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s adja meg az adatbázis nevét." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s az adatbázis neve nem tartalmazhat pontot" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Az MS SQL felhasználónév és/vagy jelszó érvénytelen: %s" -#: 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 "Vagy egy létező felhasználó vagy az adminisztrátor bejelentkezési nevét kell megadnia" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "A MySQL felhasználói név és/vagy jelszó érvénytelen" -#: 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 "Adatbázis hiba: \"%s\"" -#: 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 "A hibát ez a parancs okozta: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "A '%s'@'localhost' MySQL felhasználó már létezik." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Törölje ezt a felhasználót a MySQL-ből" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "A '%s'@'%%' MySQL felhasználó már létezik" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Törölje ezt a felhasználót a MySQL-ből." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Az Oracle kapcsolat nem hozható létre" -#: 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 "Az Oracle felhasználói név és/vagy jelszó érvénytelen" -#: 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 "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s" -#: 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 "A PostgreSQL felhasználói név és/vagy jelszó érvénytelen" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Állítson be egy felhasználói nevet az adminisztrációhoz." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Állítson be egy jelszót az adminisztrációhoz." -#: 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 "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Kérjük tüzetesen tanulmányozza át a <a href='%s'>telepítési útmutatót</a>." -#: tags.php:194 +#: private/tags.php:194 #, php-format msgid "Could not find category \"%s\"" msgstr "Ez a kategória nem található: \"%s\"" -#: template/functions.php:96 +#: private/template/functions.php:122 msgid "seconds ago" msgstr "pár másodperce" -#: 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 "ma" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "tegnap" -#: 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 "múlt hónapban" -#: 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 "tavaly" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "több éve" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Okozta:" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index f1bb5c03cfe5311e98077ca85ca553401eecca5f..0b90253f0004bc8392ac1fcfba4d7c72ef3e7cc5 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/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-09-30 10:17-0400\n" -"PO-Revision-Date: 2013-09-30 00:21+0000\n" -"Last-Translator: ebela <bela@dandre.hu>\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" "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" @@ -160,15 +160,15 @@ msgstr "Frissítés" msgid "Updated" msgstr "Frissítve" -#: js/personal.js:221 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Válassz profil képet" -#: js/personal.js:266 +#: js/personal.js:270 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:288 +#: js/personal.js:292 msgid "Saving..." msgstr "Mentés..." @@ -344,46 +344,54 @@ msgid "Allow users to only share with users in their groups" msgstr "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Biztonság" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Kötelező HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak a %s szolgáltatáshoz." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Kérjük kapcsolodjon a %s rendszerhez HTTPS protokollon keresztül, hogy be vagy ki kapcsoljaa kötelező SSL beállítást." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Naplózás" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Naplózási szint" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Több" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Verzió" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index b1d5e5391c8ec1b7fa202118ceeeb8fd36fee781..28f251846813b948dd869c30c2b52f6a0a2574c0 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-30 00:22+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: ebela <bela@dandre.hu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -27,17 +27,17 @@ msgstr "Nem sikerült törölni a hozzárendeléseket." msgid "Failed to delete the server configuration" msgstr "Nem sikerült törölni a kiszolgáló konfigurációját" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "A konfiguráció érvényes, és a kapcsolat létrehozható!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "A konfiguráció érvényes, de a kapcsolat nem hozható létre. Kérem ellenőrizze a kiszolgáló beállításait, és az elérési adatokat." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/hy/core.po b/l10n/hy/core.po index cfc83cf7733755bdedb9aa2ad3999a7a1be76521..5b7573876f53cae83ee13c1a1cba1cad37ba669b 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -314,8 +319,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 46e6544393b83d0ec2dfe86de6dca8e93e67d674..3f0ab24763f668b72d60ac52a3f73e518eabbe46 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -292,49 +305,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Բեռնել" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Ջնջել" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/hy/files_encryption.po b/l10n/hy/files_encryption.po index e9b9f2afbe858d683cddd076784dbdb7306f2387..60b4e5ae2b39e13f5be0dd872feb23244759ee94 100644 --- a/l10n/hy/files_encryption.po +++ b/l10n/hy/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index ac97dda5449ba513cd9ec171b7416541405a6056..d2cadb69d012551d1da4493ae81c57b5b29c3166 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-07-23 01:55-0400\n" +"POT-Creation-Date: 2013-10-06 19:07-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" @@ -17,7 +17,7 @@ msgstr "" "Language: hy\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 "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index b1c3d308429ecf7a8f6366c1052348046bb84f42..b86cee6006895b3f3ff3f13ffadb2cfb5fd33ce4 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:38+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" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +71,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Ջնջել" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index ecc4b3e278875ee2ac6d68f145bbe51cf9eca0f5..e86ef5094440267e21c7ee953d858b258933b4fb 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 194b8863fffe30d8918b1cbd48e23c4e7f1fcb59..4d5634de073999a0c85f750c33fab5bbb771745e 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -314,8 +319,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Error" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "Compartir" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Contrasigno" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Invia" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nomine de usator" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Crear un <strong>conto de administration</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avantiate" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Dossier de datos" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Configurar le base de datos" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "essera usate" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Usator de base de datos" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Contrasigno de base de datos" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Nomine de base de datos" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Hospite de base de datos" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Tu perdeva le contrasigno?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "memora" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Aperir session" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 5244ffda6257a0aa717fd147d6df0b44792c80e6..8a79152c0bffa9aa718efe5e3acff73e1c3e322a 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Files" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Error" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nomine" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Dimension" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Modificate" @@ -292,49 +305,49 @@ msgstr "Dossier" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Discargar" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Deler" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Incargamento troppo longe" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index 04eb7d8960c2d62f902e4c80562b55e8a7b0031d..d74401d383090528066a3ae90379f303b5e58eaf 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 37018f946045a2a28f3537687204775c630dcaae..9b2e205cccd126a7d74796cb47a5c363970250af 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: ia\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 "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 0ac362ef502a3ab5825d941d3d861bf98f0471f4..41a8965d2d4fda7c53111709bdf06363d4814570 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Error" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nomine" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +71,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Deler" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 3f1800a5b6a5b8b5c1cf280767c539dddedce4b1..1ef496076d3510a4bae17784d67f105d320f9972 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,325 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Adjuta" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personal" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Configurationes" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Usatores" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administration" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "servicios web sub tu controlo" -#: 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 "Files" -#: 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 "Texto" -#: 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/ia/settings.po b/l10n/ia/settings.po index 3097b240fc68c3fc3191691282dd88c8c574684d..1b6113bff368809bca42458322613bc076a0e5e9 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Error" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Actualisar" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Registro" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Plus" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index d67d3ec71b9409291f393db32f578e39377c97b1..c9c4e81d410cbc23a2aad9cb076f43563134f654 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/id/core.po b/l10n/id/core.po index 2a8ac8b61c464e483d51f1cb3c5597ab4e44b5e6..e745d2e9e05593363ec7ba1c2ffe1e5f395ae709 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "grup" @@ -309,8 +314,8 @@ msgstr "Tipe objek tidak ditentukan." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Galat" @@ -330,126 +335,134 @@ msgstr "Dibagikan" msgid "Share" msgstr "Bagikan" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Galat ketika membagikan" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Galat ketika membatalkan pembagian" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Galat ketika mengubah izin" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Dibagikan dengan Anda dan grup {group} oleh {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Dibagikan dengan Anda oleh {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Bagikan dengan" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Bagikan lewat tautan" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Lindungi dengan sandi" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Sandi" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Emailkan tautan ini ke orang" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Kirim" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Setel tanggal kedaluwarsa" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Tanggal kedaluwarsa" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Bagian lewat email:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Tidak ada orang ditemukan" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Berbagi ulang tidak diizinkan" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Dibagikan dalam {item} dengan {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Batalkan berbagi" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "dapat mengedit" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "kontrol akses" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "buat" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "perbarui" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "hapus" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "bagikan" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Dilindungi sandi" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Galat ketika menyetel tanggal kedaluwarsa" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Mengirim ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Email terkirim" +#: js/share.js:729 +msgid "Warning" +msgstr "Peringatan" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -486,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Anda akan menerima tautan penyetelan ulang sandi lewat Email." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nama pengguna" @@ -558,7 +571,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -612,48 +635,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Buat sebuah <strong>akun admin</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Lanjutan" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Folder data" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Konfigurasikan basis data" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Pengguna basis data" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Sandi basis data" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Nama basis data" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Tablespace basis data" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Host basis data" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Selesaikan instalasi" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -677,19 +704,27 @@ msgstr "Jika tidak pernah mengubah sandi Anda baru-baru ini, akun Anda mungkin d msgid "Please change your password to secure your account again." msgstr "Mohon ubah sandi Anda untuk mengamankan kembali akun Anda." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Lupa sandi?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "selalu masuk" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Masuk" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Cara Alternatif untuk Masuk" @@ -697,7 +732,12 @@ msgstr "Cara Alternatif untuk Masuk" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/id/files.po b/l10n/id/files.po index dc0c2272b6b574babb87bb9825d3e479b93ba6a7..10376eabb132dbf575c0456a0b9e96815a26fc4d 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "Direktori tidak valid." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Berkas" @@ -119,7 +119,7 @@ msgstr "URL tidak boleh kosong" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Galat" @@ -163,12 +163,12 @@ msgstr "mengganti {new_name} dengan {old_name}" msgid "undo" msgstr "urungkan" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -204,31 +204,44 @@ msgstr "Ruang penyimpanan Anda penuh, berkas tidak dapat diperbarui atau disinkr msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ruang penyimpanan hampir penuh ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nama" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Ukuran" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Dimodifikasi" @@ -289,49 +302,49 @@ msgstr "Folder" msgid "From link" msgstr "Dari tautan" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Berkas yang dihapus" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Anda tidak memiliki izin menulis di sini." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Unduh" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Batalkan berbagi" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Hapus" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Yang diunggah terlalu besar" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Berkas sedang dipindai, silakan tunggu." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Yang sedang dipindai" diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index a6c250dbb0070d0d2e460c22cbadb0b5633b80bd..62ec821102c5eab78d5326a6eaed2ef91a08b68b 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Menyimpan..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index fc20f2c014066834d6c596cee7474e4f39cd9314..b58802d157511c59c7e39769f4db74f853d8cfed 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\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 "Akses diberikan" @@ -25,7 +25,7 @@ msgstr "Akses diberikan" msgid "Error configuring Dropbox storage" msgstr "Kesalahan dalam mengonfigurasi penyimpanan Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Berikan hak akses" @@ -33,24 +33,24 @@ msgstr "Berikan hak akses" msgid "Please provide a valid Dropbox app key and secret." msgstr "Masukkan kunci dan sandi aplikasi Dropbox yang benar." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Kesalahan dalam mengkonfigurasi penyimpanan 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>Peringatan:</b> \"smbclient\" tidak terpasang. Mount direktori CIFS/SMB tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." -#: 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>Peringatan:</b> Dukungan FTP di PHP tidak aktif atau tidak terpasang. Mount direktori FTP tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." -#: 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/id/files_sharing.po b/l10n/id/files_sharing.po index 4c5ff880016877c7dfbfb786bf0f63320bdeb6e8..2daa40bb0cab06198d245c02d783d6f528a0c3d6 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-14 00:01+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 17:20+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 5f5941b22adf3abf286c9d75c67ce0b49cf55914..7e2100097612c458aae26f8d48a62f0d3ab38e91 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -27,41 +27,41 @@ msgstr "Tidak dapat menghapus permanen %s" msgid "Couldn't restore %s" msgstr "Tidak dapat memulihkan %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "jalankan operasi pemulihan" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Galat" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "hapus berkas secara permanen" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Hapus secara permanen" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nama" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Dihapus" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +69,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "Tempat sampah anda kosong!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Pulihkan" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Hapus" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 8aa1ab9b7cee1072c233cf947e6b4c5b409b7f0f..d4e1979c03f960b4c32fed8e443d89531abc33ee 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,314 +17,321 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Bantuan" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Pribadi" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Setelan" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Pengguna" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "layanan web dalam kontrol Anda" -#: 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 "Pengunduhan ZIP dimatikan." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Berkas harus diunduh satu persatu." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Kembali ke Daftar Berkas" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya." -#: 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 "Aplikasi tidak diaktifkan" -#: 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 "Galat saat autentikasi" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token kedaluwarsa. Silakan muat ulang halaman." -#: 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 "Berkas" -#: 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 "Teks" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Gambar" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s masukkan nama pengguna basis data." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s masukkan nama basis data." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%sAnda tidak boleh menggunakan karakter titik pada nama basis data" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nama pengguna dan/atau sandi MySQL tidak valid: %s" -#: 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 "Anda harus memasukkan akun yang sudah ada atau administrator." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Nama pengguna dan/atau sandi MySQL tidak valid" -#: 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 "Galat Basis Data: \"%s\"" -#: 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 "Perintah yang bermasalah: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Pengguna MySQL '%s'@'localhost' sudah ada." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Hapus pengguna ini dari MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Pengguna MySQL '%s'@'%%' sudah ada." -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Hapus pengguna ini dari MySQL." -#: 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 "Nama pengguna dan/atau sandi Oracle tidak valid" -#: 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 "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s" -#: 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 "Nama pengguna dan/atau sandi PostgreSQL tidak valid" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Setel nama pengguna admin." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Setel sandi admin." -#: 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 "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Silakan periksa ulang <a href='%s'>panduan instalasi</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Tidak dapat menemukan kategori \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: 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 "hari ini" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "kemarin" -#: 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 "bulan kemarin" -#: 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 "tahun kemarin" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "beberapa tahun lalu" -#: 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 "Tidak dapat menemukan kategori \"%s\"" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 7f2ef31f5527d87ea05365834fdc28196657da0d..17de98e788e9e79aff49525b4a160588dfcce97d 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Perbarui ke {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Nonaktifkan" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "aktifkan" @@ -129,43 +129,43 @@ msgstr "aktifkan" msgid "Please wait...." msgstr "Mohon tunggu...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Memperbarui...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Gagal ketika memperbarui aplikasi" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Galat" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Perbarui" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Diperbarui" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Menyimpan..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Keamanan" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Selalu Gunakan HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Catat" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Level pencatatan" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Lainnya" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Versi" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index bb775d8df95e66822118619aa445aadea6fa96c2..3e22306396c5209c2664b948863428e34225bfe2 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Gagal menghapus konfigurasi server" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigurasi valid dan koneksi dapat dilakukan!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurasi valid, tetapi Bind gagal. Silakan cek pengaturan server dan keamanan." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/is/core.po b/l10n/is/core.po index f2fe78f0c1cc2c0218102237326277f77c24e026..feb1caadd103de2c41ee491b3605ceaa22ef0f2e 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,17 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -315,8 +320,8 @@ msgstr "Tegund ekki tilgreind" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Villa" @@ -336,126 +341,134 @@ msgstr "Deilt" msgid "Share" msgstr "Deila" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Villa við deilingu" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Villa við að hætta deilingu" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Villa við að breyta aðgangsheimildum" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Deilt með þér og hópnum {group} af {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Deilt með þér af {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Deila með" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Deila með veftengli" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Verja með lykilorði" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Lykilorð" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Senda vefhlekk í tölvupóstu til notenda" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Senda" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Setja gildistíma" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Gildir til" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Deila með tölvupósti:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Engir notendur fundust" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Endurdeiling er ekki leyfð" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Deilt með {item} ásamt {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Hætta deilingu" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "getur breytt" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "aðgangsstýring" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "mynda" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "uppfæra" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "eyða" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "deila" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Verja með lykilorði" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Tölvupóstur sendur" +#: js/share.js:729 +msgid "Warning" +msgstr "Aðvörun" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -492,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Notendanafn" @@ -564,7 +577,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -618,48 +641,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Útbúa <strong>vefstjóra aðgang</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Ítarlegt" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Gagnamappa" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Stilla gagnagrunn" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "verður notað" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Gagnagrunns notandi" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Gagnagrunns lykilorð" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Nafn gagnagrunns" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Töflusvæði gagnagrunns" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Netþjónn gagnagrunns" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Virkja uppsetningu" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -683,19 +710,27 @@ msgstr "Ef þú breyttir ekki lykilorðinu þínu fyrir skömmu, er mögulegt a msgid "Please change your password to secure your account again." msgstr "Vinsamlegast breyttu lykilorðinu þínu til að tryggja öryggi þitt." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Týndir þú lykilorðinu?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "muna eftir mér" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "<strong>Skrá inn</strong>" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -703,7 +738,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/is/files.po b/l10n/is/files.po index e53fa55a725da9f8186457b4410acd69b3b652d9..23bff8d67e324c36658ab0e506db357fbf950d0a 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "Ógild mappa." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Skrár" @@ -119,7 +119,7 @@ msgstr "Vefslóð má ekki vera tóm." 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Villa" @@ -163,13 +163,13 @@ msgstr "yfirskrifaði {new_name} með {old_name}" msgid "undo" msgstr "afturkalla" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nafn" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Stærð" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Breytt" @@ -292,49 +305,49 @@ msgstr "Mappa" msgid "From link" msgstr "Af tengli" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Ekkert hér. Settu eitthvað inn!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Niðurhal" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Hætta deilingu" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Eyða" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Innsend skrá er of stór" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Er að skima" diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index db4f65b88d8a1b8e00a28d25f6aaf898f1f82383..2934c51ed1e4a88bcdea20786b00bb5ef38d63d1 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Er að vista ..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 2d436f7d7ef7f04701e50bebbbf0b5f1042202e9..45381cc3b7569ac00530cc73509abcf3b0b768d3 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: is\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 "Aðgengi veitt" @@ -25,7 +25,7 @@ msgstr "Aðgengi veitt" msgid "Error configuring Dropbox storage" msgstr "Villa við að setja upp Dropbox gagnasvæði" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Veita aðgengi" @@ -33,24 +33,24 @@ msgstr "Veita aðgengi" msgid "Please provide a valid Dropbox app key and secret." msgstr "Gefðu upp virkan Dropbox lykil og leynikóða" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Villa kom upp við að setja upp Google Drive gagnasvæði" -#: 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>Aðvörun:</b> \"smbclient\" er ekki uppsettur. Uppsetning á CIFS/SMB gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." -#: 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>Aðvörun:</b> FTP stuðningur í PHP er ekki virkur. Uppsetning á FTP gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." -#: 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/is/files_trashbin.po b/l10n/is/files_trashbin.po index c28f1236b660d0816eec1803ed866b70fec35c79..60884719266cac89ff00d17e3aed3da07bbc09d2 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Villa" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nafn" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +71,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Eyða" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index c814613bdc2fe0a12dc156cb9ce0ce88f9c8a6b7..4042e96b859edbd5483dd9a4b105bb7c37206501 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,325 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Hjálp" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Um mig" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Stillingar" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Notendur" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Stjórnun" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "vefþjónusta undir þinni stjórn" -#: 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 "Slökkt á ZIP niðurhali." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Skrárnar verður að sækja eina og eina" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Aftur í skrár" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Valdar skrár eru of stórar til að búa til ZIP skrá." -#: 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 "Forrit ekki virkt" -#: 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 "Villa við auðkenningu" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Auðkenning útrunnin. Vinsamlegast skráðu þig aftur inn." -#: 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 "Skrár" -#: 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 "Texti" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Myndir" -#: 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 "Fann ekki flokkinn \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "sek." -#: 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 "í dag" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "í gær" -#: 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 "síðasta mánuði" -#: 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 "síðasta ári" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "einhverjum árum" -#: 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 "Fann ekki flokkinn \"%s\"" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 928b1480018805102dd75bf61f66b4d7b65cd425..e920436c9c79d55b33420818a940b4f5cdaa7abc 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Gera óvirkt" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Virkja" @@ -130,43 +130,43 @@ msgstr "Virkja" msgid "Please wait...." msgstr "Andartak...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Uppfæri..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Villa" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Uppfæra" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Uppfært" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Er að vista ..." @@ -342,46 +342,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Meira" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Minna" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 5f4609f359bbae18b85765961add4cd3df3debd6..d98c32e3ffa56e9368b736a7458814d2cdcbf876 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -26,17 +26,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/it/core.po b/l10n/it/core.po index a5586707e43675c73575defaada6de1811419f55..ac90b3bdd2dfde4d04d9800618017d8f774a904f 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-09-29 00:02-0400\n" -"PO-Revision-Date: 2013-09-27 18:30+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,12 +21,17 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s ha condiviso «%s» con te" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Impossibile inviare email ai seguenti utenti: %s" + +#: ajax/share.php:327 msgid "group" msgstr "gruppo" @@ -318,8 +323,8 @@ msgstr "Il tipo di oggetto non è specificato." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Errore" @@ -339,126 +344,134 @@ msgstr "Condivisi" msgid "Share" msgstr "Condividi" -#: js/share.js:131 js/share.js:696 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Errore durante la condivisione" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Errore durante la rimozione della condivisione" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Errore durante la modifica dei permessi" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Condiviso con te e con il gruppo {group} da {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Condiviso con te da {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Condividi con" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Condividi con collegamento" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Proteggi con password" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Password" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Consenti caricamento pubblico" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Invia collegamento via email" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Invia" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Imposta data di scadenza" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Data di scadenza" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Condividi tramite email:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Non sono state trovate altre persone" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "La ri-condivisione non è consentita" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Condiviso in {item} con {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "notifica l'utente tramite email" + +#: js/share.js:361 msgid "can edit" msgstr "può modificare" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "controllo d'accesso" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "creare" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "aggiornare" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "elimina" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "condividi" -#: js/share.js:400 js/share.js:643 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:656 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:668 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:683 +#: js/share.js:694 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:694 +#: js/share.js:705 msgid "Email sent" msgstr "Messaggio inviato" +#: js/share.js:729 +msgid "Warning" +msgstr "Avviso" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -495,7 +508,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Riceverai un collegamento per ripristinare la tua password via email" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nome utente" @@ -567,8 +580,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Ehilà,\n\nvolevo solamente farti sapere che %s ha condiviso %s con te.\nGuarda: %s\n\nSaluti!" +msgstr "Ciao,\n\nvolevo informarti che %s ha condiviso %s con te.\nVedi: %s\n\n" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "La condivisione scadrà il %s.\n\n" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "Saluti!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -621,48 +644,52 @@ msgstr "Per informazioni su come configurare correttamente il tuo server, vedi l msgid "Create an <strong>admin account</strong>" msgstr "Crea un <strong>account amministratore</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avanzat" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Cartella dati" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Configura il database" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "sarà utilizzato" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Utente del database" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Password del database" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Nome del database" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Spazio delle tabelle del database" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Host del database" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Termina la configurazione" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "Completamento..." + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -686,19 +713,27 @@ msgstr "Se non hai cambiato la password recentemente, il tuo account potrebbe es msgid "Please change your password to secure your account again." msgstr "Cambia la password per rendere nuovamente sicuro il tuo account." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Hai perso la password?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "ricorda" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Accedi" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Accessi alternativi" @@ -706,8 +741,13 @@ msgstr "Accessi alternativi" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Ehilà,<br><br>volevo solamente farti sapere che %s ha condiviso «%s» con te.<br><a href=\"%s\">Guarda!</a><br><br>Saluti!" +"href=\"%s\">View it!</a><br><br>" +msgstr "Ciao,<br><br>volevo informarti che %s ha condiviso %s con te.<br><a href=\"%s\">Vedi!</a><br><br>" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "La condivisione scadrà il %s.<br><br>" #: templates/update.php:3 #, php-format diff --git a/l10n/it/files.po b/l10n/it/files.po index 3b8b0f65394b9c77b6b4902b41bedb771dbbbbeb..d06b23a9a28edbcd4fcbe243ccb4b5107389d65a 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-09-30 10:14-0400\n" -"PO-Revision-Date: 2013-09-30 12:15+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 11:20+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "L'URL non può essere vuoto." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato a ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Errore" @@ -165,13 +165,13 @@ msgstr "sostituito {new_name} con {old_name}" msgid "undo" msgstr "annulla" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartella" msgstr[1] "%n cartelle" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" @@ -209,31 +209,44 @@ msgstr "Lo spazio di archiviazione è pieno, i file non possono essere più aggi msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lo spazio di archiviazione è quasi pieno ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso" + +#: 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 "Chiave privata non valida per l'applicazione di cifratura. Aggiorna la password della chiave privata nelle impostazioni personali per ripristinare l'accesso ai tuoi file cifrati." + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "La cifratura è stata disabilitata ma i tuoi file sono ancora cifrati. Vai nelle impostazioni personali per decifrare i file." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Errore durante lo spostamento del file" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nome" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Dimensione" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Modificato" @@ -294,49 +307,49 @@ msgstr "Cartella" msgid "From link" msgstr "Da collegamento" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "File eliminati" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Qui non hai i permessi di scrittura." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Scarica" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Rimuovi condivisione" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Elimina" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Caricamento troppo grande" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "I file che stai provando a caricare superano la dimensione massima consentita su questo server." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index eac60e403baddd9a6a035236de4003ffb3522416..9648bdc7e36292a9a627472746ed4bb7b22b6704 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/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-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <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" @@ -46,17 +46,24 @@ msgstr "Password modificata correttamente." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Impossibile cambiare la password. Forse la vecchia password non era corretta." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Password della chiave privata aggiornata correttamente." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Impossibile aggiornare la password della chiave privata. Forse la vecchia password non era corretta." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -64,36 +71,30 @@ msgid "" "files." msgstr "La chiave privata non è valida! Forse la password è stata cambiata esternamente al sistema di ownCloud (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Requisiti mancanti." -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "I seguenti utenti non sono configurati per la cifratura:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Salvataggio in corso..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "La tua chiave privata non è valida! Forse è stata modifica dall'esterno." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Puoi sbloccare la chiave privata nelle tue" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "impostazioni personali" @@ -110,27 +111,35 @@ msgstr "Abilita la chiave di recupero (permette di recuperare i file utenti in c msgid "Recovery key password" msgstr "Password della chiave di recupero" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Abilitata" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Disabilitata" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Cambia la password della chiave di recupero:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Vecchia password della chiave di recupero" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Nuova password della chiave di recupero" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Modifica password" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 323adf9021f2661a882cfbc240f178b7641eee3d..b6c4e7090dd31518ea681eaa711e4370e5aed3d8 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-08-25 19:18-0400\n" -"PO-Revision-Date: 2013-08-25 06:50+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -28,43 +28,43 @@ msgstr "Impossibile eliminare %s definitivamente" msgid "Couldn't restore %s" msgstr "Impossibile ripristinare %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "esegui operazione di ripristino" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Errore" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "elimina il file definitivamente" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Elimina definitivamente" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nome" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Eliminati" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartella" msgstr[1] "%n cartelle" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n file" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "ripristinati" @@ -72,11 +72,11 @@ msgstr "ripristinati" msgid "Nothing in here. Your trash bin is empty!" msgstr "Qui non c'è niente. Il tuo cestino è vuoto." -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Ripristina" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Elimina" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 27b7c76e85e1ba49620f6c453fc9b39281adc9f3..634898776d9591e886889027970bb31fe4a0022a 100644 --- a/l10n/it/lib.po +++ b/l10n/it/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-19 05:50+0000\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" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -20,318 +20,325 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "Il nome dell'applicazione non è specificato" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Aiuto" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personale" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Impostazioni" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Utenti" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Aggiornamento non riuscito \"%s\"." -#: avatar.php:56 +#: 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" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Tipo di file sconosciuto" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Immagine non valida" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "servizi web nelle tue mani" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "impossibile aprire \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "Lo scaricamento in formato ZIP è stato disabilitato." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "I file devono essere scaricati uno alla volta." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Torna ai file" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "I file selezionati sono troppo grandi per generare un file zip." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Scarica i file in blocchi più piccoli, separatamente o chiedi al tuo amministratore." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Nessuna fonte specificata durante l'installazione dell'applicazione" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Nessun href specificato durante l'installazione dell'applicazione da http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Nessun percorso specificato durante l'installazione dell'applicazione da file locale" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Gli archivi di tipo %s non sono supportati" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Apertura archivio non riuscita durante l'installazione dell'applicazione" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "L'applicazione non fornisce un file info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "L'applicazione non può essere installata a causa di codice non consentito al suo interno" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "L'applicazione non può essere installata poiché non è compatibile con questa versione di ownCloud" -#: 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 "L'applicazione non può essere installata poiché contiene il tag <shipped>true<shipped> che non è permesso alle applicazioni non shipped" -#: 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 "L'applicazione non può essere installata poiché la versione in info.xml/version non è la stessa riportata dall'app store" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "La cartella dell'applicazione esiste già" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Impossibile creare la cartella dell'applicazione. Correggi i permessi. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "L'applicazione non è abilitata" -#: 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 "Errore di autenticazione" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token scaduto. Ricarica la pagina." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "File" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Testo" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Immagini" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s digita il nome utente del database." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s digita il nome del database." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s non dovresti utilizzare punti nel nome del database" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nome utente e/o password MS SQL non validi: %s" -#: 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 "È necessario inserire un account esistente o l'amministratore." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Nome utente e/o password di MySQL non validi" -#: 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 "Errore DB: \"%s\"" -#: 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 "Il comando non consentito era: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "L'utente MySQL '%s'@'localhost' esiste già." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Elimina questo utente da MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "L'utente MySQL '%s'@'%%' esiste già" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Elimina questo utente da MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "La connessione a Oracle non può essere stabilita" -#: 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 "Nome utente e/o password di Oracle non validi" -#: 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 "Il comando non consentito era: \"%s\", nome: %s, password: %s" -#: 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 "Nome utente e/o password di PostgreSQL non validi" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Imposta un nome utente di amministrazione." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Imposta una password di amministrazione." -#: 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 "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Leggi attentamente le <a href='%s'>guide d'installazione</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Impossibile trovare la categoria \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "secondi fa" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto fa" msgstr[1] "%n minuti fa" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ora fa" msgstr[1] "%n ore fa" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "oggi" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "ieri" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n giorno fa" msgstr[1] "%n giorni fa" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "mese scorso" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mese fa" msgstr[1] "%n mesi fa" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "anno scorso" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "anni fa" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Causato da:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Impossibile trovare la categoria \"%s\"" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 8248b45ef2445294ca1bcbb0d1c6773952ac36d8..305ae7af50ed502c03e790d75a42973145df8031 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-09-30 10:17-0400\n" -"PO-Revision-Date: 2013-09-30 12:15+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 11:20+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -161,15 +161,15 @@ msgstr "Aggiorna" msgid "Updated" msgstr "Aggiornato" -#: js/personal.js:221 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Seleziona un'immagine del profilo" -#: js/personal.js:266 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decifratura dei file in corso... Attendi, potrebbe richiedere del tempo." -#: js/personal.js:288 +#: js/personal.js:292 msgid "Saving..." msgstr "Salvataggio in corso..." @@ -345,46 +345,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Consenti agli utenti di condividere solo con utenti dei loro gruppi" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "Consenti le notifiche tramite posta elettronica" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "Consenti all'utente di inviare notifiche tramite posta elettronica per i file condivisi" + +#: templates/admin.php:178 msgid "Security" msgstr "Protezione" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Forza HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forza i client a connettersi a %s tramite una connessione cifrata." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Connettiti al tuo %s tramite HTTPS per abilitare o disabilitare l'applicazione di SSL." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Livello di log" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Altro" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Meno" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Versione" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 5e50a6b6e6532abfd1a2a81e5c9b4db34c08dda7..2c63238f98d884836455a227ad49a87c70b7411c 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -26,17 +26,17 @@ msgstr "Cancellazione delle associazioni non riuscita." msgid "Failed to delete the server configuration" msgstr "Eliminazione della configurazione del server non riuscita" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "La configurazione è valida e la connessione può essere stabilita." -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "La configurazione è valida, ma il Bind non è riuscito. Controlla le impostazioni del server e le credenziali." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 73ad535aee2d066a2cb0b53b8bd97bee70ee36df..3484f6f4dd3908d580074db4d31a819d374c2d26 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-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-30 06:25+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <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,12 +21,17 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%sが あなたと »%s«を共有しました" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "グループ" @@ -313,8 +318,8 @@ msgstr "オブジェクタイプが指定されていません。" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "エラー" @@ -334,126 +339,134 @@ msgstr "共有中" msgid "Share" msgstr "共有" -#: js/share.js:131 js/share.js:696 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "共有でエラー発生" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "共有解除でエラー発生" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "権限変更でエラー発生" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "あなたと {owner} のグループ {group} で共有中" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "{owner} と共有中" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "共有者" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "URLリンクで共有" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "パスワード保護" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "パスワード" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "アップロードを許可" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "メールリンク" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "送信" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "有効期限を設定" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "有効期限" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "メール経由で共有:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "ユーザーが見つかりません" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "再共有は許可されていません" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "{item} 内で {user} と共有中" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "共有解除" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "編集可能" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "アクセス権限" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "作成" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "更新" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "削除" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "共有" -#: js/share.js:400 js/share.js:643 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:656 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:668 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:683 +#: js/share.js:694 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:694 +#: js/share.js:705 msgid "Email sent" msgstr "メールを送信しました" +#: js/share.js:729 +msgid "Warning" +msgstr "警告" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -490,7 +503,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "メールでパスワードをリセットするリンクが届きます。" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "ユーザー名" @@ -562,8 +575,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n\nそれでは。" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -616,48 +639,52 @@ msgstr "サーバーを適正に設定する情報は、こちらの<a href=\"%s msgid "Create an <strong>admin account</strong>" msgstr "<strong>管理者アカウント</strong>を作成してください" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "詳細設定" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "データフォルダ" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "データベースを設定してください" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "が使用されます" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "データベースのユーザ名" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "データベースのパスワード" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "データベース名" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "データベースの表領域" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "データベースのホスト名" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "セットアップを完了します" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -681,19 +708,27 @@ msgstr "最近パスワードを変更していない場合、あなたのアカ msgid "Please change your password to secure your account again." msgstr "アカウント保護の為、パスワードを再度の変更をお願いいたします。" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "パスワードを忘れましたか?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "パスワードを記憶する" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "ログイン" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "代替ログイン" @@ -701,8 +736,13 @@ msgstr "代替ログイン" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "こんにちは、<br><br>%sがあなたと »%s« を共有したことをお知らせします。<br><a href=\"%s\">それを表示</a><br><br>それでは。" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 23062b05965b6fe278adb748fd258b90a53271ad..1f6469f9e0c4de21e07c5f0ee285816646d5e8c4 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-09-30 10:14-0400\n" -"PO-Revision-Date: 2013-09-30 06:27+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\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" "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" @@ -124,7 +124,7 @@ msgstr "URLは空にできません。" msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "無効なフォルダ名です。'Shared' の利用はownCloudで予約済みです" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "エラー" @@ -168,12 +168,12 @@ msgstr "{old_name} を {new_name} に置換" msgid "undo" msgstr "元に戻す" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n個のフォルダ" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n個のファイル" @@ -209,31 +209,44 @@ msgstr "あなたのストレージは一杯です。ファイルの更新と同 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "あなたのストレージはほぼ一杯です({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "ファイルの移動エラー" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "名前" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "サイズ" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "変更" @@ -294,49 +307,49 @@ msgstr "フォルダ" msgid "From link" msgstr "リンク" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "削除ファイル" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "あなたには書き込み権限がありません。" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "ここには何もありません。何かアップロードしてください。" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "ダウンロード" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "共有解除" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "削除" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "アップロードには大きすぎます。" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "ファイルをスキャンしています、しばらくお待ちください。" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "スキャン中" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index ba39e536210288eb06f2e4682d38710e48e46aac..abaa14b511fd05156072e5785590bcb274fe1a85 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/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-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: tt yn <tetuyano+transi@gmail.com>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <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" @@ -46,17 +46,24 @@ msgstr "パスワードを変更できました。" msgid "Could not change the password. Maybe the old password was not correct." msgstr "パスワードを変更できませんでした。古いパスワードが間違っているかもしれません。" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "秘密鍵のパスワードが正常に更新されました。" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -64,36 +71,30 @@ msgid "" "files." msgstr "秘密鍵が有効ではありません。パスワードがownCloudシステムの外部(例えば、企業ディレクトリ)から変更された恐れがあります。個人設定で秘密鍵のパスワードを更新して、暗号化されたファイルを回復出来ます。" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "必要要件が満たされていません。" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "以下のユーザーは、暗号化設定がされていません:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "保存中..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "秘密鍵が有効ではありません。パスワードが外部から変更された恐れがあります。" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "個人設定で" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "秘密鍵をアンロックできます" @@ -110,27 +111,35 @@ msgstr "復旧キーを有効化 (万一パスワードを亡くした場合も msgid "Recovery key password" msgstr "復旧キーのパスワード" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "有効" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "無効" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "復旧キーのパスワードを変更:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "古い復旧キーのパスワード" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "新しい復旧キーのパスワード" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "パスワードを変更" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 63c2ad22a060940de71dc6d1534f6f600347038f..1dfe940826fc40e69dcdcbd3f5e21548b4cb80b6 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <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" @@ -17,7 +17,7 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\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 "アクセスは許可されました" @@ -25,7 +25,7 @@ msgstr "アクセスは許可されました" msgid "Error configuring Dropbox storage" msgstr "Dropboxストレージの設定エラー" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "アクセスを許可" @@ -33,24 +33,24 @@ msgstr "アクセスを許可" msgid "Please provide a valid Dropbox app key and secret." msgstr "有効なDropboxアプリのキーとパスワードを入力して下さい。" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Googleドライブストレージの設定エラー" -#: 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>警告:</b> \"smbclient\" はインストールされていません。CIFS/SMB 共有のマウントはできません。システム管理者にインストールをお願いして下さい。" -#: 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>警告:</b> PHPのFTPサポートは無効もしくはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールをお願いして下さい。" -#: 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/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index a52a506736960d16d988984d898ba8e312cc3a40..b865b55bdc159abd1a5365ad1b33f892c1017f75 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-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-15 09:50+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: plazmism <gomidori@live.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -29,41 +29,41 @@ msgstr "%s を完全に削除出来ませんでした" msgid "Couldn't restore %s" msgstr "%s を復元出来ませんでした" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "復元操作を実行する" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "エラー" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "ファイルを完全に削除する" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "完全に削除する" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "名前" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "削除済み" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n個のフォルダ" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n個のファイル" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "復元済" @@ -71,11 +71,11 @@ msgstr "復元済" msgid "Nothing in here. Your trash bin is empty!" msgstr "ここには何もありません。ゴミ箱は空です!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "復元" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "削除" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 6b0484f521d94f4656e0dc090bf73e87a1641d02..6607afad7bbd978295340251d55cc479006bf0b9 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/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-09-22 12:56-0400\n" -"PO-Revision-Date: 2013-09-21 13:50+0000\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" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -21,314 +21,321 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:237 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr " \"%s\" アプリは、このバージョンのownCloudと互換性がない為、インストールできません。" -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "アプリ名が未指定" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "ヘルプ" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "個人" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "設定" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "ユーザ" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "管理" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" へのアップグレードに失敗しました。" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "暗号無しでは利用不可なカスタムプロフィール画像" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "不明なファイルタイプ" -#: avatar.php:69 +#: private/avatar.php:69 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 "\"%s\" が開けません" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "ZIPダウンロードは無効です。" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "ファイルは1つずつダウンロードする必要があります。" -#: 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 "選択したファイルはZIPファイルの生成には大きすぎます。" -#: 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 "アプリインストール時のhttpの URL が未指定" -#: 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 "\"%s\"タイプのアーカイブ形式は未サポート" -#: 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 "アプリにinfo.xmlファイルが入っていません" -#: 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 "アプリは、このバージョンのownCloudと互換性がない為、インストールできません。" -#: 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 "非shippedアプリには許可されない<shipped>true</shipped>タグが含まれているためにアプリをインストール出来ません。" -#: 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 "info.xml/versionのバージョンがアプリストアのバージョンと合っていない為、アプリはインストールされません" -#: 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 "アプリフォルダを作成出来ませんでした。%s のパーミッションを修正してください。" -#: 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:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ファイル" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "TTY TDD" -#: search/provider/file.php:30 +#: 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 "%s のデータベースのユーザ名を入力してください。" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s のデータベース名を入力してください。" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s ではデータベース名にドットを利用できないかもしれません。" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL サーバーのユーザー名/パスワードが正しくありません: %s" -#: 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 "MySQLのユーザ名もしくはパスワードは有効ではありません" -#: 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 "DBエラー: \"%s\"" -#: 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 "違反コマンド: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQLのユーザ '%s'@'localhost' はすでに存在します。" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "MySQLからこのユーザを削除" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQLのユーザ '%s'@'%%' はすでに存在します。" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "MySQLからこのユーザを削除する。" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracleへの接続が確立できませんでした。" -#: 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 "Oracleのユーザ名もしくはパスワードは有効ではありません" -#: 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 "違反コマンド: \"%s\"、名前: %s、パスワード: %s" -#: 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 "PostgreSQLのユーザ名もしくはパスワードは有効ではありません" -#: 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 "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "<a href='%s'>インストールガイド</a>をよく確認してください。" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "カテゴリ \"%s\" が見つかりませんでした" + +#: 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] "%n 分前" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 時間後" -#: 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] "%n 日後" -#: 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] "%n カ月後" -#: 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 "カテゴリ \"%s\" が見つかりませんでした" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 9414aa1720c0e7f67532967b9a00b2b71e2682f4..1ffa3d1aac9da3526d4f9fbf83d9fbc5704c1cd5 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-09-30 10:17-0400\n" -"PO-Revision-Date: 2013-09-30 06:33+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\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" "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:221 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "プロファイル画像を選択" -#: js/personal.js:266 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "ファイルを複合中... しばらくお待ちください、この処理には少し時間がかかるかもしれません。" -#: js/personal.js:288 +#: js/personal.js:292 msgid "Saving..." msgstr "保存中..." @@ -344,46 +344,54 @@ msgid "Allow users to only share with users in their groups" msgstr "ユーザにグループ内のユーザとのみ共有を許可する" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "セキュリティ" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "常にHTTPSを使用する" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "クライアントから %sへの接続を常に暗号化する。" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "強制的なSSL接続を有効/無効にするために、HTTPS経由で %s へ接続してください。" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "ログ" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "もっと見る" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "閉じる" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "バージョン" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 9b1f34b05cf7f9b9a7a8fb3fa2075e842d51f47f..55f63dc2434f5cb78729a000589cdb690271a9be 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,17 +27,17 @@ msgstr "マッピングのクリアに失敗しました。" msgid "Failed to delete the server configuration" msgstr "サーバ設定の削除に失敗しました" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "設定は有効であり、接続を確立しました!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "設定は有効ですが、接続に失敗しました。サーバ設定と資格情報を確認して下さい。" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/ka/core.po b/l10n/ka/core.po index e6a62126ccca6d15123b24a2be3797f35cbc1af0..4aec55bfb1630f9bfb1985fab6dd0788137021ef 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: ka\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -309,8 +314,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -330,126 +335,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "პაროლი" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -486,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -558,7 +571,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -612,48 +635,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -677,19 +704,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -697,7 +732,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 84143c9cd2adf7a506c212df82eb35f8b2efdc53..d5402ad66a63b83d580deabef06586a6f167c85e 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ფაილები" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,12 +163,12 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -204,31 +204,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -289,49 +302,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "გადმოწერა" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ka/files_encryption.po b/l10n/ka/files_encryption.po index 581f6b03001215e57a8a4b00d14e7ad1b1a59857..6352ac21942b86de4777bd7006c5da55d3ef7b89 100644 --- a/l10n/ka/files_encryption.po +++ b/l10n/ka/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index 13336d9871dffe56d954bbe3d7000c89ea243afd..c9960a69dad74c6405fd80b22d3bc00aeb159287 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -17,314 +17,321 @@ msgstr "" "Language: ka\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "შველა" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "პერსონა" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "მომხმარებლები" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "ადმინისტრატორი" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "ZIP გადმოწერა გამორთულია" -#: 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/ka/settings.po b/l10n/ka/settings.po index 86e902ed4f42d08dc2bcd38e8b9da2471cc28e75..a250fb8167c14ff0c29e236a29ffeabd15b7ff80 100644 --- a/l10n/ka/settings.po +++ b/l10n/ka/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ka/user_ldap.po b/l10n/ka/user_ldap.po index 69f4675a9c6b605cbba8bf73cc9c4ec96b147aac..44a23bfdf94c80191a3dd3c2954ea5a4515eb0ee 100644 --- a/l10n/ka/user_ldap.po +++ b/l10n/ka/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 5c70d01e3e1043dc0a33e6ab307ee5595c5d1ac7..afae9b51b869b2a367b77c55c88241f938ce1cef 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "ჯგუფი" @@ -309,8 +314,8 @@ msgstr "ობიექტის ტიპი არ არის მითი #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "შეცდომა" @@ -330,126 +335,134 @@ msgstr "გაზიარებული" msgid "Share" msgstr "გაზიარება" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "შეცდომა გაზიარების გაუქმების დროს" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "შეცდომა დაშვების ცვლილების დროს" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "გაზიარდა თქვენთვის და ჯგუფისთვის {group}, {owner}–ის მიერ" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "გაზიარდა თქვენთვის {owner}–ის მიერ" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "გააზიარე შემდეგით:" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "გაუზიარე ლინკით" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "პაროლით დაცვა" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "პაროლი" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "ლინკის პიროვნების იმეილზე გაგზავნა" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "გაგზავნა" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "მიუთითე ვადის გასვლის დრო" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "ვადის გასვლის დრო" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "გააზიარე მეილზე" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "მომხმარებელი არ არის ნაპოვნი" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "მეორეჯერ გაზიარება არ არის დაშვებული" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "გაზიარდა {item}–ში {user}–ის მიერ" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "გაუზიარებადი" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "შეგიძლია შეცვლა" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "დაშვების კონტროლი" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "შექმნა" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "განახლება" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "წაშლა" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "გაზიარება" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "გაგზავნა ...." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "იმეილი გაიგზავნა" +#: js/share.js:729 +msgid "Warning" +msgstr "გაფრთხილება" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -486,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "თქვენ მოგივათ პაროლის შესაცვლელი ლინკი მეილზე" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "მომხმარებლის სახელი" @@ -558,7 +571,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -612,48 +635,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "შექმენი <strong>ადმინ ექაუნტი</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "დამატებითი ფუნქციები" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "მონაცემთა საქაღალდე" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "მონაცემთა ბაზის კონფიგურირება" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "გამოყენებული იქნება" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "მონაცემთა ბაზის მომხმარებელი" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "მონაცემთა ბაზის პაროლი" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "მონაცემთა ბაზის სახელი" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "ბაზის ცხრილის ზომა" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "მონაცემთა ბაზის ჰოსტი" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "კონფიგურაციის დასრულება" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -677,19 +704,27 @@ msgstr "თუ თქვენ არ შეცვლით პაროლს, msgid "Please change your password to secure your account again." msgstr "გთხოვთ შეცვალოთ თქვენი პაროლი, თქვენი ანგარიშის დასაცავად." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "დაგავიწყდათ პაროლი?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "დამახსოვრება" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "შესვლა" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "ალტერნატიული Login–ი" @@ -697,7 +732,12 @@ msgstr "ალტერნატიული Login–ი" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index a9e38b7176add9122264d158b809b07c3355aa0b..aa39ed90afd8ae5317f2980982c4ce0dc2a2aa89 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "დაუშვებელი დირექტორია." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ფაილები" @@ -119,7 +119,7 @@ msgstr "URL არ შეიძლება იყოს ცარიელი." 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "შეცდომა" @@ -163,12 +163,12 @@ msgstr "{new_name} შეცვლილია {old_name}–ით" msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -204,31 +204,44 @@ msgstr "თქვენი საცავი გადაივსო. ფა msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "სახელი" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "ზომა" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "შეცვლილია" @@ -289,49 +302,49 @@ msgstr "საქაღალდე" msgid "From link" msgstr "მისამართიდან" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "წაშლილი ფაილები" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "თქვენ არ გაქვთ ჩაწერის უფლება აქ." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "აქ არაფერი არ არის. ატვირთე რამე!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "გაუზიარებადი" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "წაშლა" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "ასატვირთი ფაილი ძალიან დიდია" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "მიმდინარე სკანირება" diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index 7fde56cdb738f6000bee179eacb9858b1cb098d1..aabac597806b5f0acaf66ce044fc4cdd52280b87 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "შენახვა..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index e5d0ff158b9bc84e4fcc1cdfb34e36d78097be6c..8735fd9f607323bfc1d7658c8699433d89846cc1 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -17,7 +17,7 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\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 "დაშვება მინიჭებულია" @@ -25,7 +25,7 @@ msgstr "დაშვება მინიჭებულია" msgid "Error configuring Dropbox storage" msgstr "შეცდომა Dropbox საცავის კონფიგურირების დროს" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "დაშვების მინიჭება" @@ -33,24 +33,24 @@ msgstr "დაშვების მინიჭება" msgid "Please provide a valid Dropbox app key and secret." msgstr "გთხოვთ მიუთითოთ Dropbox აპლიკაციის გასაღები და კოდი." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "შეცდომა 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>გაფრთხილება:</b> \"smbclient\" არ არის ინსტალირებული. CIFS/SMB ზიარების მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." -#: 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>გაფრთხილება:</b> FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." -#: 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/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index b41813f0a6def834101fb993ae95d3dd5d2b48fd..e7d9fa72e7732d377819d7e23c6c96137ec98b71 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,41 +27,41 @@ msgstr "ფაილი %s–ის სრულად წაშლა ვერ msgid "Couldn't restore %s" msgstr "%s–ის აღდგენა ვერ მოხერხდა" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "მიმდინარეობს აღდგენის ოპერაცია" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "შეცდომა" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "ფაილის სრულად წაშლა" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "სრულად წაშლა" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "სახელი" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "წაშლილი" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +69,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "აღდგენა" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "წაშლა" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index b2793d66c77a06184ae15707a4a9f152c2205537..98d50447b3644dad575a6b99567ac197240f9402 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <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,314 +17,321 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "დახმარება" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "პირადი" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "პარამეტრები" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "მომხმარებელი" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "ადმინისტრატორი" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "ZIP download–ი გათიშულია" -#: 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 "არჩეული ფაილები ძალიან დიდია zip ფაილის გენერაციისთვის." -#: 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 "Token–ს ვადა გაუვიდა. გთხოვთ განაახლოთ გვერდი." -#: 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 "%s შეიყვანეთ ბაზის იუზერნეიმი." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s შეიყვანეთ ბაზის სახელი." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s არ მიუთითოთ წერტილი ბაზის სახელში" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL მომხმარებელი და/ან პაროლი არ არის მართებული: %s" -#: 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 "MySQL იუზერნეიმი და/ან პაროლი არ არის სწორი" -#: 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 "DB შეცდომა: \"%s\"" -#: 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 "Offending ბრძანება იყო: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL მომხმარებელი '%s'@'localhost' უკვე არსებობს." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "წაშალე ეს მომხამრებელი MySQL–იდან" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL მომხმარებელი '%s'@'%%' უკვე არსებობს" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "წაშალე ეს მომხამრებელი MySQL–იდან" -#: 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 "Oracle იუზერნეიმი და/ან პაროლი არ არის სწორი" -#: 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 "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s" -#: 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 "PostgreSQL იუზერნეიმი და/ან პაროლი არ არის სწორი" -#: 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 "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "გთხოვთ გადაათვალიეროთ <a href='%s'>ინსტალაციის გზამკვლევი</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" + +#: 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 "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index fc613d4b9ee9f764c235b677c5e641b2660a3831..2c22f22b5bf259f0b862757812d03ee3f4f249db 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "განაახლე {appversion}–მდე" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "გამორთვა" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "ჩართვა" @@ -130,43 +130,43 @@ msgstr "ჩართვა" msgid "Please wait...." msgstr "დაიცადეთ...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "მიმდინარეობს განახლება...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "შეცდომა აპლიკაციის განახლების დროს" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "შეცდომა" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "განახლება" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "განახლებულია" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "შენახვა..." @@ -342,46 +342,54 @@ msgid "Allow users to only share with users in their groups" msgstr "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "უსაფრთხოება" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "HTTPS–ის ჩართვა" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "ლოგი" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "ლოგირების დონე" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "უფრო მეტი" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 36128b4046d2916266f7bad6e99e3c27bbeec13d..3f5f3173d5a31f727525095474e851669f7a7bd8 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "შეცდომა სერვერის კონფიგურაციის წაშლისას" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "კონფიგურაცია მართებულია და კავშირი დამყარდება!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "კონფიგურაცია მართებულია, მაგრამ მიერთება ვერ მოხერხდა. გთხოვთ შეამოწმოთ სერვერის პარამეტრები და აუთენთიკაციის პარამეტრები." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/km/core.po b/l10n/km/core.po index 437612ba9d98ffaa5a8eb89a6e4b447780093b07..108e8db08212966bb0fa5c38693a924db5a5c127 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -309,8 +314,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -330,126 +335,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -486,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -558,7 +571,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -612,48 +635,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -677,19 +704,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -697,7 +732,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/km/files.po b/l10n/km/files.po index a6b9b1775e166ec41166f8ee0099913f15b3e974..39851734077ca3c9bad9295cd1e1fbe2e4bab8b0 100644 --- a/l10n/km/files.po +++ b/l10n/km/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,12 +163,12 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -204,31 +204,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -289,49 +302,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/km/files_encryption.po b/l10n/km/files_encryption.po index 95e07fb95576817618172620d4fda6a46ccbe30f..2900ce69642d96c14dff686b9fdf3f25f2ca9a54 100644 --- a/l10n/km/files_encryption.po +++ b/l10n/km/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-12 11:11+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:51 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:52 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:250 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index c46c22d8be39e2f83cb671efd65beb52ae139717..982f2e2df64113665ed01f7950ad4a8414e28a5d 100644 --- a/l10n/km/settings.po +++ b/l10n/km/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/kn/core.po b/l10n/kn/core.po index c5dd4fc62ea7ddf9812df2f0413f313515592a87..1e31d0b4f5daacc5299943b51119be6155d74679 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -309,8 +314,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -330,126 +335,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -486,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -558,7 +571,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -612,48 +635,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -677,19 +704,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -697,7 +732,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 3297285e0e53e026d5b4d1684f9695d4b20a9e19..bd86ef274855a7cc6cddc8648087d82af4a4946d 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:11+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" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,12 +163,12 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -204,31 +204,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -289,49 +302,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/kn/files_encryption.po b/l10n/kn/files_encryption.po index be1a9ea38cd55dfd2ff3bf4160103ed635ce7522..979036dc70dfb4bee273fd19bdcec63f700026d1 100644 --- a/l10n/kn/files_encryption.po +++ b/l10n/kn/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index 21659f91a5b79ac8dbfcf25156cb4f3ad8037951..0e5b6aee5050a1ce99c770d8e344b8f8cc6063dd 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ko/core.po b/l10n/ko/core.po index ee7f0753f7e616eaebc183e0206b0bfcaa3bef07..e8b3ae15bbcade95f532043c8500a2a669850be8 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -19,12 +19,17 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "그룹" @@ -311,8 +316,8 @@ msgstr "객체 유형이 지정되지 않았습니다." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "오류" @@ -332,126 +337,134 @@ msgstr "공유됨" msgid "Share" msgstr "공유" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "공유 해제하는 중 오류 발생" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "권한 변경하는 중 오류 발생" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} 님이 여러분 및 그룹 {group}와(과) 공유 중" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "{owner} 님이 공유 중" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "다음으로 공유" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "URL 링크로 공유" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "암호 보호" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "암호" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "퍼블릭 업로드 허용" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "이메일 주소" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "전송" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "만료 날짜 설정" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "만료 날짜" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "이메일로 공유:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "발견된 사람 없음" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "다시 공유할 수 없습니다" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "{user} 님과 {item}에서 공유 중" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "공유 해제" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "편집 가능" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "접근 제어" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "생성" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "업데이트" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "삭제" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "공유" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "이메일 발송됨" +#: js/share.js:729 +msgid "Warning" +msgstr "경고" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -488,7 +501,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "이메일로 암호 재설정 링크를 보냈습니다." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "사용자 이름" @@ -560,7 +573,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -614,48 +637,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "<strong>관리자 계정</strong> 만들기" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "고급" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "데이터 폴더" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "데이터베이스 설정" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "사용될 예정" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "데이터베이스 사용자" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "데이터베이스 암호" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "데이터베이스 이름" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "데이터베이스 테이블 공간" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "데이터베이스 호스트" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "설치 완료" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -679,19 +706,27 @@ msgstr "최근에 암호를 변경하지 않았다면 계정이 탈취되었을 msgid "Please change your password to secure your account again." msgstr "계정의 안전을 위하여 암호를 변경하십시오." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "암호를 잊으셨습니까?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "기억하기" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "로그인" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "대체 " @@ -699,7 +734,12 @@ msgstr "대체 " #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/ko/files.po b/l10n/ko/files.po index d3f72518cc7ec8a6917fb91b37c826c348353391..477d53371ac82cc60e32daf17f85bb184d3a06c9 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:14-0400\n" -"PO-Revision-Date: 2013-09-29 10:06+0000\n" -"Last-Translator: smallsnail <bjh13579@gmail.com>\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" "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" @@ -122,7 +122,7 @@ msgstr "URL을 입력해야 합니다." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "유효하지 않은 폴더명입니다. \"Shared\" 이름의 사용은 OwnCloud 가 이미 예약하고 있습니다." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "오류" @@ -166,12 +166,12 @@ msgstr "{old_name}이(가) {new_name}(으)로 대체됨" msgid "undo" msgstr "되돌리기" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "폴더 %n" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "파일 %n 개" @@ -207,31 +207,44 @@ msgstr "저장 공간이 가득 찼습니다. 파일을 업데이트하거나 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "저장 공간이 거의 가득 찼습니다 ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "암호화는 해제되어 있지만, 파일은 아직 암호화 되어 있습니다. 개인 설저에 가셔서 암호를 해제하십시오" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "다운로드가 준비 중입니다. 파일 크기가 크다면 시간이 오래 걸릴 수도 있습니다." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "파일 이동 오류" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "이름" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "크기" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "수정됨" @@ -292,49 +305,49 @@ msgstr "폴더" msgid "From link" msgstr "링크에서" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "파일 삭제됨" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "당신은 여기에 쓰기를 할 수 있는 권한이 없습니다." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "내용이 없습니다. 업로드할 수 있습니다!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "다운로드" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "공유 해제" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "삭제" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "업로드한 파일이 너무 큼" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "파일을 검색하고 있습니다. 기다려 주십시오." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "현재 검색" diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index 96c4ba62311f6898c47041e5ed1eb417c092fbb8..b994394ff1177fabdf1ac13df15a8231cd657cbe 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -44,17 +44,24 @@ msgstr "암호가 성공적으로 변경되었습니다" msgid "Could not change the password. Maybe the old password was not correct." msgstr "암호를 변경할수 없습니다. 아마도 예전 암호가 정확하지 않은것 같습니다." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "개인키 암호가 성공적으로 업데이트 됨." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -62,36 +69,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "저장 중..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "개인 설정" @@ -108,27 +109,35 @@ msgstr "" msgid "Recovery key password" msgstr "키 비밀번호 복구" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "복구 키 비밀번호 변경" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "예전 복구 키 비밀번호" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "새 복구 키 비밀번호" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "암호 변경" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 54e54ee8daf4664f3c91b3f437d6bee46325f5f5..f07a5ddee44387bd79b9675028e213c1b9ccd037 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -18,7 +18,7 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\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 "접근 허가됨" @@ -26,7 +26,7 @@ msgstr "접근 허가됨" msgid "Error configuring Dropbox storage" msgstr "Dropbox 저장소 설정 오류" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "접근 권한 부여" @@ -34,24 +34,24 @@ msgstr "접근 권한 부여" msgid "Please provide a valid Dropbox app key and secret." msgstr "올바른 Dropbox 앱 키와 암호를 입력하십시오." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Google 드라이브 저장소 설정 오류" -#: 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>경고:</b> \"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유 자원에 연결할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." -#: 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>경고:</b> PHP FTP 지원이 비활성화되어 있거나 설치되지 않았습니다. FTP 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." -#: 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/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 4d39e2d9acdad8ebd099d633e836d9188057c233..4d9bdc7e4815cdcb03528454f4211b0817ed3111 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-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-29 07:38+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: smallsnail <bjh13579@gmail.com>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index ca05c5e13306f6aa14c116bf10e30dd63541f72d..f664342bf17740cadc8b63c35554e6552665af83 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/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-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-29 07:46+0000\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" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -19,314 +19,321 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:237 +#: private/app.php:237 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "현재 ownCloud 버전과 호환되지 않기 때문에 \"%s\" 앱을 설치할 수 없습니다." -#: app.php:248 +#: private/app.php:248 msgid "No app name specified" msgstr "앱 이름이 지정되지 않았습니다." -#: app.php:352 +#: private/app.php:352 msgid "Help" msgstr "도움말" -#: app.php:365 +#: private/app.php:365 msgid "Personal" msgstr "개인" -#: app.php:376 +#: private/app.php:376 msgid "Settings" msgstr "설정" -#: app.php:388 +#: private/app.php:388 msgid "Users" msgstr "사용자" -#: app.php:401 +#: private/app.php:401 msgid "Admin" msgstr "관리자" -#: app.php:832 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" 업그레이드에 실패했습니다." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "개개인의 프로필 사진은 아직은 암호화 되지 않습니다" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "알수없는 파일형식" -#: avatar.php:69 +#: private/avatar.php:69 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 "\"%s\"을(를) 열 수 없습니다." -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "ZIP 다운로드가 비활성화되었습니다." -#: 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 "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다." -#: 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 "http에서 앱을 설치할 대 href가 지정되지 않았습니다." -#: 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 "%s 타입 아카이브는 지원되지 않습니다." -#: 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 "앱에서 info.xml 파일이 제공되지 않았습니다." -#: 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 "현재 ownCloud 버전과 호환되지 않기 때문에 앱을 설치할 수 없습니다." -#: 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 "출하되지 않은 앱에 허용되지 않는 <shipped>true</shipped> 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다." -#: 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 "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다. " -#: 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 "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s " -#: 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:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "파일" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "텍스트" -#: search/provider/file.php:30 +#: 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 "데이터베이스 사용자 명을 %s 에 입력해주십시오" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "데이터베이스 명을 %s 에 입력해주십시오" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s 에 적으신 데이터베이스 이름에는 점을 사용할수 없습니다" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 사용자 이름이나 암호가 잘못되었습니다: %s" -#: 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 "기존 계정이나 administrator(관리자)를 입력해야 합니다." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL 사용자 이름이나 암호가 잘못되었습니다." -#: 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 "DB 오류: \"%s\"" -#: 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 "잘못된 명령: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL 사용자 '%s'@'localhost'이(가) 이미 존재합니다." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "이 사용자를 MySQL에서 뺍니다." -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다. " -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "이 사용자를 MySQL에서 뺍니다." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracle 연결을 수립할 수 없습니다." -#: 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 "Oracle 사용자 이름이나 암호가 잘못되었습니다." -#: 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 "잘못된 명령: \"%s\", 이름: %s, 암호: %s" -#: 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 "PostgreSQL의 사용자 명 혹은 비밀번호가 잘못되었습니다" -#: 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 "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "<a href='%s'>설치 가이드</a>를 다시 한 번 확인하십시오." -#: tags.php:194 +#: private/tags.php:194 #, php-format msgid "Could not find category \"%s\"" msgstr "분류 \"%s\"을(를) 찾을 수 없습니다." -#: template/functions.php:96 +#: 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] "%n분 전 " -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n시간 전 " -#: 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] "%n일 전 " -#: 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] "%n달 전 " -#: 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 "원인: " diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 8b3678ceec6f42160980b927a2b1d4b1180df5fe..af3cbd9f452f386c671723f4c1184f70759023f7 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "버전 {appversion}(으)로 업데이트" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "비활성화" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "사용함" @@ -130,43 +130,43 @@ msgstr "사용함" msgid "Please wait...." msgstr "기다려 주십시오...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "업데이트 중...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "앱을 업데이트하는 중 오류 발생" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "오류" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "업데이트" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "업데이트됨" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "저장 중..." @@ -342,46 +342,54 @@ msgid "Allow users to only share with users in their groups" msgstr "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "보안" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "HTTPS 강제 사용" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "로그" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "로그 단계" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "더 중요함" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "버전" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -510,7 +518,7 @@ msgstr "" #: templates/personal.php:97 msgid "Abort" -msgstr "" +msgstr "대하여" #: templates/personal.php:98 msgid "Choose as profile image" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 1766fef5754c9f90bb3ffc7f69c7cc2fa1d71a4c..fc5af73331837032762a045b247e0fd554cdaf68 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index fbf66dad31d079094ec96d2920ccd2fe071fcaab..3f4b8bc0bb451dccba46507755229b54889efbc6 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -9,13 +9,14 @@ # 남자사람 <cessnagi@gmail.com>, 2012 # Shinjo Park <kde@peremen.name>, 2013 # Shinjo Park <kde@peremen.name>, 2013 +# smallsnail <bjh13579@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-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 14:50+0000\n" +"Last-Translator: smallsnail <bjh13579@gmail.com>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,11 +30,11 @@ msgstr "WebDAV 인증" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "주소:" #: 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 "ownCloud에서 이 URL로 사용자 인증 정보를 보냅니다. 이 플러그인은 응답을 확인하여 HTTP 상태 코드 401이나 403이 돌아온 경우에 잘못된 인증 정보로 간주합니다. 다른 모든 상태 코드는 올바른 인증 정보로 간주합니다." diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index e29ae2d8757022d66f031e9d2adcef524dc44e79..860c4a78249616aeccf5e2daf128478566dfb453 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -314,8 +319,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "ههڵه" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "هاوبەشی کردن" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "وشەی تێپەربو" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "ئاگاداری" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "ناوی بهکارهێنهر" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "ههڵبژاردنی پیشكهوتوو" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "زانیاری فۆڵدهر" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "بهكارهێنهری داتابهیس" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "وشهی نهێنی داتا بهیس" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "ناوی داتابهیس" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "هۆستی داتابهیس" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "كۆتایی هات دهستكاریهكان" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 9bb3b4faa5f38f65560bad6628b6e1cf3e674527..48f018b26b212a80720bd5f4a88faa02a5d7a71a 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "ناونیشانی بهستهر نابێت بهتاڵ بێت." 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "ههڵه" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "ناو" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -292,49 +305,49 @@ msgstr "بوخچه" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "داگرتن" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index 4df94a238d9e3c1fd05f2ddb6fecf7a8fcbef4e8..e4a8591cc023f15217e0f6ae79a1feac602348c7 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "پاشکهوتدهکات..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 1addb81ba48201655f96d36e0e3f9c62fedfe70f..c20783bf32d0a60382011d017cef34d8a031b4a5 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "ههڵه" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "ناو" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +71,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 448dd823748fccc416069916bea3c6933d103969..5fb0e36ab7d9fe5ff01816f1a313adc6cedc2fa0 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <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,318 +17,325 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "یارمەتی" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "دهستكاری" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "بهكارهێنهر" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "بهڕێوهبهری سهرهكی" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 6ea9fd128b04ecd597b402a7db25e6182ca0cdb7..73178b91e6958057ce511c2cd525f06d260349ff 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "چالاککردن" @@ -129,43 +129,43 @@ msgstr "چالاککردن" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "ههڵه" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "نوێکردنهوه" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "پاشکهوتدهکات..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 724271784b6a2b65a4180ae91ca5e67d12c4e56d..5fb4b95ffae47a713b4c5de50e78e532dd4b2577 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/l10n.pl b/l10n/l10n.pl index 851be8f7ccf1fcddcc8c46602135c833294afa4d..1b25722aa4e76708da08bdd501af8e5f8eb22bb1 100644 --- a/l10n/l10n.pl +++ b/l10n/l10n.pl @@ -120,7 +120,7 @@ if( $task eq 'read' ){ my $language = ( $file =~ /\.js$/ ? 'Python' : 'PHP'); my $joinexisting = ( -e $output ? '--join-existing' : ''); print " Reading $file\n"; - `xgettext --output="$output" $joinexisting $keywords --language=$language "$file" --from-code=UTF-8 --package-version="5.0.0" --package-name="ownCloud Core" --msgid-bugs-address="translations\@owncloud.org"`; + `xgettext --output="$output" $joinexisting $keywords --language=$language "$file" --add-comments=TRANSLATORS --from-code=UTF-8 --package-version="6.0.0" --package-name="ownCloud Core" --msgid-bugs-address="translations\@owncloud.org"`; } chdir( $whereami ); } diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 0ee9039e60367c500380ab9ed734f989b55f7789..3bbf3073f2ffa7c062b902d4acb2c87e1affc34d 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,17 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "Den/D' %s huet »%s« mat dir gedeelt" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "Grupp" @@ -315,8 +320,8 @@ msgstr "Den Typ vum Object ass net uginn." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Feeler" @@ -336,126 +341,134 @@ msgstr "Gedeelt" msgid "Share" msgstr "Deelen" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Feeler beim Deelen" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Feeler beim Annuléiere vum Deelen" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Feeler beim Ännere vun de Rechter" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Gedeelt mat dir an der Grupp {group} vum {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Gedeelt mat dir vum {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Deele mat" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Mat Link deelen" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Passwuertgeschützt" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passwuert" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Ëffentlechen Upload erlaaben" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Link enger Persoun mailen" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Schécken" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Verfallsdatum setzen" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Verfallsdatum" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Via E-Mail deelen:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Keng Persoune fonnt" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Weiderdeelen ass net erlaabt" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Gedeelt an {item} mat {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Net méi deelen" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "kann änneren" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "Zougrëffskontroll" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "erstellen" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "aktualiséieren" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "läschen" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "deelen" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Passwuertgeschützt" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Gëtt geschéckt..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Email geschéckt" +#: js/share.js:729 +msgid "Warning" +msgstr "Warnung" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -492,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Du kriss e Link fir däi Passwuert zréckzesetze via Email geschéckt." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Benotzernumm" @@ -564,8 +577,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hallo,\n\nech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.\nKucken: %s\n\nE schéine Bonjour!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -618,48 +641,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "En <strong>Admin-Account</strong> uleeën" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avancéiert" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Daten-Dossier" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "D'Datebank konfiguréieren" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "wärt benotzt ginn" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Datebank-Benotzer" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Datebank-Passwuert" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Datebank Numm" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Tabelle-Plaz vun der Datebank" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Datebank-Server" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Installatioun ofschléissen" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -683,19 +710,27 @@ msgstr "Falls du däi Passwuert net viru kuerzem geännert hues, kéint däin Ac msgid "Please change your password to secure your account again." msgstr "Änner w.e.gl däi Passwuert fir däin Account nees ofzesécheren." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Passwuert vergiess?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "verhalen" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Umellen" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternativ Umeldungen" @@ -703,8 +738,13 @@ msgstr "Alternativ Umeldungen" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Hallo,<br><br>ech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.<br><a href=\"%s\">Kucken!</a><br><br>E schéine Bonjour!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 40727c4472ddddcf7a924d35ddafe3611742d0e9..e22efd6d0a159273f53037969ea9ed0a5bbe3723 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Dateien" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Fehler" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Numm" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Gréisst" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Geännert" @@ -292,49 +305,49 @@ msgstr "Dossier" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Download" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Net méi deelen" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Läschen" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Upload ze grouss" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Fichieren gi gescannt, war weg." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Momentane Scan" diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index 15dacc9dc199ed9e350d03f763e86fed32301740..4d829596aeaaa83120aa4d8b63640536e97aa49b 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Speicheren..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index faf8429b4ef007855a84e99c523d06179d5f04fe..d92692e179463276fec46e5c46c17487c8f3f81a 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: lb\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 "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 6e89845dc20912b6c68a794691faee837b143544..85486bdbf470baa29a29ec53d8906cfb5149e938 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Fehler" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Numm" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +71,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Läschen" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index bd8ee7af792695e0393d0cb5e424e9c43658ca9f..a7ee0bf6a642685d31496efaea4f5a1372c60b81 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,318 +18,325 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Hëllef" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Perséinlech" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Astellungen" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Benotzer" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "Web-Servicer ënnert denger Kontroll" -#: 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 "Authentifikatioun's Fehler" -#: 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 "Dateien" -#: 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 "SMS" -#: 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 "Sekonnen hir" -#: 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 "haut" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "gëschter" -#: 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 "Läschte Mount" -#: 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 "Läscht Joer" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "Joren hier" -#: 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/lb/settings.po b/l10n/lb/settings.po index d09ca81058c7135d3826710275cb38a369760037..3ef1c2e1421fc213989f19bfe8f9d013eb9df7bb 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Ofschalten" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Aschalten" @@ -130,43 +130,43 @@ msgstr "Aschalten" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Fehler" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Speicheren..." @@ -342,46 +342,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Méi" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 5b73ccc321a130a4dfe2946f85b605d22d22383b..9fa58faf2f4ae2e42a6eff3836d387c4b2e58790 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 4a22a7c94823bb76f855c3d3c006813ab6dc4624..4f1a1ad32710d60610d5cc7524cb2522800255a3 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/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-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-29 07:58+0000\n" -"Last-Translator: Liudas Ališauskas <liudas.alisauskas@gmail.com>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <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,12 +21,17 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s pasidalino »%s« su tavimi" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Nepavyko nusiųsti el. pašto šiems naudotojams: %s " + +#: ajax/share.php:327 msgid "group" msgstr "grupė" @@ -323,8 +328,8 @@ msgstr "Objekto tipas nenurodytas." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Klaida" @@ -344,126 +349,134 @@ msgstr "Dalinamasi" msgid "Share" msgstr "Dalintis" -#: js/share.js:131 js/share.js:696 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Klaida, kai atšaukiamas dalijimasis" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Klaida, keičiant privilegijas" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Pasidalino su Jumis ir {group} grupe {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Pasidalino su Jumis {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Dalintis su" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Dalintis nuoroda" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Apsaugotas slaptažodžiu" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Slaptažodis" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Leisti viešą įkėlimą" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Nusiųsti nuorodą paštu" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Siųsti" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Nustatykite galiojimo laiką" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Galiojimo laikas" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Dalintis per el. paštą:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Žmonių nerasta" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Dalijinasis išnaujo negalimas" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Pasidalino {item} su {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Nebesidalinti" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "informuoti naudotoją el. paštu" + +#: js/share.js:361 msgid "can edit" msgstr "gali redaguoti" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "priėjimo kontrolė" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "sukurti" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "atnaujinti" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "ištrinti" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "dalintis" -#: js/share.js:400 js/share.js:643 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:656 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:668 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:683 +#: js/share.js:694 msgid "Sending ..." msgstr "Siunčiama..." -#: js/share.js:694 +#: js/share.js:705 msgid "Email sent" msgstr "Laiškas išsiųstas" +#: js/share.js:729 +msgid "Warning" +msgstr "Įspėjimas" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -500,7 +513,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Elektroniniu paštu gausite nuorodą, su kuria galėsite iš naujo nustatyti slaptažodį." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Prisijungimo vardas" @@ -572,8 +585,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Labas,\n\nInformuojame, kad %s pasidalino su Jumis %s.\nPažiūrėkite: %s\n\nLinkėjimai!" +msgstr "Labas,\n\nInformuojame, kad %s pasidalino su Jumis %s.\nPažiūrėti tai: %s\n" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "Bendrinimo laikas baigsis %s.\n" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "Sveikinimai!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -626,48 +649,52 @@ msgstr "Kad gauti informaciją apie tai kaip tinkamai sukonfigūruoti savo serve msgid "Create an <strong>admin account</strong>" msgstr "Sukurti <strong>administratoriaus paskyrą</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Išplėstiniai" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Duomenų katalogas" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Nustatyti duomenų bazę" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "bus naudojama" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Duomenų bazės vartotojas" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Duomenų bazės slaptažodis" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Duomenų bazės pavadinimas" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Duomenų bazės loginis saugojimas" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Duomenų bazės serveris" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Baigti diegimą" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "Baigiama ..." + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -691,19 +718,27 @@ msgstr "Jei paskutinių metu nekeitėte savo slaptažodžio, Jūsų paskyra gali msgid "Please change your password to secure your account again." msgstr "Prašome pasikeisti slaptažodį dar kartą, dėl paskyros saugumo." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Pamiršote slaptažodį?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "prisiminti" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Prisijungti" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatyvūs prisijungimai" @@ -711,8 +746,13 @@ msgstr "Alternatyvūs prisijungimai" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Labas,<br><br>tik informuojame, kad %s pasidalino su Jumis »%s«.<br><a href=\"%s\">Peržiūrėk!</a><br><br>Linkėjimai!" +"href=\"%s\">View it!</a><br><br>" +msgstr "Labas,<br><br>tik informuojame, kad %s pasidalino su Jumis »%s«.<br><a href=\"%s\">Peržiūrėk!</a><br><br>" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "Bendrinimo laikas baigsis %s.<br><br>" #: templates/update.php:3 #, php-format diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 829d61188a31a491a0179d017fce7f38ad3335cc..dd86da635642a10b6ee38e8d0c1b7857a175d3e2 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-09-30 10:14-0400\n" -"PO-Revision-Date: 2013-09-29 08:46+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 19:20+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" @@ -121,7 +121,7 @@ msgstr "URL negali būti tuščias." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Negalimas aplanko pavadinimas. 'Shared' pavadinimas yra rezervuotas ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Klaida" @@ -165,14 +165,14 @@ msgstr "pakeiskite {new_name} į {old_name}" msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n aplankas" msgstr[1] "%n aplankai" msgstr[2] "%n aplankų" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n failas" @@ -212,31 +212,44 @@ msgstr "Jūsų visa vieta serveryje užimta" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Jūsų vieta serveryje beveik visa užimta ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "Šifravimo programa įjungta, bet Jūsų raktai nėra pritaikyti. Prašome atsijungti ir vėl prisijungti" + +#: 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 "Netinkamas privatus raktas Šifravimo programai. Prašome atnaujinti savo privataus rakto slaptažodį asmeniniuose nustatymuose, kad atkurti prieigą prie šifruotų failų." + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifravimas buvo išjungtas, bet Jūsų failai vis dar užšifruoti. Prašome eiti į asmeninius nustatymus ir iššifruoti savo failus." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunčiamas didelis failas." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Klaida perkeliant failą" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Dydis" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Pakeista" @@ -297,49 +310,49 @@ msgstr "Katalogas" msgid "From link" msgstr "Iš nuorodos" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Ištrinti failai" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Jūs neturite rašymo leidimo." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Čia tuščia. Įkelkite ką nors!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Atsisiųsti" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Nebesidalinti" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Ištrinti" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Įkėlimui failas per didelis" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Skenuojami failai, prašome palaukti." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Šiuo metu skenuojama" diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index b37c78e711c2985e0fddd0e7980a75d02ac03bff..6bb0be274b8ebd2e907bea9009f6c5baadbc1ece 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-13 08:20+0000\n" +"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"PO-Revision-Date: 2013-10-07 10:30+0000\n" "Last-Translator: Liudas Ališauskas <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" @@ -45,17 +45,24 @@ msgstr "Slaptažodis sėkmingai pakeistas" msgid "Could not change the password. Maybe the old password was not correct." msgstr "Slaptažodis nebuvo pakeistas. Gali būti, kad buvo neteisingai suvestas senasis." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Privataus rakto slaptažodis buvo sėkmingai atnaujintas." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Nepavyko atnaujinti privataus rakto slaptažodžio. Gali būti, kad buvo neteisingai suvestas senasis." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "Šifravimo programa nepaleista! Galbūt šifravimo programa buvo įjungta dar kartą Jūsų sesijos metu. Prašome atsijungti ir vėl prisijungti, kad paleisti šifravimo programą." + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -63,36 +70,30 @@ msgid "" "files." msgstr "Jūsų privatus raktas yra netinkamas! Panašu, kad Jūsų slaptažodis buvo pakeistas išorėje ownCloud sistemos (pvz. Jūsų organizacijos kataloge). Galite atnaujinti savo privataus rakto slaptažodį savo asmeniniuose nustatymuose, kad atkurti prieigą prie savo šifruotų failų." -#: hooks/hooks.php:51 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Trūkstami laukai." -#: hooks/hooks.php:52 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Prašome įsitikinti, kad PHP 5.3.3 ar naujesnė yra įdiegta ir kad OpenSSL kartu su PHP plėtiniu yra šjungti ir teisingai sukonfigūruoti. Kol kas šifravimo programa bus išjungta." -#: hooks/hooks.php:250 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Sekantys naudotojai nenustatyti šifravimui:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Saugoma..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Jūsų privatus raktas yra netinkamas! Galbūt Jūsų slaptažodis buvo pakeistas iš išorės?" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Galite atrakinti savo privatų raktą savo" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Eiti tiesiai į Jūsų" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "asmeniniai nustatymai" @@ -109,27 +110,35 @@ msgstr "Įjunkite atkūrimo raktą, (leisti atkurti naudotojų failus praradus s msgid "Recovery key password" msgstr "Atkūrimo rakto slaptažodis" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "Pakartokite atkūrimo rakto slaptažodį" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Įjungta" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Išjungta" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Pakeisti atkūrimo rakto slaptažodį:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Senas atkūrimo rakto slaptažodis" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Naujas atkūrimo rakto slaptažodis" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "Pakartokite naują atkūrimo rakto slaptažodį" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Pakeisti slaptažodį" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 4347ca073df67332121eb3a3548b374b3bf1d9f4..8bb8c45ea950b11f8e0cb7f5b22f9d0a3837d2d3 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -18,7 +18,7 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/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 "Priėjimas suteiktas" @@ -26,7 +26,7 @@ msgstr "Priėjimas suteiktas" msgid "Error configuring Dropbox storage" msgstr "Klaida nustatinėjant Dropbox talpyklą" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Suteikti priėjimą" @@ -34,24 +34,24 @@ msgstr "Suteikti priėjimą" msgid "Please provide a valid Dropbox app key and secret." msgstr "Prašome įvesti teisingus Dropbox \"app key\" ir \"secret\"." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Klaida nustatinėjant Google Drive talpyklą" -#: 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>Įspėjimas:</b> \"smbclient\" nėra įdiegtas. CIFS/SMB dalinimasis nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas \"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>Įspėjimas:</b> FTP palaikymas PHP sistemoje nėra įjungtas arba nėra įdiegtas. FTP dalinimosi įjungimas nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas FTP palaikymas. " -#: 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/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 5e630911f656927be3a391b532f3e14c188d8081..3f4887ea23f9ce2c80888c4c8d6cd4e247e63133 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-09-13 21:46-0400\n" -"PO-Revision-Date: 2013-09-12 20:30+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: Liudas Ališauskas <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" @@ -45,29 +45,29 @@ msgstr "failą ištrinti negrįžtamai" msgid "Delete permanently" msgstr "Ištrinti negrįžtamai" -#: js/trash.js:184 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Pavadinimas" -#: js/trash.js:185 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Ištrinti" -#: js/trash.js:193 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "%n aplankų" -#: js/trash.js:199 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "%n failų" -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "atstatyta" @@ -75,11 +75,11 @@ msgstr "atstatyta" msgid "Nothing in here. Your trash bin is empty!" msgstr "Nieko nėra. Jūsų šiukšliadėžė tuščia!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Atstatyti" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Ištrinti" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 811ca96268b83abd8adf7d0792ea00f1cc413574..a2fd4574383a4dbf5ac117a5a531ad1e562ebf17 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/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-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-18 14:50+0000\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" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -21,322 +21,329 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "Nenurodytas programos pavadinimas" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Pagalba" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Asmeniniai" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Nustatymai" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Vartotojai" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administravimas" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Nepavyko pakelti „%s“ versijos." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "Saviti profilio paveiksliukai dar neveikia su šifravimu" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Nežinomas failo tipas" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Netinkamas paveikslėlis" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "jūsų valdomos web paslaugos" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "nepavyksta atverti „%s“" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "ZIP atsisiuntimo galimybė yra išjungta." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Failai turi būti parsiunčiami vienas po kito." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Atgal į Failus" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Pasirinkti failai per dideli archyvavimui į ZIP." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Atsisiųskite failus mažesnėmis dalimis atskirai, arba mandagiai prašykite savo administratoriaus." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Nenurodytas šaltinis diegiant programą" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Nenurodytas href diegiant programą iš http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Nenurodytas kelias diegiant programą iš vietinio failo" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "%s tipo archyvai nepalaikomi" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Nepavyko atverti archyvo diegiant programą" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Programa nepateikia info.xml failo" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Programa negali būti įdiegta, nes turi neleistiną kodą" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Programa negali būti įdiegta, nes yra nesuderinama su šia ownCloud versija" -#: 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 "Programa negali būti įdiegta, nes turi <shipped>true</shipped> žymę, kuri yra neleistina ne kartu platinamoms programoms" -#: 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 "Programa negali būti įdiegta, nes versija pateikta info.xml/version nesutampa su versija deklaruota programų saugykloje" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "Programos aplankas jau egzistuoja" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nepavyksta sukurti aplanko. Prašome pataisyti leidimus. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Programa neįjungta" -#: 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 "Autentikacijos klaida" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Sesija baigėsi. Prašome perkrauti puslapį." -#: 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 "Failai" -#: 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 "Žinučių" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Paveikslėliai" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s įrašykite duombazės naudotojo vardą." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s įrašykite duombazės pavadinimą." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s negalite naudoti taškų duombazės pavadinime" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL naudotojo vardas ir/arba slaptažodis netinka: %s" -#: 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 "Turite prisijungti su egzistuojančia paskyra arba su administratoriumi." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Neteisingas MySQL naudotojo vardas ir/arba slaptažodis" -#: 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 "DB klaida: \"%s\"" -#: 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 "Vykdyta komanda buvo: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL naudotojas '%s'@'localhost' jau egzistuoja." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Pašalinti šį naudotoją iš MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL naudotojas '%s'@'%%' jau egzistuoja" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Pašalinti šį naudotoją iš MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Nepavyko sukurti Oracle ryšio" -#: 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 "Neteisingas Oracle naudotojo vardas ir/arba slaptažodis" -#: 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 "Vykdyta komanda buvo: \"%s\", name: %s, password: %s" -#: 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 "Neteisingas PostgreSQL naudotojo vardas ir/arba slaptažodis" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Nustatyti administratoriaus naudotojo vardą." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Nustatyti administratoriaus slaptažodį." -#: 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 "Jūsų serveris nėra tvarkingai nustatytas leisti failų sinchronizaciją, nes WebDAV sąsaja panašu, kad yra sugadinta." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Prašome pažiūrėkite dar kartą <a href='%s'>diegimo instrukcijas</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Nepavyko rasti kategorijos „%s“" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "prieš sekundę" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "prieš %n min." msgstr[1] "Prieš % minutes" msgstr[2] "Prieš %n minučių" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Prieš %n valandą" msgstr[1] "Prieš %n valandas" msgstr[2] "Prieš %n valandų" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "šiandien" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "vakar" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Prieš %n dieną" msgstr[1] "Prieš %n dienas" msgstr[2] "Prieš %n dienų" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "praeitą mėnesį" -#: template/functions.php:103 +#: private/template/functions.php:131 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ų" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "praeitais metais" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "prieš metus" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Iššaukė:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Nepavyko rasti kategorijos „%s“" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index ff719fb19fe07ea24b1bbfd894bc8a43fe686e3d..29e03ac1c98b6900a9cafb923acdde73d872bc29 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-09-30 10:17-0400\n" -"PO-Revision-Date: 2013-09-29 08:49+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 19:10+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:221 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Pažymėkite profilio paveikslėlį" -#: js/personal.js:266 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "Iššifruojami failai... Prašome palaukti, tai gali užtrukti." -#: js/personal.js:288 +#: js/personal.js:292 msgid "Saving..." msgstr "Saugoma..." @@ -345,46 +345,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Leisti naudotojams dalintis tik su naudotojais savo grupėje" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "Leisti el. pašto perspėjimą" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "Leisti naudotojui siųsti perspėjimą el. laišku dėl bendrinamų failų" + +#: templates/admin.php:178 msgid "Security" msgstr "Saugumas" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Reikalauti HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Verčia klientus jungtis prie %s per šifruotą ryšį." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Prašome prisijungti prie savo %s per HTTPS, kad įjungti ar išjungti SSL reikalavimą." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Žurnalo išsamumas" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Daugiau" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Mažiau" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Versija" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 6649922b22b8c40e8ff8ee36dc6d7c71bd9f23a3..4890efbe3b04ee9b1f29eef052363dc7c0519a60 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: Liudas Ališauskas <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" @@ -26,17 +26,17 @@ msgstr "Nepavyko išvalyti sąsajų." msgid "Failed to delete the server configuration" msgstr "Nepavyko pašalinti serverio konfigūracijos" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 813a5545833429e20835f2301e22861d92156303..b132f8f044d896cd1d0820af08e0d38520c217a1 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,17 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s kopīgots »%s« ar jums" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "grupa" @@ -320,8 +325,8 @@ msgstr "Nav norādīts objekta tips." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Kļūda" @@ -341,126 +346,134 @@ msgstr "Kopīgs" msgid "Share" msgstr "Dalīties" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Kļūda, daloties" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Kļūda, beidzot dalīties" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Kļūda, mainot atļaujas" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} dalījās ar jums un grupu {group}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "{owner} dalījās ar jums" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Dalīties ar" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Dalīties ar saiti" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Aizsargāt ar paroli" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Parole" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Ļaut publisko augšupielādi." -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Sūtīt saiti personai pa e-pastu" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Sūtīt" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Iestaties termiņa datumu" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Termiņa datums" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Dalīties, izmantojot e-pastu:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Nav atrastu cilvēku" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Atkārtota dalīšanās nav atļauta" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Dalījās ar {item} ar {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "var rediģēt" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "piekļuves vadība" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "izveidot" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "atjaunināt" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "dzēst" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "dalīties" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Vēstule nosūtīta" +#: js/share.js:729 +msgid "Warning" +msgstr "Brīdinājums" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -497,7 +510,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Jūs savā epastā saņemsiet interneta saiti, caur kuru varēsiet atjaunot paroli." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Lietotājvārds" @@ -569,8 +582,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Sveiks,\nTikai daru tev zināmu ka %s dalās %s ar tevi.\nApskati to: %s\n\nJaukiņi Labiņi!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -623,48 +646,52 @@ msgstr "Vairāk informācijai kā konfigurēt serveri, lūdzu skatiet <a href=\" msgid "Create an <strong>admin account</strong>" msgstr "Izveidot <strong>administratora kontu</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Paplašināti" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Datu mape" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Konfigurēt datubāzi" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "tiks izmantots" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Datubāzes lietotājs" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Datubāzes parole" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Datubāzes nosaukums" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Datubāzes tabulas telpa" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Datubāzes serveris" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Pabeigt iestatīšanu" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -688,19 +715,27 @@ msgstr "Ja neesat pēdējā laikā mainījis paroli, iespējams, ka jūsu konts msgid "Please change your password to secure your account again." msgstr "Lūdzu, nomainiet savu paroli, lai atkal nodrošinātu savu kontu." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Aizmirsāt paroli?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "atcerēties" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Ierakstīties" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatīvās pieteikšanās" @@ -708,8 +743,13 @@ msgstr "Alternatīvās pieteikšanās" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Sveiks,<br><br>Tikai daru tev zināmu ka %s dalās %s ar tevi.<br><a href=\"%s\">Apskati to!</a><br><br>Jaukiņi Labiņi!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/lv/files.po b/l10n/lv/files.po index c2bec93c45863210fd56395c38a1c9ea8cb52627..97b5ad594227fdef64d4003c0eca7b09301c96a2 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -87,7 +87,7 @@ msgstr "" msgid "Invalid directory." msgstr "Nederīga direktorija." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Datnes" @@ -120,7 +120,7 @@ msgstr "URL nevar būt tukšs." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Kļūdains mapes nosaukums. 'Shared' lietošana ir rezervēta no ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Kļūda" @@ -164,14 +164,14 @@ msgstr "aizvietoja {new_name} ar {old_name}" msgid "undo" msgstr "atsaukt" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapes" msgstr[1] "%n mape" msgstr[2] "%n mapes" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n faili" @@ -211,31 +211,44 @@ msgstr "Jūsu krātuve ir pilna, datnes vairs nevar augšupielādēt vai sinhron msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Jūsu krātuve ir gandrīz pilna ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifrēšana tika atslēgta, tomēr jūsu faili joprojām ir šifrēti. Atšifrēt failus var Personiskajos uzstādījumos." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nosaukums" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Izmērs" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Mainīts" @@ -296,49 +309,49 @@ msgstr "Mape" msgid "From link" msgstr "No saites" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Dzēstās datnes" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Jums nav tiesību šeit rakstīt." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Lejupielādēt" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Dzēst" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Datne ir par lielu, lai to augšupielādētu" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Šobrīd tiek caurskatīts" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index 2f583edb1c2359ce66dc93486b75043b7d9ec533..3e83a2065ca155bff847f942f87e9216af5bae2a 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Saglabā..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 87322e13a61f844ae3d05f3ea7c466a5e42abc3d..01dbef9b6ea52f2e9e07d7d77ada69660121fd1d 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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-16 07:00+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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 06237b847d0b0d4eefc5f6eabf34f44cafa91fb0..8409f8c920818324b17be1a72dcab2ce9aea83e6 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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-16 08:10+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -28,45 +28,45 @@ msgstr "Nevarēja pilnībā izdzēst %s" msgid "Couldn't restore %s" msgstr "Nevarēja atjaunot %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "veikt atjaunošanu" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Kļūda" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "dzēst datni pavisam" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Dzēst pavisam" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nosaukums" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Dzēsts" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "Nekas, %n mapes" msgstr[1] "%n mape" msgstr[2] "%n mapes" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "Neviens! %n faaili" msgstr[1] "%n fails" msgstr[2] "%n faili" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "atjaunots" @@ -74,11 +74,11 @@ msgstr "atjaunots" msgid "Nothing in here. Your trash bin is empty!" msgstr "Šeit nekā nav. Jūsu miskaste ir tukša!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Atjaunot" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Dzēst" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 1c2c3f45c586d894490e8f31633837edc9894aca..dad77f7dc44dc4c49a3df9c1e6e45b06138fbf17 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,322 +18,329 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Palīdzība" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personīgi" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Iestatījumi" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Lietotāji" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administratori" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Kļūda atjauninot \"%s\"" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "tīmekļa servisi tavā varā" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Nevar atvērt \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "ZIP lejupielādēšana ir izslēgta." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Datnes var lejupielādēt tikai katru atsevišķi." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Atpakaļ pie datnēm" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Izvēlētās datnes ir pārāk lielas, lai izveidotu zip datni." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Lejupielādējiet savus failus mazākās daļās, atsevišķi vai palūdziet tos administratoram." -#: 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 "Lietotne nav aktivēta" -#: 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 "Autentifikācijas kļūda" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Pilnvarai ir beidzies termiņš. Lūdzu, pārlādējiet lapu." -#: 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 "Datnes" -#: 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 "Teksts" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Attēli" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s ievadiet datubāzes lietotājvārdu." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s ievadiet datubāzes nosaukumu." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s datubāžu nosaukumos nedrīkst izmantot punktus" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nav derīga MySQL parole un/vai lietotājvārds — %s" -#: 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 "Jums jāievada vai nu esošs vai administratora konts." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Nav derīga MySQL parole un/vai lietotājvārds" -#: 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 "DB kļūda — “%s”" -#: 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 "Vainīgā komanda bija “%s”" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL lietotājs %s'@'localhost' jau eksistē." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Izmest šo lietotāju no MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL lietotājs '%s'@'%%' jau eksistē" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Izmest šo lietotāju no MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Nevar izveidot savienojumu ar Oracle" -#: 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 "Nav derīga Oracle parole un/vai lietotājvārds" -#: 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 "Vainīgā komanda bija \"%s\", vārds: %s, parole: %s" -#: 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 "Nav derīga PostgreSQL parole un/vai lietotājvārds" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Iestatiet administratora lietotājvārdu." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Iestatiet administratora paroli." -#: 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 "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Lūdzu, vēlreiz pārbaudiet <a href='%s'>instalēšanas palīdzību</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Nevarēja atrast kategoriju “%s”" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n minūtēm" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n stundām" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "šodien" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "vakar" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n dienām" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "pagājušajā mēnesī" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n mēnešiem" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "gājušajā gadā" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "gadus atpakaļ" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Cēlonis:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Nevarēja atrast kategoriju “%s”" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 68f2e3c4db40446d33f155f7190c16cffc43ddfb..cfb2581a7fd93b56cee2356ce15c1eeb5cf52716 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Atjaunināt uz {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Deaktivēt" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Aktivēt" @@ -130,43 +130,43 @@ msgstr "Aktivēt" msgid "Please wait...." msgstr "Lūdzu, uzgaidiet...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Atjaunina...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Kļūda, atjauninot lietotni" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Kļūda" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Atjaunināt" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Atjaunināta" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 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:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Saglabā..." @@ -342,46 +342,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Ļaut lietotājiem dalīties ar lietotājiem to grupās" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Drošība" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Uzspiest HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Uzspiest klientiem pieslēgties pie %s caur šifrētu savienojumu." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Lūdzu slēdzieties pie %s caur HTTPS lai iespējotu vai atspējotu SSL izpildīšanu" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Žurnāls" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Žurnāla līmenis" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Vairāk" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Mazāk" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Versija" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index cd344fb96ce1897a2f729dfac40bc39a4ee5b75b..18c16618b64c95814d33e2f4406197cd9d126aab 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Neizdevās izdzēst servera konfigurāciju" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigurācija ir derīga un varēja izveidot savienojumu!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurācija ir derīga, bet sasaiste neizdevās. Lūdzu, pārbaudiet servera iestatījumus un akreditācijas datus." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/mk/core.po b/l10n/mk/core.po index c1f6fdbed94e2edb0a26854dc12b9827cbc4025f..9cc2a9ee06fa07c66eb6b08e9cfc7cec23030551 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "група" @@ -314,8 +319,8 @@ msgstr "Не е специфициран типот на објект." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Грешка" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "Сподели" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Грешка при споделување" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Грешка при прекин на споделување" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Грешка при промена на привилегии" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Споделено со Вас и групата {group} од {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Споделено со Вас од {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Сподели со" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Сподели со врска" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Заштити со лозинка" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Лозинка" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Прати врска по е-пошта на личност" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Прати" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Постави рок на траење" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Рок на траење" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Сподели по е-пошта:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Не се најдени луѓе" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Повторно споделување не е дозволено" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Споделено во {item} со {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Не споделувај" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "може да се измени" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "контрола на пристап" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "креирај" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "ажурирај" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "избриши" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "сподели" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Е-порака пратена" +#: js/share.js:729 +msgid "Warning" +msgstr "Предупредување" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Ќе добиете врска по е-пошта за да може да ја ресетирате Вашата лозинка." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Корисничко име" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Направете <strong>администраторска сметка</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Напредно" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Фолдер со податоци" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Конфигурирај ја базата" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "ќе биде користено" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Корисник на база" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Лозинка на база" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Име на база" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Табела во базата на податоци" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Сервер со база" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Заврши го подесувањето" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "Ако не сте ја промениле лозинката во ск msgid "Please change your password to secure your account again." msgstr "Ве молам сменете ја лозинката да ја обезбедите вашата сметка повторно." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Ја заборавивте лозинката?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "запамти" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Најава" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/mk/files.po b/l10n/mk/files.po index a075f4d8f849307eaa272816f95072e1caa9069f..afd9ab3b46c3b8a31264327c90c1cf2e677c5477 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Датотеки" @@ -119,7 +119,7 @@ msgstr "Адресата неможе да биде празна." 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Грешка" @@ -163,13 +163,13 @@ msgstr "заменета {new_name} со {old_name}" msgid "undo" msgstr "врати" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Име" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Големина" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Променето" @@ -292,49 +305,49 @@ msgstr "Папка" msgid "From link" msgstr "Од врска" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Тука нема ништо. Снимете нешто!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Преземи" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Не споделувај" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Избриши" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Фајлот кој се вчитува е преголем" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Се скенираат датотеки, ве молам почекајте." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Моментално скенирам" diff --git a/l10n/mk/files_encryption.po b/l10n/mk/files_encryption.po index 23d0a82d9332cdea37196603c47b262742b1eeae..cc367d9bbf23f0ad8cecc0c370d525673601d7ee 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Снимам..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index fc33716519ea7eba26a5c8693750e18d4f17a254..1199ac03520dd424434f36c49aac01240bd5e5e3 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 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 "Пристапот е дозволен" @@ -25,7 +25,7 @@ msgstr "Пристапот е дозволен" msgid "Error configuring Dropbox storage" msgstr "Грешка при конфигурација на Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Дозволи пристап" @@ -33,24 +33,24 @@ msgstr "Дозволи пристап" msgid "Please provide a valid Dropbox app key and secret." msgstr "Ве молам доставите валиден Dropbox клуч и тајна лозинка." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Грешка при конфигурација на 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>Внимание:</b> \"smbclient\" не е инсталиран. Не е можно монтирање на CIFS/SMB дискови. Замолете го Вашиот систем администратор да го инсталира." -#: 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>Внимание:</b> Не е овозможена или инсталирани FTP подршка во PHP. Не е можно монтирање на FTP дискови. Замолете го Вашиот систем администратор да го инсталира." -#: 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/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index b92b21c1c476d69b990b0aa2e72bbcd0608d8d58..7e028cbe6f5f103b14894e87ac2461dc1f7fc5fb 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Грешка" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Име" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +71,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Избриши" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index f87e0ecc9071ea5fe12c9cadce5cbde2e11881da..8b7a7df882608915a165f5e96293fc939e5b141d 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,325 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Помош" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Лично" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Подесувања" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Корисници" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Админ" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "Преземање во ZIP е исклучено" -#: 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 "Избраните датотеки се преголеми за да се генерира zip." -#: 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 "Не можам да најдам категорија „%s“" + +#: 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 "Не можам да најдам категорија „%s“" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index d8573ecf006253b2bdee41247c2553649225e441..17598ec84879bf1eb0113d7c36ade8a0c6c78240 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Оневозможи" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Овозможи" @@ -129,43 +129,43 @@ msgstr "Овозможи" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Грешка" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Ажурирај" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Снимам..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Записник" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Ниво на логирање" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Повеќе" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Помалку" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Верзија" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index c1df01027fb0a3b75f8e56a27b94606b60906daa..63b1000bf6e66c813a8736caa555aee86daf2f20 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index 8e7523af26c2b0d7b3e65fb903ea17b3b6aaf8ac..dc3821669e557bdf0e05d6b5404b25d4a532f82a 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -314,8 +319,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po index 5a25ca39107bf7e61aaecd6c323451082cbd93ea..6adf28c9ee2b8948ea26b7bf8724c0e7dda11167 100644 --- a/l10n/ml_IN/files.po +++ b/l10n/ml_IN/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -292,49 +305,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ml_IN/files_encryption.po b/l10n/ml_IN/files_encryption.po index 763878763878f89849947f3d660a2fe76480134a..3339f6b3cdfc29700fbeda016c0c294b995c585b 100644 --- a/l10n/ml_IN/files_encryption.po +++ b/l10n/ml_IN/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po index 127decca7902ec16f5d898185ac22c2951e1825b..79d0ac86622196bdd2d5e0fa272b4184424b7264 100644 --- a/l10n/ml_IN/settings.po +++ b/l10n/ml_IN/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 3809aef14ed0680ceb0e98e14bf88c8eb90e66ce..b631d3e90b87972b856242095398ec73b1f72673 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -309,8 +314,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Ralat" @@ -330,126 +335,134 @@ msgstr "" msgid "Share" msgstr "Kongsi" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Kata laluan" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "Amaran" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -486,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Anda akan menerima pautan untuk menetapkan semula kata laluan anda melalui emel" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nama pengguna" @@ -558,7 +571,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -612,48 +635,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "buat <strong>akaun admin</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Maju" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Fail data" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Konfigurasi pangkalan data" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Nama pengguna pangkalan data" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Kata laluan pangkalan data" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Nama pangkalan data" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Hos pangkalan data" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Setup selesai" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -677,19 +704,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Hilang kata laluan?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "ingat" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Log masuk" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -697,7 +732,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 05de8db4dcc332015c57d1b5769786908e421071..e938191475445569f37051b21c685d6c96b460e2 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Fail-fail" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Ralat" @@ -163,12 +163,12 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -204,31 +204,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nama" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Saiz" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Dimodifikasi" @@ -289,49 +302,49 @@ msgstr "Folder" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Muat turun" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Padam" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Muatnaik terlalu besar" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Fail sedang diimbas, harap bersabar." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Imbasan semasa" diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index 8b66830466a8d3e096fcfc1096a6af1ba5130204..419dc03f3909d22ba7dac46271628072f4a41f7a 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Simpan..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index cf3fca34a5e4b7f1a1d0b9de66b576d57605f249..6e6ba55ae7a9031ebc87cd8452b1e67b3a5a0f8f 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <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,7 +17,7 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\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 "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index cb56fbd7745645e59af9cfbffce4b6a1d93683bf..f65679fc8ef5a13e2c035a2011a9eac2dbdf8d17 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,41 +27,41 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Ralat" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nama" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +69,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Padam" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 2d0d010262befec2b7ad3b17b447dca4240ace9d..0a4794dc1471fdc238bf339aa504be1b07ff55b5 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <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,314 +17,321 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Bantuan" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Peribadi" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Tetapan" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Pengguna" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" -#: 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 "Ralat pengesahan" -#: 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 "Fail-fail" -#: 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 "Teks" -#: 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/ms_MY/settings.po b/l10n/ms_MY/settings.po index c144cf2096c142534f47654b790cb2cfa740548e..508a73832ab4fe13235e1c33c306f05ebc4daa7d 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Nyahaktif" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Aktif" @@ -129,43 +129,43 @@ msgstr "Aktif" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Ralat" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Kemaskini" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Simpan..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Tahap Log" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Lanjutan" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 403d5ac2ff3d13b628d0ea8a1fd898579716f1df..2a6f3630a053ee2181e32cf0050698c21a23be57 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index f2f4b06658f0553a551d2790b3840cbe6d8e5d77..5c25e31a1b2b523570e8c263a9ddf78fa159af49 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -309,8 +314,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -330,126 +335,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "စကားဝှက်" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်သတ်မှတ်မည်" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "အီးမေးလ်ဖြင့်ဝေမျှမည် -" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "ပြန်လည်ဝေမျှခြင်းခွင့်မပြုပါ" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "ပြင်ဆင်နိုင်" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "ဖန်တီးမည်" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "ဖျက်မည်" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -486,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "အီးမေးလ်မှတစ်ဆင့် သင်၏စကားဝှက်ကို ပြန်ဖော်ရန်အတွက် Link တစ်ခုလက်ခံရရှိပါလိမ့်မယ်။" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "သုံးစွဲသူအမည်" @@ -558,7 +571,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -612,48 +635,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "<strong>အက်ဒမင်အကောင့်</strong>တစ်ခုဖန်တီးမည်" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "အဆင့်မြင့်" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "အချက်အလက်ဖိုလ်ဒါလ်" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Database သုံးစွဲသူ" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Database စကားဝှက်" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Database အမည်" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "တပ်ဆင်ခြင်းပြီးပါပြီ။" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -677,19 +704,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "သင်၏စကားဝှက်ပျောက်သွားပြီလား။" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "မှတ်မိစေသည်" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "ဝင်ရောက်ရန်" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -697,7 +732,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index a143e196594eac6d7cc8e3f63acdac8f5bac7dd2..710c84749da7599eb28f1c53e8b771a0b84a99fc 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ဖိုင်များ" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,12 +163,12 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -204,31 +204,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -289,49 +302,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/my_MM/files_encryption.po b/l10n/my_MM/files_encryption.po index 9aedac17d427360d99923b66c7a329ed5ba0754c..f51e1ab1dad3801f40265c579482f9e4fef65e1c 100644 --- a/l10n/my_MM/files_encryption.po +++ b/l10n/my_MM/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index a5faefbbddf071d487dead4ccb4c9a06e33a0f59..b69db8273f49fcb8de4fb961513b183c5608a81b 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <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,314 +17,321 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "အကူအညီ" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "သုံးစွဲသူ" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "အက်ဒမင်" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" -#: 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 "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်" -#: 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 "zip ဖိုင်အဖြစ်ပြုလုပ်ရန် ရွေးချယ်ထားသောဖိုင်များသည် အရမ်းကြီးလွန်းသည်" -#: 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 "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" + +#: 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 "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 144af1c4211039ac3784bdb4300be871c0b15ab9..e8cdf5d21e5e0ac08f442efc90b33e0ef098cd47 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index cb30d0ff0f7fa010808b254c25917dc45478a7c9..b68d9912df8231db443eced09db50aff51b8f73c 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index b9a4a85d03bcbaf3e4729567c50d8529197be522..0710f655094bccfa3706766422b2241f4c3e2db1 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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" @@ -18,12 +18,17 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s delte »%s« med deg" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "gruppe" @@ -315,8 +320,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Feil" @@ -336,126 +341,134 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Feil under deling" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Delt med deg av {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Del med" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Del med link" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Passordbeskyttet" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passord" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Send" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Set utløpsdato" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Utløpsdato" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Del på epost" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Ingen personer funnet" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Avslutt deling" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "kan endre" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "opprett" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "oppdater" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "slett" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "del" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Passordbeskyttet" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "E-post sendt" +#: js/share.js:729 +msgid "Warning" +msgstr "Advarsel" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -492,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Du burde motta detaljer om å tilbakestille passordet ditt via epost." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Brukernavn" @@ -564,8 +577,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hei der.⏎\n⏎\nVille bare gjøre deg oppmerksom på at %s delte %s med deg.⏎\nVis den: %s⏎\n⏎\nVI ses!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -618,48 +641,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "opprett en <strong>administrator-konto</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "vil bli brukt" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Databasebruker" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Databasenavn" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Database tabellområde" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Databasevert" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Fullfør oppsetting" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -683,19 +710,27 @@ msgstr "Hvis du ikke har endret passordet ditt nylig kan kontoen din være kompr msgid "Please change your password to secure your account again." msgstr "Vennligst skift passord for å gjøre kontoen din sikker igjen." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Mistet passordet ditt?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "husk" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Logg inn" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -703,7 +738,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index e5f3ebc6c84e2f35158cea78d6a56a467d0bfa60..9cc4f00ab4cb7c84647b3337a1f1b08acd428f38 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -89,7 +89,7 @@ msgstr "" msgid "Invalid directory." msgstr "Ugyldig katalog." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Filer" @@ -122,7 +122,7 @@ msgstr "URL-en kan ikke være tom." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Feil" @@ -166,13 +166,13 @@ msgstr "erstattet {new_name} med {old_name}" msgid "undo" msgstr "angre" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" @@ -210,31 +210,44 @@ msgstr "Lagringsplass er oppbrukt, filer kan ikke lenger oppdateres eller synkro msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lagringsplass er nesten brukt opp ([usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Nedlastingen din klargjøres. Hvis filene er store kan dette ta litt tid." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Navn" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Størrelse" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Endret" @@ -295,49 +308,49 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Slettet filer" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Du har ikke skrivetilgang her." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Last ned" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Avslutt deling" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Slett" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Filen er for stor" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å laste opp er for store for å laste opp til denne serveren." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Skanner filer, vennligst vent." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Pågående skanning" diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index 1aea5d92addcd6fc4a4a1c4b0ea3f16e5477ecfe..3cc1c898bf6253bde272b3db49adad689a492969 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Lagrer..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index b9d4ea69c8bcc0a04e22bb6f8d3405c533511016..7dfb2d030b700048720af8fa61232baed4b6f13f 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -18,7 +18,7 @@ msgstr "" "Language: nb_NO\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 "Tilgang innvilget" @@ -26,7 +26,7 @@ msgstr "Tilgang innvilget" msgid "Error configuring Dropbox storage" msgstr "Feil ved konfigurering av Dropbox-lagring" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Gi tilgang" @@ -34,24 +34,24 @@ msgstr "Gi tilgang" msgid "Please provide a valid Dropbox app key and secret." msgstr "Vær vennlig å oppgi gyldig Dropbox appnøkkel og hemmelighet." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Feil med konfigurering av 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>Advarsel:</b> \"smbclient\" er ikke installert. Kan ikke montere CIFS/SMB mapper. Ta kontakt med din systemadministrator for å 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 støtte i PHP er ikke slått på eller innstallert. Kan ikke montere FTP mapper. Ta kontakt med din systemadministrator for å innstallere 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/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 8a0267ad7cb2ad694d4ca7a9a92be27c9b62213c..a46fbd42724d51195def7f2a1d8c8744b3c9c792 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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-17 22:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -28,43 +28,43 @@ msgstr "Kunne ikke slette %s fullstendig" msgid "Couldn't restore %s" msgstr "Kunne ikke gjenopprette %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "utfør gjenopprettings operasjon" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Feil" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "slett filer permanent" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Slett permanent" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Navn" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Slettet" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n mapper" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n filer" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -72,11 +72,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting her. Søppelkassen din er tom!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Gjenopprett" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Slett" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 1fa0543983ba9b71d433a2df5ac59447b510d2d9..8c88dd2d0bfba6d0b2a82c11695d88d0c6b7eb23 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <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,318 +17,325 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Hjelp" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personlig" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Innstillinger" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Brukere" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "web tjenester du kontrollerer" -#: 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 "ZIP-nedlasting av avslått" -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Filene må lastes ned en om gangen" -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Tilbake til filer" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "De valgte filene er for store til å kunne generere ZIP-fil" -#: 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 "Applikasjon er ikke påslått" -#: 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 "Autentikasjonsfeil" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Symbol utløpt. Vennligst last inn siden på nytt." -#: 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 "Filer" -#: 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 "Tekst" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Bilder" -#: 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 "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Vennligst dobbelsjekk <a href='%s'>installasjonsguiden</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Kunne ikke finne kategori \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "sekunder siden" -#: 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 "i dag" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "i går" -#: 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 "forrige måned" -#: 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 "forrige år" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "år siden" -#: 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 "Kunne ikke finne kategori \"%s\"" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index fe0d19856afe9337880e373beba5231e1b6f478f..16c200dffee36869200f4b28e7d89201ee6fb8aa 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -119,11 +119,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Oppdater til {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Slå avBehandle " -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Aktiver" @@ -131,43 +131,43 @@ msgstr "Aktiver" msgid "Please wait...." msgstr "Vennligst vent..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Oppdaterer..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Feil ved oppdatering av app" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Feil" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Oppdater" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Oppdatert" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Lagrer..." @@ -343,46 +343,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Tillat kun deling med andre brukere i samme gruppe" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Sikkerhet" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Tving HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Logg" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Loggnivå" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Mer" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Mindre" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Versjon" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 52aa1d44d42d2cc0323aec63e1ab4c58a7c87b72..6eb013d0b16bf85c1d54f4928374b166cb1ec1a0 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Klarte ikke å slette tjener-konfigurasjonen." -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Konfigurasjonen er i orden og tilkoblingen skal være etablert!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurasjonen er i orden, men Bind mislyktes. Vennligst sjekk tjener-konfigurasjonen og påloggingsinformasjonen." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 52425ae2ab0ee6b70872b56c062ad02900a06d8b..7fa6ab1c0b452bcfd4f995e6f929e8b6009c6938 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -314,8 +319,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/ne/files.po b/l10n/ne/files.po index 99b4c5422106f83dcbcfedbd3a4448985dd2f962..71cb0f8a59bfb258cf5acef970e925080bf21653 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -292,49 +305,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ne/files_encryption.po b/l10n/ne/files_encryption.po index a30502e5bbf1c612dc533717bb703da4d0ed0be6..51452a957a505d8c386cd820425ac4fb695bf936 100644 --- a/l10n/ne/files_encryption.po +++ b/l10n/ne/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index 855bab38ba26902b466ee5f9051fa943996da95d..f4166098841bc5be6498a60da00c64744aecfef0 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 1c2702b714dd2dd1679180f4163cf8d05f5ccf76..515299619c0f02c45f43e9cd1d41bb1181e6dc86 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -20,12 +20,17 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s deelde »%s« met jou" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "groep" @@ -317,8 +322,8 @@ msgstr "Het object type is niet gespecificeerd." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Fout" @@ -338,126 +343,134 @@ msgstr "Gedeeld" msgid "Share" msgstr "Delen" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fout tijdens het delen" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Fout tijdens het stoppen met delen" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Fout tijdens het veranderen van permissies" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Gedeeld met u en de groep {group} door {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Gedeeld met u door {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Deel met" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Deel met link" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Wachtwoord beveiligd" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Wachtwoord" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Sta publieke uploads toe" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "E-mail link naar persoon" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Versturen" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Stel vervaldatum in" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Vervaldatum" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Deel via e-mail:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Geen mensen gevonden" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Verder delen is niet toegestaan" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Gedeeld in {item} met {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Stop met delen" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "kan wijzigen" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "toegangscontrole" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "creëer" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "bijwerken" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "verwijderen" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "deel" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "E-mail verzonden" +#: js/share.js:729 +msgid "Warning" +msgstr "Waarschuwing" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -494,7 +507,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Je ontvangt een link om je wachtwoord opnieuw in te stellen via e-mail." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Gebruikersnaam" @@ -566,8 +579,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hallo daar,\n\n%s deelde %s met jou.\nBekijk: %s\n\nVeel plezier!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -620,48 +643,52 @@ msgstr "Bekijk de <a href=\"%s\" target=\"_blank\">documentatie</a> voor Informa msgid "Create an <strong>admin account</strong>" msgstr "Maak een <strong>beheerdersaccount</strong> aan" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Geavanceerd" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Gegevensmap" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Configureer de database" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "zal gebruikt worden" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Gebruiker database" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Wachtwoord database" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Naam database" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Databaseserver" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Installatie afronden" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -685,19 +712,27 @@ msgstr "Als je je wachtwoord niet onlangs heeft aangepast, kan je account overge msgid "Please change your password to secure your account again." msgstr "Wijzig je wachtwoord zodat je account weer beveiligd is." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Wachtwoord vergeten?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "onthoud gegevens" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Meld je aan" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatieve inlogs" @@ -705,8 +740,13 @@ msgstr "Alternatieve inlogs" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Hallo daar,<br><br> %s deelde »%s« met jou.<br><a href=\"%s\">Bekijk!</a><br><br>Veel plezier!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 68d1ce8e06bdea155bc011f62214f072eae3d725..6e300827bb984b56944cbb5e9f4234a22c71a2e9 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ msgstr "" msgid "Invalid directory." msgstr "Ongeldige directory." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Bestanden" @@ -121,7 +121,7 @@ msgstr "URL kan niet leeg zijn." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ongeldige mapnaam. Gebruik van 'Gedeeld' is voorbehouden aan Owncloud zelf" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Fout" @@ -165,13 +165,13 @@ msgstr "verving {new_name} met {old_name}" msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n mappen" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -209,31 +209,44 @@ msgstr "Uw opslagruimte zit vol, Bestanden kunnen niet meer worden ge-upload of msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Encryptie is uitgeschakeld maar uw bestanden zijn nog steeds versleuteld. Ga naar uw persoonlijke instellingen om uw bestanden te decoderen." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Naam" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Grootte" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Aangepast" @@ -294,49 +307,49 @@ msgstr "Map" msgid "From link" msgstr "Vanaf link" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Verwijderde bestanden" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "U hebt hier geen schrijfpermissies." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Downloaden" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Stop met delen" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Verwijder" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Upload is te groot" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Bestanden worden gescand, even wachten." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Er wordt gescand" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index b72cecc5040ea795aabf7d4a9e6799ebf2f616d6..cf8ef83024d5b8d754238c3b5dc0dd257957d2eb 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-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: Len <lenny@weijl.org>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <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" @@ -45,17 +45,24 @@ msgstr "Wachtwoord succesvol gewijzigd." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Kon wachtwoord niet wijzigen. Wellicht oude wachtwoord niet juist ingevoerd." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Privésleutel succesvol bijgewerkt." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Kon het wachtwoord van de privésleutel niet wijzigen. Misschien was het oude wachtwoord onjuist." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -63,36 +70,30 @@ msgid "" "files." msgstr "Uw privésleutel is niet geldig! Misschien was uw wachtwoord van buitenaf gewijzigd. U kunt het wachtwoord van uw privésleutel aanpassen in uw persoonlijke instellingen om toegang tot uw versleutelde bestanden te vergaren." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Missende benodigdheden." -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "De volgende gebruikers hebben geen configuratie voor encryptie:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Opslaan" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Uw privésleutel is niet geldig. Misschien was uw wachtwoord van buitenaf gewijzigd." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "U kunt uw privésleutel deblokkeren in uw" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "persoonlijke instellingen" @@ -109,27 +110,35 @@ msgstr "Activeren herstelsleutel (maakt het mogelijk om gebruikersbestanden teru msgid "Recovery key password" msgstr "Wachtwoord herstelsleulel" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Geactiveerd" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Gedeactiveerd" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Wijzig wachtwoord herstelsleutel:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Oude wachtwoord herstelsleutel" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Nieuwe wachtwoord herstelsleutel" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Wijzigen wachtwoord" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 605a5e2ce927b9d4d333b9a835ef3f5dafe6f883..13bbe8de98ff0a25c96ee1d7809834b64c028c5e 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -18,7 +18,7 @@ msgstr "" "Language: nl\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 "Toegang toegestaan" @@ -26,7 +26,7 @@ msgstr "Toegang toegestaan" msgid "Error configuring Dropbox storage" msgstr "Fout tijdens het configureren van Dropbox opslag" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Sta toegang toe" @@ -34,24 +34,24 @@ msgstr "Sta toegang toe" msgid "Please provide a valid Dropbox app key and secret." msgstr "Geef een geldige Dropbox key en secret." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Fout tijdens het configureren van Google Drive opslag" -#: 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>Waarschuwing:</b> \"smbclient\" is niet geïnstalleerd. Mounten van CIFS/SMB shares is niet mogelijk. Vraag uw beheerder om smbclient te installeren." -#: 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>Waarschuwing:</b> FTP ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van FTP shares is niet mogelijk. Vraag uw beheerder FTP ondersteuning te installeren." -#: 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/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index ba5a867135572de14bf54798c6fd160bf82d41be..83e0e68db8f0dfd644ea719f6a736e0d9a7e8846 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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-17 06:30+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -28,43 +28,43 @@ msgstr "Kon %s niet permanent verwijderen" msgid "Couldn't restore %s" msgstr "Kon %s niet herstellen" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "uitvoeren restore operatie" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Fout" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "verwijder bestanden definitief" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Verwijder definitief" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Naam" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Verwijderd" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n map" msgstr[1] "%n mappen" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n bestand" msgstr[1] "%n bestanden" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "hersteld" @@ -72,11 +72,11 @@ msgstr "hersteld" msgid "Nothing in here. Your trash bin is empty!" msgstr "Niets te vinden. Uw prullenbak is leeg!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Herstellen" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Verwijder" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 918f3b09a7a87edb0b9bac121006599915f6c144..2885c0a2fb485ccf014d7228f0c4d5acd2c1d0eb 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/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-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:05+0000\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" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -20,318 +20,325 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "De app naam is niet gespecificeerd." -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Help" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Persoonlijk" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Instellingen" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Gebruikers" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Beheerder" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgrade \"%s\" mislukt." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "Maatwerk profielafbeelding werkt nog niet met versleuteling" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Onbekend bestandsformaat" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Ongeldige afbeelding" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "Webdiensten in eigen beheer" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Kon \"%s\" niet openen" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "ZIP download is uitgeschakeld." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Bestanden moeten één voor één worden gedownload." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Terug naar bestanden" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "De geselecteerde bestanden zijn te groot om een zip bestand te maken." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Download de bestanden in kleinere brokken, appart of vraag uw administrator." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Geen bron opgegeven bij installatie van de app" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Geen href opgegeven bij installeren van de app vanaf http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Geen pad opgegeven bij installeren van de app vanaf een lokaal bestand" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Archiefbestanden van type %s niet ondersteund" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Kon archiefbestand bij installatie van de app niet openen" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "De app heeft geen info.xml bestand" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "De app kan niet worden geïnstalleerd wegens onjuiste code in de app" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "De app kan niet worden geïnstalleerd omdat die niet compatible is met deze versie van ownCloud" -#: 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 "De app kan niet worden geïnstallerd omdat het de <shipped>true</shipped> tag bevat die niet is toegestaan voor niet gepubliceerde apps" -#: 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 "De app kan niet worden geïnstalleerd omdat de versie in info.xml/version niet dezelfde is als de versie zoals die in de app store staat vermeld" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "App directory bestaat al" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Kan de app map niet aanmaken, Herstel de permissies. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "De applicatie is niet actief" -#: 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 "Authenticatie fout" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token verlopen. Herlaad de pagina." -#: 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 "Bestanden" -#: 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 "Tekst" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Afbeeldingen" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s opgeven database gebruikersnaam." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s opgeven databasenaam." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s er mogen geen puntjes in de databasenaam voorkomen" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL gebruikersnaam en/of wachtwoord niet geldig: %s" -#: 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 "Geef of een bestaand account op of het beheerdersaccount." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL gebruikersnaam en/of wachtwoord ongeldig" -#: 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 "DB Fout: \"%s\"" -#: 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 "Onjuiste commande was: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL gebruiker '%s'@'localhost' bestaat al." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Verwijder deze gebruiker uit MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL gebruiker '%s'@'%%' bestaat al" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Verwijder deze gebruiker uit MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Er kon geen verbinding met Oracle worden bereikt" -#: 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 "Oracle gebruikersnaam en/of wachtwoord ongeldig" -#: 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 "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s" -#: 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 "PostgreSQL gebruikersnaam en/of wachtwoord ongeldig" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Stel de gebruikersnaam van de beheerder in." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Stel een beheerderswachtwoord in." -#: 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 "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Controleer de <a href='%s'>installatiehandleiding</a> goed." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Kon categorie \"%s\" niet vinden" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "seconden geleden" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuut geleden" msgstr[1] "%n minuten geleden" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n uur geleden" msgstr[1] "%n uur geleden" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "vandaag" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "gisteren" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag terug" msgstr[1] "%n dagen geleden" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "vorige maand" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n maand geleden" msgstr[1] "%n maanden geleden" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "vorig jaar" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "jaar geleden" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Gekomen door:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Kon categorie \"%s\" niet vinden" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 68edba7080a90edb42cc9bf83458d7fee7734129..e80090a74f6a86b31e154dcad8db8eb3a8c07eca 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Bijwerken naar {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Uitschakelen" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Activeer" @@ -133,43 +133,43 @@ msgstr "Activeer" msgid "Please wait...." msgstr "Even geduld aub...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Fout tijdens het uitzetten van het programma" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Fout tijdens het aanzetten van het programma" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Bijwerken...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Fout bij bijwerken app" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Fout" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Bijwerken" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Bijgewerkt" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Kies een profielafbeelding" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "Bestanden worden gedecodeerd... Even geduld alstublieft, dit kan even duren." -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Opslaan" @@ -345,46 +345,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Instellen dat gebruikers alleen met leden binnen hun groepen delen" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Beveiliging" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Afdwingen HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Dwingt de clients om een versleutelde verbinding te maken met %s" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Maak verbinding naar uw %s via HTTPS om een geforceerde versleutelde verbinding in- of uit te schakelen." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Meer" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Minder" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Versie" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index b0ecf57ce45f48850b95ba9f1e47a7b24f365e63..6c69b504f88a03ebb9e03032981863ada59313a7 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: kwillems <kwillems@zonnet.nl>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -28,17 +28,17 @@ msgstr "Niet gelukt de vertalingen leeg te maken." msgid "Failed to delete the server configuration" msgstr "Verwijderen serverconfiguratie mislukt" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "De configuratie is geldig en de verbinding is geslaagd!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "De configuratie is geldig, maar Bind mislukte. Controleer de serverinstellingen en inloggegevens." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index e16776a09863157188574d46f7c9bf1cefbc4957..bc6f9b3cc8ef5315ea2c5ce4ec5364e4d6293af8 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/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-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-24 08:30+0000\n" -"Last-Translator: unhammer <unhammer+dill@mm.st>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,12 +20,17 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s delte «%s» med deg" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "gruppe" @@ -317,8 +322,8 @@ msgstr "Objekttypen er ikkje spesifisert." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Feil" @@ -338,126 +343,134 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:131 js/share.js:696 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Feil ved deling" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Feil ved udeling" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Feil ved endring av tillatingar" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Delt med deg og gruppa {group} av {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Delt med deg av {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Del med" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Del med lenkje" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Passordvern" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passord" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Tillat offentleg opplasting" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Send lenkja over e-post" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Send" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Set utløpsdato" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Utløpsdato" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Del over e-post:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Fann ingen personar" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Vidaredeling er ikkje tillate" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {brukar}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Udel" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "kan endra" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "lag" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "oppdater" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "slett" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "del" -#: js/share.js:400 js/share.js:643 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Passordverna" -#: js/share.js:656 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Klarte ikkje fjerna utløpsdato" -#: js/share.js:668 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Klarte ikkje setja utløpsdato" -#: js/share.js:683 +#: js/share.js:694 msgid "Sending ..." msgstr "Sender …" -#: js/share.js:694 +#: js/share.js:705 msgid "Email sent" msgstr "E-post sendt" +#: js/share.js:729 +msgid "Warning" +msgstr "Åtvaring" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -494,7 +507,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Du vil få ein e-post med ei lenkje for å nullstilla passordet." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Brukarnamn" @@ -566,8 +579,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hei der,\n\nnemner berre at %s delte %s med deg.\nSjå det her: %s\n\nMe talast!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -620,48 +643,52 @@ msgstr "Ver venleg og les <a href=\"%s\" target=\"_blank\">dokumentasjonen</a> f msgid "Create an <strong>admin account</strong>" msgstr "Lag ein <strong>admin-konto</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Set opp databasen" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "vil verta nytta" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Databasebrukar" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Databasenamn" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Tabellnamnrom for database" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Databasetenar" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Fullfør oppsettet" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -685,19 +712,27 @@ msgstr "Viss du ikkje endra passordet ditt nyleg, så kan kontoen din vera kompr msgid "Please change your password to secure your account again." msgstr "Ver venleg og endra passordet for å gjera kontoen din trygg igjen." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Gløymt passordet?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "hugs" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Logg inn" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternative innloggingar" @@ -705,8 +740,13 @@ msgstr "Alternative innloggingar" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Hei der,<br><br>nemner berre at %s delte «%s» med deg.<br><a href=\"%s\">Sjå det!</a><br><br>Me talast!<" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index dc82bdca1b74917dde1234f75ffaf338a70332d1..4204e676cf30897caf4a1c3fbd9d958f534d3309 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-24 08:20+0000\n" -"Last-Translator: unhammer <unhammer+dill@mm.st>\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" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -122,7 +122,7 @@ msgstr "Nettadressa kan ikkje vera tom." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ugyldig mappenamn. Mappa «Shared» er reservert av ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Feil" @@ -166,13 +166,13 @@ msgstr "bytte ut {new_name} med {old_name}" msgid "undo" msgstr "angre" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" @@ -210,31 +210,44 @@ msgstr "Lagringa di er full, kan ikkje lenger oppdatera eller synkronisera!" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lagringa di er nesten full ({usedSpacePercent} %)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kryptering er skrudd av, men filene dine er enno krypterte. Du kan dekryptera filene i personlege innstillingar." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Feil ved flytting av fil" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Namn" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Storleik" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Endra" @@ -295,49 +308,49 @@ msgstr "Mappe" msgid "From link" msgstr "Frå lenkje" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Sletta filer" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Du har ikkje skriverettar her." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last noko opp!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Last ned" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Udel" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Slett" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "For stor opplasting" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å lasta opp er større enn maksgrensa til denne tenaren." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Skannar filer, ver venleg og vent." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Køyrande skanning" diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index 112217447c87552c888cd3a5adeb78cbd45de0bc..70e3dcdd71a7b5f778c1be779bbf35d00870401c 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-08 21:36-0400\n" -"PO-Revision-Date: 2013-09-08 17:40+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:51 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:52 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:250 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Lagrar …" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 729a5014814f1d0adb21aba78ab2359d0b144cc9..f8aa9c9233490e31d96d84a64dd2143184bba9fb 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: nn_NO\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 "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 8a6b4412c287fe2a80138134d039772a6627badf..66efc5fddc1da7ad4acf06edf1701adc36932170 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-09-08 21:36-0400\n" -"PO-Revision-Date: 2013-09-08 15:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: unhammer <unhammer+dill@mm.st>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -45,27 +45,27 @@ msgstr "slett fila for godt" msgid "Delete permanently" msgstr "Slett for godt" -#: js/trash.js:184 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Namn" -#: js/trash.js:185 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Sletta" -#: js/trash.js:193 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/trash.js:199 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "gjenoppretta" @@ -73,11 +73,11 @@ msgstr "gjenoppretta" msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting her. Papirkorga di er tom!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Gjenopprett" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Slett" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 9e73f6fe6aa9165b968b984866d6c0b7f4e5a6cb..e08ae3f05fbd45e4848c6f00a171dc61a05f03a9 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-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-24 08:30+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <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,318 +19,325 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Hjelp" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personleg" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Innstillingar" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Brukarar" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administrer" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Ukjend filtype" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Ugyldig bilete" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "Vev tjenester under din kontroll" -#: 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 "Feil i autentisering" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Filer" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Tekst" -#: search/provider/file.php:30 +#: 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 "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Ver venleg og dobbeltsjekk <a href='%s'>installasjonsrettleiinga</a>." -#: 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 "sekund sidan" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutt sidan" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n timar sidan" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "i dag" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "i går" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagar sidan" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "førre månad" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n månadar sidan" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "i fjor" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "år sidan" -#: 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/nn_NO/settings.po b/l10n/nn_NO/settings.po index 761b9f46275e14fbc81700f1979c6d1df9e14748..5d6356c385e2cb5122f61efd2c567949462c5135 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/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-09-24 12:58-0400\n" -"PO-Revision-Date: 2013-09-24 08:30+0000\n" -"Last-Translator: unhammer <unhammer+dill@mm.st>\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" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -160,15 +160,15 @@ msgstr "Oppdater" msgid "Updated" msgstr "Oppdatert" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Vel eit profilbilete" -#: js/personal.js:265 +#: js/personal.js:270 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:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Lagrar …" @@ -344,46 +344,54 @@ msgid "Allow users to only share with users in their groups" msgstr "La brukarar dela berre med brukarar i deira grupper" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Tryggleik" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Krev HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvingar klientar til å kopla til %s med ei kryptert tilkopling." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Ver venleg å kopla til %s med HTTPS (eller skru av SSL-kravet)." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Logg" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Log nivå" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Meir" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Mindre" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 50449bc4e8a30951e13437bfd08046a16e778b7b..66ed7b6861a8b4aaabc1d374ddf607952ea3f46a 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-10 10:41-0400\n" -"PO-Revision-Date: 2013-09-09 09:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/nqo/core.po b/l10n/nqo/core.po index e50801d30bab899fe77bbe766ab2a2cd8a4ba137..7eec2a16a12645e4f2b45d6970907b1a0bbb52a1 100644 --- a/l10n/nqo/core.po +++ b/l10n/nqo/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -309,8 +314,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -330,126 +335,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -486,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -558,7 +571,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -612,48 +635,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -677,19 +704,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -697,7 +732,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/nqo/files.po b/l10n/nqo/files.po index 4749e89f2645d1d866c22b173d48b797c353ea84..c2d5bfab1cfe5bf40717fa679ae882ebddf8f9c7 100644 --- a/l10n/nqo/files.po +++ b/l10n/nqo/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,12 +163,12 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -204,31 +204,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -289,49 +302,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/nqo/files_encryption.po b/l10n/nqo/files_encryption.po index 3c4beade2a4c3182f51467bb7a6f299dedb8c806..f920009def841949255562373a1d766dbc64a8c0 100644 --- a/l10n/nqo/files_encryption.po +++ b/l10n/nqo/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:39-0400\n" -"PO-Revision-Date: 2013-09-07 07:28+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:51 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:52 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:250 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/nqo/settings.po b/l10n/nqo/settings.po index aafbac399b08451fff752ad403cd908028722bcc..4fa8f0b826ff26910af3454652fd8c3781985691 100644 --- a/l10n/nqo/settings.po +++ b/l10n/nqo/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 10cb24643137dea8ce1da74c456cafe90c77dd55..d30c1296b45d2442c4b25523006b93b689a4950d 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "grop" @@ -314,8 +319,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Error" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "Parteja" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Error al partejar" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Error al non partejar" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Error al cambiar permissions" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Parteja amb" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Parteja amb lo ligam" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Parat per senhal" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Senhal" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Met la data d'expiracion" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Data d'expiracion" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Parteja tras corrièl :" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Deguns trobat" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Tornar partejar es pas permis" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Pas partejador" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "pòt modificar" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "Contraròtle d'acces" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "crea" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "met a jorn" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "escafa" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "parteja" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Reçaupràs un ligam per tornar botar ton senhal via corrièl." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Non d'usancièr" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Crea un <strong>compte admin</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Dorsièr de donadas" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Configura la basa de donadas" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "serà utilizat" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Usancièr de la basa de donadas" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Senhal de la basa de donadas" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Nom de la basa de donadas" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Espandi de taula de basa de donadas" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Òste de basa de donadas" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Configuracion acabada" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "L'as perdut lo senhal ?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "bremba-te" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Dintrada" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/oc/files.po b/l10n/oc/files.po index df81825fe3f912fe8718c8a8d75f7e1e0ee9a325..4aade026f62e9c13ce326e131f89ebbcd3bf0c42 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Fichièrs" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Error" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "defar" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nom" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Talha" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Modificat" @@ -292,49 +305,49 @@ msgstr "Dorsièr" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Pas res dedins. Amontcarga qualquaren" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Avalcarga" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Pas partejador" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Escafa" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Amontcargament tròp gròs" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Los fiichièrs son a èsser explorats, " -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Exploracion en cors" diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index eba3e13368c22a279d5517c77287e9e7e68c0981..bd86a56e3be29f363ef0c0dc2f8927fd699dacb0 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Enregistra..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index b899bcf9b7db3bca727e0211dacb608c2582c85a..92b870532674f986da04c148f9208971b2a507f0 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <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,7 +17,7 @@ msgstr "" "Language: oc\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 "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 1f47311fecd9ed25ecbf0138d0eba5ea562acc08..6ac8f8fe28847ad3ddd8e2564cda64ae99082be8 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Error" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nom" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +71,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Escafa" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index a1e7d21d338a51b440a381256644d43f1b771cfd..9cb5f58d45a103f8d12fe376c9bf0f7650e22942 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <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,318 +17,325 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Ajuda" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personal" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Configuracion" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Usancièrs" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "Services web jos ton contraròtle" -#: 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 "Avalcargar los ZIP es inactiu." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Los fichièrs devan èsser avalcargats un per un." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Torna cap als fichièrs" -#: 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 "Error d'autentificacion" -#: 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 "Fichièrs" -#: 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 "segonda a" -#: 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 "uèi" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "ièr" -#: 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 "mes passat" -#: 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 "an passat" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "ans a" -#: 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/settings.po b/l10n/oc/settings.po index bd0c36692d28e2f0df2978e6336610d6eeb86829..96dcb1d5e0ee4509c359db0ad843aa83be44965b 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Desactiva" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Activa" @@ -129,43 +129,43 @@ msgstr "Activa" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Error" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Enregistra..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Jornal" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Mai d'aquò" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 48c4e281c6dd65ba497e0ff0c60d78123c64863f..d5c42bcf74d5c18dcf84ecb55468adf8360d1291 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/pa/core.po b/l10n/pa/core.po index 184ac05da0136f08cf6f5df3050e528f01c643ba..fb84b14f27ceb2bf748de0d81adb2c48de417e97 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,17 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -315,8 +320,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "ਗਲ" @@ -336,126 +341,134 @@ msgstr "" msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "ਪਾਸਵਰ" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "ਭੇਜੋ" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "ਚੇਤਾਵਨੀ" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -492,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "ਯੂਜ਼ਰ-ਨਾਂ" @@ -564,7 +577,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -618,48 +641,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -683,19 +710,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -703,7 +738,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/pa/files.po b/l10n/pa/files.po index 93b8cdfacd0b9bd95374d0a2892dd5947cc2e8e6..bb2ae62295888865df6ba3486c5401b6347546e9 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ਫਾਇਲਾਂ" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "ਗਲਤੀ" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "ਵਾਪਸ" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -292,49 +305,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "ਅੱਪਲੋਡ ਰੱਦ ਕਰੋ" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "ਡਾਊਨਲੋਡ" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "ਹਟਾਓ" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/pa/files_encryption.po b/l10n/pa/files_encryption.po index c49ed353a6ce8d7db8702a325cff04d7107a786e..05e365c81e1731a521614e57d325575de280b38c 100644 --- a/l10n/pa/files_encryption.po +++ b/l10n/pa/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:46-0400\n" -"PO-Revision-Date: 2013-09-17 13:14+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -72,25 +79,19 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:255 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/pa/files_external.po b/l10n/pa/files_external.po index 95660c84dbc55f3eaeb924712fe5e773eccc137e..9e513d0cc426305bc2a9ecc4ea11eb449e542638 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-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:14+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <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 b6c92523c505857a763d592b990c611c8abd87f8..2d8b4c38b76182da88da72576db91785337173ae 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-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:14+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -63,7 +63,7 @@ msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 8095ea1076f6a5b984af8411cfc3d2f0fc8411e1..54ca3537c3af8bb16f943f08e3ed1be7cb13e06a 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "ਬੰਦ" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "ਚਾਲੂ" @@ -130,43 +130,43 @@ msgstr "ਚਾਲੂ" msgid "Please wait...." msgstr "...ਉਡੀਕੋ ਜੀ" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "...ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "ਗਲਤੀ" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "ਅੱਪਡੇਟ ਕੀਤਾ" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" @@ -342,46 +342,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pa/user_ldap.po b/l10n/pa/user_ldap.po index 0c8fff503980b2065876743db909456d7de3868f..ca4f0b3e2ce436d428aa106361be78f913bc9413 100644 --- a/l10n/pa/user_ldap.po +++ b/l10n/pa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:14+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/pl/core.po b/l10n/pl/core.po index d3f781b0e4da2e5c4433189b1094515be628dbd2..fe247fbe19b91c5db9b17355a6bf42f3114d9f58 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/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-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-30 12:27+0000\n" -"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,12 +19,17 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s Współdzielone »%s« z tobą" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "grupa" @@ -321,8 +326,8 @@ msgstr "Nie określono typu obiektu." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Błąd" @@ -342,126 +347,134 @@ msgstr "Udostępniono" msgid "Share" msgstr "Udostępnij" -#: js/share.js:131 js/share.js:696 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Błąd podczas zatrzymywania współdzielenia" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Błąd przy zmianie uprawnień" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Udostępnione tobie i grupie {group} przez {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Udostępnione tobie przez {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Współdziel z" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Współdziel wraz z odnośnikiem" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Zabezpiecz hasłem" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Hasło" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Pozwól na publiczne wczytywanie" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Wyślij osobie odnośnik poprzez e-mail" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Wyślij" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Ustaw datę wygaśnięcia" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Data wygaśnięcia" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Współdziel poprzez e-mail:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Nie znaleziono ludzi" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Współdzielenie nie jest możliwe" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Współdzielone w {item} z {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "może edytować" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "kontrola dostępu" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "utwórz" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "uaktualnij" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "usuń" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "współdziel" -#: js/share.js:400 js/share.js:643 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:656 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:668 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:683 +#: js/share.js:694 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:694 +#: js/share.js:705 msgid "Email sent" msgstr "E-mail wysłany" +#: js/share.js:729 +msgid "Warning" +msgstr "Ostrzeżenie" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -498,7 +511,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Odnośnik służący do resetowania hasła zostanie wysłany na adres e-mail." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nazwa użytkownika" @@ -570,8 +583,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Cześć,\n\nInformuję cię że %s udostępnia ci %s.\nZobacz na: %s\n\nPozdrawiam!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -624,48 +647,52 @@ msgstr "Aby uzyskać informacje jak poprawnie skonfigurować swój serwer, zapoz msgid "Create an <strong>admin account</strong>" msgstr "Utwórz <strong>konta administratora</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Zaawansowane" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Katalog danych" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Skonfiguruj bazę danych" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "zostanie użyte" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Użytkownik bazy danych" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Hasło do bazy danych" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Nazwa bazy danych" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Obszar tabel bazy danych" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Komputer bazy danych" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Zakończ konfigurowanie" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -689,19 +716,27 @@ msgstr "Jeśli hasło było dawno niezmieniane, twoje konto może być zagrożon msgid "Please change your password to secure your account again." msgstr "Zmień swoje hasło, aby ponownie zabezpieczyć swoje konto." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Nie pamiętasz hasła?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "pamiętaj" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Zaloguj" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatywne loginy" @@ -709,8 +744,13 @@ msgstr "Alternatywne loginy" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Cześć,<br><br>Informuję cię że %s udostępnia ci »%s«.\n<br><a href=\"%s\">Zobacz</a><br><br>Pozdrawiam!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/pl/files.po b/l10n/pl/files.po index a88ee97ad7e89bf66341e6eb7e34aa273b5eb5cd..7249cd990073f6cf7104599505603fcb15186ae9 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:14-0400\n" -"PO-Revision-Date: 2013-09-30 12:24+0000\n" -"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\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" "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" @@ -122,7 +122,7 @@ msgstr "URL nie może być pusty." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nieprawidłowa nazwa folderu. Wykorzystanie 'Shared' jest zarezerwowane przez ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Błąd" @@ -166,14 +166,14 @@ msgstr "zastąpiono {new_name} przez {old_name}" msgid "undo" msgstr "cofnij" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n katalog" msgstr[1] "%n katalogi" msgstr[2] "%n katalogów" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n plik" @@ -213,31 +213,44 @@ msgstr "Magazyn jest pełny. Pliki nie mogą zostać zaktualizowane lub zsynchro msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Twój magazyn jest prawie pełny ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Szyfrowanie zostało wyłączone, ale nadal pliki są zaszyfrowane. Przejdź do ustawień osobistych i tam odszyfruj pliki." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Błąd prz przenoszeniu pliku" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nazwa" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Rozmiar" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Modyfikacja" @@ -298,49 +311,49 @@ msgstr "Folder" msgid "From link" msgstr "Z odnośnika" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Pliki usunięte" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Nie masz uprawnień do zapisu w tym miejscu." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Pusto. Wyślij coś!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Pobierz" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Usuń" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Ładowany plik jest za duży" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index a232ad391349a24fc5d67505cd650539b497ea75..ccb7d03ca29a3d88baa8bc163b5df62509f0b2bf 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/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-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <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" @@ -44,17 +44,24 @@ msgstr "Zmiana hasła udana." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Nie można zmienić hasła. Może stare hasło nie było poprawne." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Pomyślnie zaktualizowano hasło klucza prywatnego." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Nie można zmienić prywatnego hasła. Może stare hasło nie było poprawne." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -62,36 +69,30 @@ msgid "" "files." msgstr "Klucz prywatny nie jest ważny! Prawdopodobnie Twoje hasło zostało zmienione poza systemem ownCloud (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Brak wymagań." -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Zapisywanie..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Możesz odblokować swój klucz prywatny w swojej" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "Ustawienia osobiste" @@ -108,27 +109,35 @@ msgstr "Włączhasło klucza odzyskiwania (pozwala odzyskać pliki użytkownikó msgid "Recovery key password" msgstr "Hasło klucza odzyskiwania" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Włączone" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Wyłączone" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Zmień hasło klucza odzyskiwania" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Stare hasło klucza odzyskiwania" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Nowe hasło klucza odzyskiwania" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Zmień hasło" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index d06393b1c89b8f51fad4bdb9cae6e73d17eb63ef..7a774c7b781f94f8cbe87b2453fd734dd4600533 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-09-05 07:36-0400\n" -"PO-Revision-Date: 2013-09-04 22:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -44,29 +44,29 @@ msgstr "trwale usuń plik" msgid "Delete permanently" msgstr "Trwale usuń" -#: js/trash.js:184 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nazwa" -#: js/trash.js:185 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Usunięte" -#: js/trash.js:193 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "%n katalogów" -#: js/trash.js:199 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "%n plików" -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "przywrócony" @@ -74,11 +74,11 @@ msgstr "przywrócony" msgid "Nothing in here. Your trash bin is empty!" msgstr "Nic tu nie ma. Twój kosz jest pusty!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Przywróć" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Usuń" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 9e29c51c5a9e8a08335e00b55c5ea2955e1741f0..02b7e90faec2873b90a82ad6f4e9317c1f672700 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/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-09-30 10:16-0400\n" -"PO-Revision-Date: 2013-09-30 12:26+0000\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" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -18,322 +18,329 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:237 +#: private/app.php:237 #, 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." -#: app.php:248 +#: private/app.php:248 msgid "No app name specified" msgstr "Nie określono nazwy aplikacji" -#: app.php:352 +#: private/app.php:352 msgid "Help" msgstr "Pomoc" -#: app.php:365 +#: private/app.php:365 msgid "Personal" msgstr "Osobiste" -#: app.php:376 +#: private/app.php:376 msgid "Settings" msgstr "Ustawienia" -#: app.php:388 +#: private/app.php:388 msgid "Users" msgstr "Użytkownicy" -#: app.php:401 +#: private/app.php:401 msgid "Admin" msgstr "Administrator" -#: app.php:832 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Błąd przy aktualizacji \"%s\"." -#: avatar.php:56 +#: 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" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Nieznany typ pliku" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Błędne zdjęcie" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "Kontrolowane serwisy" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Nie można otworzyć \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "Pobieranie ZIP jest wyłączone." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Pliki muszą zostać pobrane pojedynczo." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Wróć do plików" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Wybrane pliki są zbyt duże, aby wygenerować plik zip." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Pobierz pliki w mniejszy kawałkach, oddzielnie lub poproś administratora o zwiększenie limitu." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Nie określono źródła podczas instalacji aplikacji" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Nie określono linku skąd aplikacja ma być zainstalowana" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Nie określono lokalnego pliku z którego miała być instalowana aplikacja" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Typ archiwum %s nie jest obsługiwany" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Nie udało się otworzyć archiwum podczas instalacji aplikacji" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Aplikacja nie posiada pliku info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Aplikacja nie może być zainstalowany ponieważ nie dopuszcza kod w aplikacji" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Aplikacja nie może zostać zainstalowana ponieważ jest niekompatybilna z tą wersja ownCloud" -#: 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 "Aplikacja nie może być zainstalowana ponieważ true tag nie jest <shipped>true</shipped> , co nie jest dozwolone dla aplikacji nie wysłanych" -#: 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 "Nie można zainstalować aplikacji, ponieważ w wersji info.xml/version nie jest taka sama, jak wersja z app store" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "Katalog aplikacji już isnieje" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nie mogę utworzyć katalogu aplikacji. Proszę popraw uprawnienia. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Aplikacja nie jest włączona" -#: 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 "Błąd uwierzytelniania" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token wygasł. Proszę ponownie załadować stronę." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Pliki" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Połączenie tekstowe" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Obrazy" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s wpisz nazwę użytkownika do bazy" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s wpisz nazwę bazy." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s nie można używać kropki w nazwie bazy danych" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nazwa i/lub hasło serwera MS SQL jest niepoprawne: %s." -#: 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 "Należy wprowadzić istniejące konto użytkownika lub administratora." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL: Nazwa użytkownika i/lub hasło jest niepoprawne" -#: 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 "Błąd DB: \"%s\"" -#: 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 "Niepoprawna komenda: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Użytkownik MySQL '%s'@'localhost' już istnieje" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Usuń tego użytkownika z MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Użytkownik MySQL '%s'@'%%t' już istnieje" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Usuń tego użytkownika z MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Nie można ustanowić połączenia z bazą Oracle" -#: 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 "Oracle: Nazwa użytkownika i/lub hasło jest niepoprawne" -#: 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 "Niepoprawne polecania: \"%s\", nazwa: %s, hasło: %s" -#: 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 "PostgreSQL: Nazwa użytkownika i/lub hasło jest niepoprawne" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Ustaw nazwę administratora." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Ustaw hasło administratora." -#: 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 "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Sprawdź ponownie <a href='%s'>przewodniki instalacji</a>." -#: tags.php:194 +#: private/tags.php:194 #, php-format msgid "Could not find category \"%s\"" msgstr "Nie można odnaleźć kategorii \"%s\"" -#: template/functions.php:96 +#: private/template/functions.php:122 msgid "seconds ago" msgstr "sekund temu" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzinę temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "dziś" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "wczoraj" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "w zeszłym miesiącu" -#: template/functions.php:103 +#: private/template/functions.php:131 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" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "w zeszłym roku" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "lat temu" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Spowodowane przez:" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 830b2045a3fdd06dfbf99fa8ce8904dda511b6e3..057209ec7d48fa048302bcae55ad95e9e07da8bc 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-30 10:17-0400\n" -"PO-Revision-Date: 2013-09-30 12:15+0000\n" -"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\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" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,15 +159,15 @@ msgstr "Aktualizuj" msgid "Updated" msgstr "Zaktualizowano" -#: js/personal.js:221 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Wybierz zdjęcie profilu" -#: js/personal.js:266 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "Odszyfrowuje pliki... Proszę czekać, to może zająć jakiś czas." -#: js/personal.js:288 +#: js/personal.js:292 msgid "Saving..." msgstr "Zapisywanie..." @@ -343,46 +343,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Bezpieczeństwo" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Wymuś HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Proszę połącz się do twojego %s za pośrednictwem protokołu HTTPS, aby włączyć lub wyłączyć stosowanie protokołu SSL." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Logi" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Poziom logów" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Więcej" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Mniej" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Wersja" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index fc5af2df2130b7aeaf2827362eb0e49cfc6b4142..bc98ad8c4e68b170bfd52bc0b65801c6ea07f924 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:40+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,17 +27,17 @@ msgstr "Nie udało się wyczyścić mapowania." msgid "Failed to delete the server configuration" msgstr "Nie można usunąć konfiguracji serwera" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Konfiguracja jest prawidłowa i można ustanowić połączenie!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfiguracja jest prawidłowa, ale Bind nie. Sprawdź ustawienia serwera i poświadczenia." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 281471b1b940247f0e632b06152751020920ac4b..50ddb1288b2c057c19ca036843f854bd077afee4 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 16:40+0000\n" -"Last-Translator: Flávio Veras <flaviove@gmail.com>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,12 +19,17 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s compartilhou »%s« com você" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "Não foi possível enviar e-mail para os seguintes usuários: %s" + +#: ajax/share.php:327 msgid "group" msgstr "grupo" @@ -316,8 +321,8 @@ msgstr "O tipo de objeto não foi especificado." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Erro" @@ -337,126 +342,134 @@ msgstr "Compartilhados" msgid "Share" msgstr "Compartilhar" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Erro ao compartilhar" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Erro ao descompartilhar" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Erro ao mudar permissões" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartilhado com você e com o grupo {group} por {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Compartilhado com você por {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Compartilhar com" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Compartilhar com link" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Proteger com senha" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Senha" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Permitir upload público" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Enviar link por e-mail" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Enviar" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Definir data de expiração" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Compartilhar via e-mail:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Nenhuma pessoa encontrada" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Não é permitido re-compartilhar" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Compartilhado em {item} com {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Descompartilhar" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "notificar usuário por email" + +#: js/share.js:361 msgid "can edit" msgstr "pode editar" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "controle de acesso" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "criar" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "atualizar" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "remover" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "compartilhar" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "E-mail enviado" +#: js/share.js:729 +msgid "Warning" +msgstr "Aviso" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -493,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Você receberá um link para redefinir sua senha por e-mail." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nome de usuário" @@ -565,8 +578,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Olá,\n\napenas para você saber que %s compartilhou %s com você.\nVeja: %s\n\nAbraços!" +msgstr "Olá,\n\ngostaria que você soubesse que %s compartilhou %s com vecê.\nVeja isto: %s\n\n" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "O compartilhamento irá expirer em %s.\n\n" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "Saúde!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -619,48 +642,52 @@ msgstr "Para obter informações sobre como configurar corretamente o seu servid msgid "Create an <strong>admin account</strong>" msgstr "Criar uma <strong>conta de administrador</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avançado" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Configurar o banco de dados" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "será usado" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Usuário do banco de dados" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Senha do banco de dados" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Nome do banco de dados" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Espaço de tabela do banco de dados" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Host do banco de dados" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Concluir configuração" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "Finalizando ..." + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -684,19 +711,27 @@ msgstr "Se você não mudou a sua senha recentemente, a sua conta pode estar com msgid "Please change your password to secure your account again." msgstr "Por favor troque sua senha para tornar sua conta segura novamente." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Esqueceu sua senha?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "lembrar" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Fazer login" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Logins alternativos" @@ -704,8 +739,13 @@ msgstr "Logins alternativos" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Olá,<br><br>apenas para você saber que %s compartilhou %s com você.<br><a href=\"%s\">Veja: </a><br><br>Abraços!" +"href=\"%s\">View it!</a><br><br>" +msgstr "Olá,<br><br>só gostaria que você soubesse que %s compartilhou »%s« com você.<br><a href=\"%s\">Veja isto!</a><br><br" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "O compartilhamento irá expirar em %s.<br><br>" #: templates/update.php:3 #, php-format diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 1b491703bdd63ab43659d3e1dff79abf93821b85..b888c01d4ba9920cf03347dc79b2eea433d49eab 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-09-22 12:51-0400\n" -"PO-Revision-Date: 2013-09-20 16:40+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 17:40+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" @@ -122,7 +122,7 @@ msgstr "URL não pode ficar em branco" msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nome de pasta inválido. O uso do nome 'Compartilhado' é reservado ao ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Erro" @@ -166,13 +166,13 @@ msgstr "Substituído {old_name} por {new_name} " msgid "undo" msgstr "desfazer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n arquivo" @@ -210,31 +210,44 @@ msgstr "Seu armazenamento está cheio, arquivos não podem mais ser atualizados msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Seu armazenamento está quase cheio ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "App de encriptação está ativado, mas as chaves não estão inicializadas, por favor log-out e faça login novamente" + +#: 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 "Chave do App de Encriptação é inválida. Por favor, atualize sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados." + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Encriptação foi desabilitada mas seus arquivos continuam encriptados. Por favor vá a suas configurações pessoais para descriptar seus arquivos." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Erro movendo o arquivo" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nome" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Tamanho" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Modificado" @@ -295,49 +308,49 @@ msgstr "Pasta" msgid "From link" msgstr "Do link" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Arquivos apagados" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Você não possui permissão de escrita aqui." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Baixar" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Descompartilhar" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Excluir" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Arquivos sendo escaneados, por favor aguarde." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Scanning atual" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 43542c8f6f6c9cbb86c89476eb49aa6c46f006fa..58972c45907937fec15609e9677443f2608fe8ca 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"PO-Revision-Date: 2013-10-07 10: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" @@ -46,17 +46,24 @@ msgstr "Senha alterada com sucesso." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Não foi possível alterar a senha. Talvez a senha antiga não estava correta." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Senha de chave privada atualizada com sucesso." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "Aplicativo de criptografia não foi inicializado! Talvez o aplicativo de criptografia tenha sido reativado durante essa sessão. Por favor, tente fazer logoff e login novamente para inicializar o aplicativo de criptografia." + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -64,36 +71,30 @@ msgid "" "files." msgstr "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Requisitos não encontrados." -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Seguintes usuários não estão configurados para criptografia:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Salvando..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Sua chave privada não é válida! Talvez sua senha tenha sido mudada." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Você pode desbloquear sua chave privada nas suas" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "Ir diretamente para o seu" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "configurações pessoais." @@ -110,27 +111,35 @@ msgstr "Habilitar chave de recuperação (permite recuperar arquivos de usuário msgid "Recovery key password" msgstr "Senha da chave de recuperação" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "Repita Recuperação de senha da chave" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Habilitado" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Desabilitado" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Mudar a senha da chave de recuperação:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Senha antiga da chave de recuperação" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Nova senha da chave de recuperação" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "Repita Nova senha da chave de recuperação" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Trocar Senha" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 3b2ef25c158ba14a035550a8a7eba184b7b01493..52e3fe9e136c3e46803e0f1a63bbbea09712dbc1 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-09-10 10:41-0400\n" -"PO-Revision-Date: 2013-09-10 13:30+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -44,27 +44,27 @@ msgstr "excluir arquivo permanentemente" msgid "Delete permanently" msgstr "Excluir permanentemente" -#: js/trash.js:184 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nome" -#: js/trash.js:185 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Excluído" -#: js/trash.js:193 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n pastas" -#: js/trash.js:199 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n arquivo" msgstr[1] "%n arquivos" -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "restaurado" @@ -72,11 +72,11 @@ msgstr "restaurado" msgid "Nothing in here. Your trash bin is empty!" msgstr "Nada aqui. Sua lixeira está vazia!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Restaurar" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Excluir" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 315979949498424652cdeffe3f1f7bf856922fcd..e8b2c2b05d399979afb43566364dcf3e9c462c09 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/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-09-18 11:47-0400\n" -"PO-Revision-Date: 2013-09-17 13:05+0000\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" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -18,318 +18,325 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "O nome do aplicativo não foi especificado." -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Ajuda" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Pessoal" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Ajustes" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Usuários" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falha na atualização de \"%s\"." -#: avatar.php:56 +#: 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" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Tipo de arquivo desconhecido" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Imagem inválida" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "serviços web sob seu controle" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "não pode abrir \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "Download ZIP está desligado." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Arquivos precisam ser baixados um de cada vez." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Voltar para Arquivos" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Arquivos selecionados são muito grandes para gerar arquivo zip." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Baixe os arquivos em pedaços menores, separadamente ou solicite educadamente ao seu administrador." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Nenhuma fonte foi especificada enquanto instalava o aplicativo" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Nenhuma href foi especificada enquanto instalava o aplicativo de httml" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Nenhum caminho foi especificado enquanto instalava o aplicativo do arquivo local" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Arquivos do tipo %s não são suportados" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Falha para abrir o arquivo enquanto instalava o aplicativo" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "O aplicativo não fornece um arquivo info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "O aplicativo não pode ser instalado por causa do código não permitido no Aplivativo" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "O aplicativo não pode ser instalado porque não é compatível com esta versão do ownCloud" -#: 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 "O aplicativo não pode ser instalado porque ele contém a marca <shipped>verdadeiro</shipped> que não é permitido para aplicações não embarcadas" -#: 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 "O aplicativo não pode ser instalado porque a versão em info.xml /versão não é a mesma que a versão relatada na App Store" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "Diretório App já existe" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Não é possível criar pasta app. Corrija as permissões. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Aplicação não está habilitada" -#: 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 "Erro de autenticação" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirou. Por favor recarregue a página." -#: 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 "Arquivos" -#: 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 "Texto" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Imagens" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s insira o nome de usuário do banco de dados." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s insira o nome do banco de dados." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s você não pode usar pontos no nome do banco de dados" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de usuário e/ou senha MS SQL inválido(s): %s" -#: 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 "Você precisa inserir uma conta existente ou o administrador." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Nome de usuário e/ou senha MySQL inválido(s)" -#: 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 "Erro no BD: \"%s\"" -#: 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 "Comando ofensivo era: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "O usuário MySQL '%s'@'localhost' já existe." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Derrubar este usuário do MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Usuário MySQL '%s'@'%%' já existe" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Derrube este usuário do MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Conexão Oracle não pode ser estabelecida" -#: 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 "Nome de usuário e/ou senha Oracle inválido(s)" -#: 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 "Comando ofensivo era: \"%s\", nome: %s, senha: %s" -#: 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 "Nome de usuário e/ou senha PostgreSQL inválido(s)" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Defina um nome de usuário de administrador." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Defina uma senha de administrador." -#: 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 "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece estar quebrada." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Por favor, confira os <a href='%s'>guias de instalação</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Impossível localizar categoria \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "segundos atrás" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "ha %n minutos" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "ha %n horas" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "hoje" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "ontem" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "ha %n dias" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "último mês" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "ha %n meses" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "último ano" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "anos atrás" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Causados por:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Impossível localizar categoria \"%s\"" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index c8608696d6129c5450f2d0bd65dba1e64b8adc39..4945009eba1b097600d1c6159f5cd38fc8ab1239 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 17:40+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" @@ -119,11 +119,11 @@ msgstr "Impossível modificar senha" msgid "Update to {appversion}" msgstr "Atualizar para {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Desabilitar" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Habilitar" @@ -131,43 +131,43 @@ msgstr "Habilitar" msgid "Please wait...." msgstr "Por favor, aguarde..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Erro enquanto desabilitava o aplicativo" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Erro enquanto habilitava o aplicativo" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Atualizando..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Erro ao atualizar aplicativo" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Erro" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Atualizar" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Atualizado" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Selecione uma imagem para o perfil" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decriptando arquivos... Por favor aguarde, isso pode levar algum tempo." -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Salvando..." @@ -343,46 +343,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Permitir que usuários compartilhem somente com usuários em seus grupos" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "Permitir notificação por email" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "Permitir usuários enviar notificação por email de arquivos compartilhados" + +#: templates/admin.php:178 msgid "Security" msgstr "Segurança" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Obrigar os clientes que se conectem a %s através de uma conexão criptografada." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, se conectar ao seu %s via HTTPS para forçar ativar ou desativar SSL." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Registro" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Nível de registro" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Mais" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Menos" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Versão" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index e54db81dd8330336a989fc41099871de8737fd0b..8893e2eddea7bc1d36d6af79eb53e6a5e3a9e670 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -27,17 +27,17 @@ msgstr "Falha ao limpar os mapeamentos." msgid "Failed to delete the server configuration" msgstr "Falha ao deletar a configuração do servidor" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "A configuração é válida e a conexão foi estabelecida!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "A configuração é válida, mas o Bind falhou. Confira as configurações do servidor e as credenciais." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 974950a164f9325612c3b96425ccfc6257119a6c..f0d852363984906bc7b17028c9604a2e83eb5695 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Bruno Martins <bruno@bmartins.eu>, 2013 +# Bruno Martins <brunomomartins@gmail.com>, 2013 # bmgmatias <bmgmatias@gmail.com>, 2013 # Mouxy <daniel@mouxy.net>, 2013 # Gontxi <goncalo.baiao@gmail.com>, 2013 @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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" @@ -22,12 +22,17 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s partilhado »%s« contigo" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "grupo" @@ -319,8 +324,8 @@ msgstr "O tipo de objecto não foi especificado" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Erro" @@ -340,126 +345,134 @@ msgstr "Partilhado" msgid "Share" msgstr "Partilhar" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Erro ao partilhar" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Erro ao deixar de partilhar" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Erro ao mudar permissões" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Partilhado consigo e com o grupo {group} por {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Partilhado consigo por {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Partilhar com" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Partilhar com link" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Proteger com palavra-passe" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Password" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Permitir Envios Públicos" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Enviar o link por e-mail" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Enviar" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Especificar data de expiração" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Partilhar via email:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Não foi encontrado ninguém" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Não é permitido partilhar de novo" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Partilhado em {item} com {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "pode editar" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "Controlo de acesso" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "criar" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "actualizar" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "apagar" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "partilhar" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "E-mail enviado" +#: js/share.js:729 +msgid "Warning" +msgstr "Aviso" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -496,7 +509,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Vai receber um endereço para repor a sua password" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nome de utilizador" @@ -568,8 +581,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Olá,\n\nApenas para lhe informar que %s partilhou %s consigo.\nVeja-o: %s\n\nCumprimentos!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -622,48 +645,52 @@ msgstr "Para obter informações de como configurar correctamente o servidor, ve msgid "Create an <strong>admin account</strong>" msgstr "Criar uma <strong>conta administrativa</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avançado" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Configure a base de dados" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "vai ser usada" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Utilizador da base de dados" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Password da base de dados" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Nome da base de dados" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Tablespace da base de dados" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Anfitrião da base de dados" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Acabar instalação" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -687,19 +714,27 @@ msgstr "Se não mudou a sua palavra-passe recentemente, a sua conta pode ter sid msgid "Please change your password to secure your account again." msgstr "Por favor mude a sua palavra-passe para assegurar a sua conta de novo." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Esqueceu-se da sua password?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "lembrar" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Entrar" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Contas de acesso alternativas" @@ -707,8 +742,13 @@ msgstr "Contas de acesso alternativas" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Olá,<br><br>Apenas para lhe informar que %s partilhou »%s« consigo.<br><a href=\"%s\">Consulte-o aqui!</a><br><br>Cumprimentos!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 7a35987288855c2f70278e21c25cc1b773a23f60..c666456742a53fd276b66f9745fab15aceece2db 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -89,7 +89,7 @@ msgstr "" msgid "Invalid directory." msgstr "Directório Inválido" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Ficheiros" @@ -122,7 +122,7 @@ msgstr "O URL não pode estar vazio." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nome da pasta inválido. Palavra 'Shared' é reservado pela ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Erro" @@ -166,13 +166,13 @@ msgstr "substituido {new_name} por {old_name}" msgid "undo" msgstr "desfazer" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" @@ -210,31 +210,44 @@ msgstr "O seu armazenamento está cheio, os ficheiros não podem ser sincronizad msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nome" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Tamanho" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Modificado" @@ -295,49 +308,49 @@ msgstr "Pasta" msgid "From link" msgstr "Da ligação" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Não tem permissões de escrita aqui." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Transferir" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Deixar de partilhar" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estão a ser analisados, por favor aguarde." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index dd0f5f9b92797f39c0e08b9a9b795c409a215b78..d3d1dddf322d953408879e39b2b79464532bbccd 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -46,17 +46,24 @@ msgstr "Password alterada com sucesso." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Não foi possivel alterar a password. Possivelmente a password antiga não está correcta." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Não foi possível alterar a chave. Possivelmente a password antiga não está correcta." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -64,36 +71,30 @@ msgid "" "files." msgstr "Chave privada não é válida! Provavelmente senha foi alterada fora do sistema ownCloud (exemplo, o diretório corporativo). Pode atualizar password da chave privada em configurações personalizadas para recuperar o acesso aos seus arquivos encriptados." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Faltam alguns requisitos." -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "A guardar..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "configurações personalizadas " @@ -110,27 +111,35 @@ msgstr "Active a chave de recuperação (permite recuperar os ficheiros no caso msgid "Recovery key password" msgstr "Chave de recuperação da conta" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Activado" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Desactivado" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Alterar a chave de recuperação:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Chave anterior de recuperação da conta" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Nova chave de recuperação da conta" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Mudar a Password" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 33b1d070b50638f66c1aba5ef7f8e55cc7dabb7f..4c13e6b3158fd7f936ea05b5f853ea43e20105f7 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -18,7 +18,7 @@ msgstr "" "Language: pt_PT\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 autorizado" @@ -26,7 +26,7 @@ msgstr "Acesso autorizado" msgid "Error configuring Dropbox storage" msgstr "Erro ao configurar o armazenamento do Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Conceder acesso" @@ -34,24 +34,24 @@ msgstr "Conceder acesso" msgid "Please provide a valid Dropbox app key and secret." msgstr "Por favor forneça uma \"app key\" e \"secret\" do Dropbox válidas." -#: 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 o 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>Atenção:</b> O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar." -#: 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 FTP no PHP não está activate ou instalado. Não é possível montar as partilhas FTP. Peça ao seu administrador para instalar." -#: 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_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 64a86f404cfcf1212a92765ede6f108ae4c3b763..8b46018dda5c76a1481255c8649beb62dd3c35d3 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-09-01 13:27-0400\n" -"PO-Revision-Date: 2013-08-31 14:50+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: Helder Meneses <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" @@ -44,27 +44,27 @@ msgstr "Eliminar permanentemente o(s) ficheiro(s)" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/trash.js:184 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Nome" -#: js/trash.js:185 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Apagado" -#: js/trash.js:193 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/trash.js:199 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "Restaurado" @@ -72,11 +72,11 @@ msgstr "Restaurado" msgid "Nothing in here. Your trash bin is empty!" msgstr "Não hà ficheiros. O lixo está vazio!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Restaurar" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 937940f95720b21d5619814c5ffd34e914ea3946..a33b04b63e02ee333160a6ea7adeb375b9532e6f 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-19 18:40+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -18,318 +18,325 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Ajuda" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Pessoal" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Configurações" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Utilizadores" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "A actualização \"%s\" falhou." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Ficheiro desconhecido" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Imagem inválida" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "serviços web sob o seu controlo" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Não foi possível abrir \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "Descarregamento em ZIP está desligado." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros precisam de ser descarregados um por um." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Voltar a Ficheiros" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Descarregue os ficheiros em partes menores, separados ou peça gentilmente ao seu administrador." -#: 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 "A aplicação não está activada" -#: 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 "Erro na autenticação" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "O token expirou. Por favor recarregue a página." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Ficheiros" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Texto" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Imagens" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s introduza o nome de utilizador da base de dados" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s introduza o nome da base de dados" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s não é permitido utilizar pontos (.) no nome da base de dados" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de utilizador/password do MySQL é inválido: %s" -#: 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 "Precisa de introduzir uma conta existente ou de administrador" -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Nome de utilizador/password do MySQL inválida" -#: 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 "Erro na BD: \"%s\"" -#: 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 "O comando gerador de erro foi: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "O utilizador '%s'@'localhost' do MySQL já existe." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Eliminar este utilizador do MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "O utilizador '%s'@'%%' do MySQL já existe" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Eliminar este utilizador do MySQL" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Não foi possível estabelecer a ligação Oracle" -#: 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 "Nome de utilizador/password do Oracle inválida" -#: 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 "O comando gerador de erro foi: \"%s\", nome: %s, password: %s" -#: 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 "Nome de utilizador/password do PostgreSQL inválido" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Definir um nome de utilizador de administrador" -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Definiar uma password de administrador" -#: 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 "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Por favor verifique <a href='%s'>installation guides</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Não foi encontrado a categoria \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "Minutos atrás" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutos atrás" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n horas atrás" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "hoje" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "ontem" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dias atrás" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "ultímo mês" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n meses atrás" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "ano passado" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "anos atrás" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Causado por:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Não foi encontrado a categoria \"%s\"" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index f171929bbc34639fa82f7bd71ce00cd7c6978e55..c2dd6570065cd4ac9f0063c5151a8acc1315a98f 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Actualizar para a versão {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Activar" @@ -133,43 +133,43 @@ msgstr "Activar" msgid "Please wait...." msgstr "Por favor aguarde..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Erro enquanto desactivava a aplicação" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Erro enquanto activava a aplicação" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "A Actualizar..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Erro enquanto actualizava a aplicação" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Erro" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Actualizar" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Actualizado" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 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:287 +#: js/personal.js:292 msgid "Saving..." msgstr "A guardar..." @@ -345,46 +345,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Segurança" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forçar os clientes a ligar a %s através de uma ligação encriptada" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor ligue-se a %s através de uma ligação HTTPS para ligar/desligar o uso de ligação por SSL" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Registo" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Nível do registo" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Mais" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Menos" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Versão" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 03ef1f30c99aebfab54f05000f295823131c6509..b8a52a7e0eb10d35a9b341f71a11d32bc678feda 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Bruno Martins <bruno@bmartins.eu>, 2013 +# Bruno Martins <brunomomartins@gmail.com>, 2013 # Mouxy <daniel@mouxy.net>, 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-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -28,17 +28,17 @@ msgstr "Falhou a limpar os mapas" msgid "Failed to delete the server configuration" msgstr "Erro ao eliminar as configurações do servidor" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "A configuração está correcta e foi possível estabelecer a ligação!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "A configuração está correcta, mas não foi possível estabelecer o \"laço\", por favor, verifique as configurações do servidor e as credenciais." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 5e6a50773fd0744115f8a23f048df2dba98d0446..2ec3d7e6620cb7ec3e130e5695240b1b4e0a91e2 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-21 20:00+0000\n" -"Last-Translator: corneliu.e <corneliueva@yahoo.com>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,12 +21,17 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s Partajat »%s« cu tine de" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "grup" @@ -323,8 +328,8 @@ msgstr "Tipul obiectului nu este specificat." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Eroare" @@ -344,126 +349,134 @@ msgstr "Partajat" msgid "Share" msgstr "Partajează" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Eroare la partajare" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Eroare la anularea partajării" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Eroare la modificarea permisiunilor" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Distribuie cu tine si grupul {group} de {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Distribuie cu tine de {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Partajat cu" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Partajare cu legătură" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Protejare cu parolă" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Parolă" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Permiteţi încărcarea publică." -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Expediază legătura prin poșta electronică" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Expediază" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Specifică data expirării" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Data expirării" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Distribuie prin email:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Nici o persoană găsită" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Repartajarea nu este permisă" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Distribuie in {item} si {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Anulare partajare" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "poate edita" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "control acces" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "creare" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "actualizare" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "ștergere" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "partajare" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Mesajul a fost expediat" +#: js/share.js:729 +msgid "Warning" +msgstr "Atenție" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -500,7 +513,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Vei primi un mesaj prin care vei putea reseta parola via email." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Nume utilizator" @@ -572,8 +585,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Salutare,\n\nVă aduc la cunoștință că %s a partajat %s cu tine.\nAccesează la: %s\n\nNumai bine!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -626,48 +649,52 @@ msgstr "Pentru informații despre cum să configurezi serverul, vezi <a href=\"% msgid "Create an <strong>admin account</strong>" msgstr "Crează un <strong>cont de administrator</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avansat" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Director date" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Configurează baza de date" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "vor fi folosite" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Utilizatorul bazei de date" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Parola bazei de date" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Numele bazei de date" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Tabela de spațiu a bazei de date" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Bază date" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Finalizează instalarea" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -691,19 +718,27 @@ msgstr "Dacă nu ți-ai schimbat parola recent, contul tău ar putea fi compromi msgid "Please change your password to secure your account again." msgstr "Te rog schimbă-ți parola pentru a-ți securiza din nou contul." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Ai uitat parola?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "amintește" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Autentificare" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Conectări alternative" @@ -711,8 +746,13 @@ msgstr "Conectări alternative" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Salutare, <br><br>Vă aduc la cunoștință că %s a partajat %s cu tine.<br><a href=\"%s\">Accesează-l!</a><br><br>Numai bine!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 85ce986ea03d688e71cdadcde0e42befc8d28d29..7e5f1c083b93dac0fb10ee5f7f6261bc614cccff 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/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-09-22 12:51-0400\n" -"PO-Revision-Date: 2013-09-21 16:50+0000\n" -"Last-Translator: corneliu.e <corneliueva@yahoo.com>\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" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -124,7 +124,7 @@ msgstr "Adresa URL nu poate fi golita" msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nume de dosar invalid. Utilizarea 'Shared' e rezervată de ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Eroare" @@ -168,14 +168,14 @@ msgstr "{new_name} inlocuit cu {old_name}" msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n director" msgstr[1] "%n directoare" msgstr[2] "%n directoare" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fișier" @@ -215,31 +215,44 @@ msgstr "Spatiul de stocare este plin, fisierele nu mai pot fi actualizate sau si msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Spatiul de stocare este aproape plin {spatiu folosit}%" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "criptarea a fost disactivata dar fisierele sant inca criptate.va rog intrati in setarile personale pentru a decripta fisierele" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "in curs de descarcare. Aceasta poate să dureze ceva timp dacă fișierele sunt mari." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Eroare la mutarea fișierului" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Nume" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Dimensiune" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Modificat" @@ -300,49 +313,49 @@ msgstr "Dosar" msgid "From link" msgstr "de la adresa" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Sterge fisierele" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Nu ai permisiunea de a scrie aici." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Nimic aici. Încarcă ceva!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Descarcă" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Anulare" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Șterge" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Fișierul încărcat este prea mare" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Fișierele sunt scanate, asteptati va rog" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "În curs de scanare" diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index 65bcf49b446d8e237f15e17f0e998455cff311d0..6b54b6bee88b98af0f980db797ab40926b7f39c7 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Se salvează..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 3d7a2b5f8c07c2022be0c6ee1351e2a0cd0e47d7..cd50fa140dc53d51acaf7e7404308ea1d2772f42 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2: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 "Acces permis" @@ -25,7 +25,7 @@ msgstr "Acces permis" msgid "Error configuring Dropbox storage" msgstr "Eroare la configurarea mediului de stocare Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Permite accesul" @@ -33,24 +33,24 @@ msgstr "Permite accesul" msgid "Please provide a valid Dropbox app key and secret." msgstr "Prezintă te rog o cheie de Dropbox validă și parola" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Eroare la configurarea mediului de stocare 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>Atenție:</b> \"smbclient\" nu este instalat. Montarea mediilor CIFS/SMB partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleaze." -#: 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>Atenție:</b> suportul pentru FTP în PHP nu este activat sau instalat. Montarea mediilor FPT partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleze." -#: 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/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 916fba8a41d0e41e02ea76c59221505c321c3751..e8bdca36ee95a687f31034ab6956a952dc768e67 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-09-22 12:54-0400\n" -"PO-Revision-Date: 2013-09-21 16:50+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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/lib.po b/l10n/ro/lib.po index 8f288b515edc0bcffd8a121ea26292fc840efbab..65695821ebb14922774b6725fc1b90aff79e39e7 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-09-22 12:56-0400\n" -"PO-Revision-Date: 2013-09-21 20:00+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -18,322 +18,329 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Ajutor" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personal" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Setări" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Utilizatori" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Tip fișier necunoscut" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "Imagine invalidă" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "servicii web controlate de tine" -#: 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 "Descărcarea ZIP este dezactivată." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Fișierele trebuie descărcate unul câte unul." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Înapoi la fișiere" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Fișierele selectate sunt prea mari pentru a genera un fișier zip." -#: 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 "Aplicația nu este activată" -#: 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 "Eroare la autentificare" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirat. Te rugăm să reîncarci pagina." -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fișiere" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Text" -#: search/provider/file.php:30 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Imagini" -#: 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 "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Vă rugăm să verificați <a href='%s'>ghiduri de instalare</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Cloud nu a gasit categoria \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "secunde în urmă" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n minute" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n ore" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "astăzi" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "ieri" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n zile" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "ultima lună" -#: 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 "ultimul an" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "ani în urmă" -#: 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 "Cloud nu a gasit categoria \"%s\"" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 6f79f4b1e0580d4c6ee9eeb9c4dd45a7e76aba39..2cf33497eef639c69ef5f6c83eda6efde79c089b 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:56-0400\n" -"PO-Revision-Date: 2013-09-21 20:00+0000\n" -"Last-Translator: corneliu.e <corneliueva@yahoo.com>\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" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -119,11 +119,11 @@ msgstr "Imposibil de schimbat parola" msgid "Update to {appversion}" msgstr "Actualizat la {versiuneaaplicaţiei}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Dezactivați" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Activare" @@ -131,43 +131,43 @@ msgstr "Activare" msgid "Please wait...." msgstr "Aşteptaţi vă rog...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Actualizare în curs...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Eroare în timpul actualizării aplicaţiei" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Eroare" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Actualizare" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Actualizat" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Se salvează..." @@ -343,46 +343,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același grup" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Securitate" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Nivel jurnal" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Mai mult" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index e97322cda88a074bc43bdd4ec62a52557f7c90b1..239ee5cccc99d7b8c3d805c3a831e25b8454b1d3 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/ru/core.po b/l10n/ru/core.po index f5720110be1a6c16127e472794f45dcd618db559..321b632ae049f91713a64bab3ff41d3dcbf4ea0a 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -8,6 +8,7 @@ # lord93 <lordakryl@gmail.com>, 2013 # foool <andrglad@mail.ru>, 2013 # jekader <jekader@gmail.com>, 2013 +# stushev <s-tushev@ya.ru>, 2013 # eurekafag <rkfg@rkfg.me>, 2013 # sk.avenger <sk.avenger@adygnet.ru>, 2013 # Victor Bravo <>, 2013 @@ -18,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-22 12:00+0000\n" -"Last-Translator: jekader <jekader@gmail.com>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <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" @@ -28,12 +29,17 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s поделился »%s« с вами" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "группа" @@ -330,8 +336,8 @@ msgstr "Тип объекта не указан" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Ошибка" @@ -351,126 +357,134 @@ msgstr "Общие" msgid "Share" msgstr "Открыть доступ" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Ошибка при закрытии доступа" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Ошибка при смене разрешений" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} открыл доступ для Вас и группы {group} " -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "{owner} открыл доступ для Вас" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Поделиться с" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Поделиться с ссылкой" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Защитить паролем" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Пароль" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Разрешить открытую загрузку" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Почтовая ссылка на персону" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Отправить" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Установить срок доступа" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Дата окончания" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Поделится через электронную почту:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Ни один человек не найден" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Общий доступ не разрешен" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Общий доступ к {item} с {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Закрыть общий доступ" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "может редактировать" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "контроль доступа" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "создать" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "обновить" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "удалить" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "открыть доступ" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Письмо отправлено" +#: js/share.js:729 +msgid "Warning" +msgstr "Предупреждение" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -507,7 +521,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "На ваш адрес Email выслана ссылка для сброса пароля." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Имя пользователя" @@ -557,7 +571,7 @@ msgstr "Приложения" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "Админпанель" #: strings.php:9 msgid "Help" @@ -579,8 +593,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Приветствую,⏎\n⏎\nпросто даю знать, что %s поделился %s с вами.⏎\nПосмотреть: %s⏎\n⏎\nУдачи!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -633,48 +657,52 @@ msgstr "Для информации, как правильно настроит msgid "Create an <strong>admin account</strong>" msgstr "Создать <strong>учётную запись администратора</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Дополнительно" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Директория с данными" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Настройка базы данных" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "будет использовано" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Пользователь базы данных" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Пароль базы данных" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Название базы данных" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Табличое пространство базы данных" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Хост базы данных" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Завершить установку" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -698,19 +726,27 @@ msgstr "Если Вы недавно не меняли свой пароль, т msgid "Please change your password to secure your account again." msgstr "Пожалуйста, смените пароль, чтобы обезопасить свою учетную запись." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "запомнить" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Войти" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Альтернативные имена пользователя" @@ -718,8 +754,13 @@ msgstr "Альтернативные имена пользователя" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Приветствую,<br><br>просто даю знать, что %s поделился »%s« с вами.<br><a href=\"%s\">Посмотреть!</a><br><br>Удачи!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 114807f53033c5a5b3422ebee69b85944112615e..9c2d7f4428a508d02dcf447b057d99689984124c 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:51-0400\n" -"PO-Revision-Date: 2013-09-21 12:30+0000\n" -"Last-Translator: jekader <jekader@gmail.com>\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" "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" @@ -126,7 +126,7 @@ msgstr "Ссылка не может быть пустой." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Ошибка" @@ -170,14 +170,14 @@ msgstr "заменено {new_name} на {old_name}" msgid "undo" msgstr "отмена" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n папка" msgstr[1] "%n папки" msgstr[2] "%n папок" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" @@ -217,31 +217,44 @@ msgstr "Ваше дисковое пространство полностью з msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше хранилище почти заполнено ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Шифрование было отключено, но ваши файлы все еще зашифрованы. Пожалуйста, зайдите на страницу персональных настроек для того, чтобы расшифровать ваши файлы." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Загрузка началась. Это может потребовать много времени, если файл большого размера." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "Ошибка при перемещении файла" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Имя" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Размер" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Изменён" @@ -302,49 +315,49 @@ msgstr "Папка" msgid "From link" msgstr "Из ссылки" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Удалённые файлы" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "У вас нет разрешений на запись здесь." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Скачать" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Закрыть общий доступ" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Удалить" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Файл слишком велик" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файлы, которые вы пытаетесь загрузить, превышают лимит для файлов на этом сервере." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Подождите, файлы сканируются." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Текущее сканирование" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index b3f6c241cf6ecb8370c2c79d2d4701aaf7ef632c..a991edf46729756fab14b01496b391bac20c5e04 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/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-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: eurekafag <rkfg@rkfg.me>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <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" @@ -49,17 +49,24 @@ msgstr "Пароль изменен удачно." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Невозможно изменить пароль. Возможно старый пароль не был верен." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Пароль секретного ключа успешно обновлён." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Невозможно обновить пароль от секретного ключа. Возможно, старый пароль указан неверно." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -67,36 +74,30 @@ msgid "" "files." msgstr "Ваш секретный ключ не действителен! Вероятно, ваш пароль был изменен вне системы OwnCloud (например, корпоративный каталог). Вы можете обновить секретный ключ в личных настройках на странице восстановления доступа к зашифрованным файлам. " -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Требования отсутствуют." -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Пожалуйста, убедитесь, что версия PHP 5.3.3 или новее, а также, что OpenSSL и соответствующее расширение PHP включены и правильно настроены. На данный момент приложение шифрования отключено." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Для следующих пользователей шифрование не настроено:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Сохранение..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Секретный ключ недействителен! Возможно, Ваш пароль был изменён в другой программе." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Вы можете разблокировать закрытый ключ в своём " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "персональные настройки" @@ -113,27 +114,35 @@ msgstr "Включить ключ восстановления (позволяе msgid "Recovery key password" msgstr "Пароль для ключа восстановления" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Включено" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Отключено" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Сменить пароль для ключа восстановления:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Старый пароль для ключа восстановления" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Новый пароль для ключа восстановления" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Изменить пароль" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index bad6e0f93060176b4286504ec3411e73585de62d..33d50b6b3f4871735580ffbdf3ddfe59301c86a6 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/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 "Доступ предоставлен" @@ -25,7 +25,7 @@ msgstr "Доступ предоставлен" msgid "Error configuring Dropbox storage" msgstr "Ошибка при настройке хранилища Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Предоставление доступа" @@ -33,24 +33,24 @@ msgstr "Предоставление доступа" msgid "Please provide a valid Dropbox app key and secret." msgstr "Пожалуйста, предоставьте действующий ключ Dropbox и пароль." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Ошибка при настройке хранилища 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>Внимание:</b> \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." -#: 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>Внимание:</b> Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить." -#: 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/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index da4605cba1ba3ac3aed468ad0e1de588aa6302f2..093a2f1502ca8604596aac52ee601b13b34bbbe5 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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-17 10:40+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -28,45 +28,45 @@ msgstr "%s не может быть удалён навсегда" msgid "Couldn't restore %s" msgstr "%s не может быть восстановлен" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "выполнить операцию восстановления" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Ошибка" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "удалить файл навсегда" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Удалено навсегда" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Имя" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Удалён" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "%n папок" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "%n файлов" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "восстановлен" @@ -74,11 +74,11 @@ msgstr "восстановлен" msgid "Nothing in here. Your trash bin is empty!" msgstr "Здесь ничего нет. Ваша корзина пуста!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Восстановить" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Удалить" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 35f307084051d16b0eaa04f705cb8dfb130e1078..4d5a6d252cc95732558167f4d2ece9c3436c23ee 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.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-09-22 12:56-0400\n" -"PO-Revision-Date: 2013-09-21 11:50+0000\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" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -23,322 +23,329 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:239 +#: private/app.php:237 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Приложение \"%s\" нельзя установить, так как оно не совместимо с текущей версией ownCloud." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "Не выбрано имя приложения" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Помощь" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Личное" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Конфигурация" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Пользователи" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Не смог обновить \"%s\"." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "Пользовательские картинки профиля ещё не поддерживают шифрование" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "Неизвестный тип файла" -#: avatar.php:69 +#: private/avatar.php:69 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 "не могу открыть \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "ZIP-скачивание отключено." -#: 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 "Выбранные файлы слишком велики, чтобы создать zip файл." -#: 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 "Не указан атрибут href при установке приложения через http" -#: 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 "Архивы %s не поддерживаются" -#: 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 "Приложение не имеет файла info.xml" -#: 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 "Приложение невозможно установить. Не совместимо с текущей версией ownCloud." -#: 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 "Приложение невозможно установить. Оно содержит параметр <shipped>true</shipped> который не допустим для приложений, не входящих в поставку." -#: 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 "Приложение невозможно установить. Версия в info.xml/version не совпадает с версией заявленной в магазине приложений" -#: 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 "Не удалось создать директорию. Исправьте права доступа. %s" -#: 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:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Файлы" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Текст" -#: search/provider/file.php:30 +#: 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 "%s введите имя пользователя базы данных." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s введите имя базы данных." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s Вы не можете использовать точки в имени базы данных" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Имя пользователя и/или пароль MS SQL не подходит: %s" -#: 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 "Неверное имя пользователя и/или пароль MySQL" -#: 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 "Ошибка БД: \"%s\"" -#: 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 "Вызываемая команда была: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Пользователь MySQL '%s'@'localhost' уже существует." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Удалить этого пользователя из MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Пользователь MySQL '%s'@'%%' уже существует" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Удалить этого пользователя из MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "соединение с Oracle не может быть установлено" -#: 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 "Неверное имя пользователя и/или пароль Oracle" -#: 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 "Вызываемая команда была: \"%s\", имя: %s, пароль: %s" -#: 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 "Неверное имя пользователя и/или пароль PostgreSQL" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Установить имя пользователя для admin." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "становит пароль для admin." -#: 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 "Ваш веб сервер до сих пор не настроен правильно для возможности синхронизации файлов, похоже что проблема в неисправности интерфейса WebDAV." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Пожалуйста, дважды просмотрите <a href='%s'>инструкции по установке</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Категория \"%s\" не найдена" + +#: 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] "%n минута назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: 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] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: 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] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: 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 "Категория \"%s\" не найдена" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 94e073154dff9a0a1a5b33ec0135711c2aab585d..48ee583afd7f21d01452a42290c66687a2376842 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:56-0400\n" -"PO-Revision-Date: 2013-09-21 11:20+0000\n" -"Last-Translator: jekader <jekader@gmail.com>\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" "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" @@ -126,11 +126,11 @@ msgstr "Невозможно изменить пароль" msgid "Update to {appversion}" msgstr "Обновить до {версия приложения}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Выключить" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Включить" @@ -138,43 +138,43 @@ msgstr "Включить" msgid "Please wait...." msgstr "Подождите..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Ошибка отключения приложения" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Ошибка включения приложения" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Обновление..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Ошибка при обновлении приложения" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Ошибка" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Обновить" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Обновлено" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Выберите картинку профиля" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "Расшифровка файлов... Пожалуйста, подождите, это может занять некоторое время." -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Сохранение..." @@ -350,46 +350,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Разрешить пользователям делать общий доступ только для пользователей их групп" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Безопасность" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Принудить к HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Принудить клиентов подключаться к %s через шифрованное соединение." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить принудительное SSL." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Лог" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Уровень лога" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Больше" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Меньше" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Версия" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 68e53bc41e1371e2d0c7f45f50e313897094be40..c89b78bf54c3d619bb6db020e7f00db61b295560 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:54-0400\n" -"PO-Revision-Date: 2013-09-21 11:40+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: jekader <jekader@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -30,17 +30,17 @@ msgstr "Не удалось очистить соотвествия." msgid "Failed to delete the server configuration" msgstr "Не удалось удалить конфигурацию сервера" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Конфигурация правильная и подключение может быть установлено!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Конфигурация верна, но операция подключения завершилась неудачно. Пожалуйста, проверьте настройки сервера и учетные данные." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index e0d22e9b2b2cf6288a64ea427b6fcd6770674aae..97b9ea909ebaa4d86d3b803b1c2abdd8e405d3c1 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "කණ්ඩායම" @@ -314,8 +319,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "දෝෂයක්" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "බෙදාගන්න" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "යොමුවක් මඟින් බෙදාගන්න" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "මුර පදයකින් ආරක්ශාකරන්න" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "මුර පදය" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "කල් ඉකුත් විමේ දිනය දමන්න" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "කල් ඉකුත් විමේ දිනය" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "විද්යුත් තැපෑල මඟින් බෙදාගන්න: " -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "නොබෙදු" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "සංස්කරණය කළ හැක" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "ප්රවේශ පාලනය" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "සදන්න" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "යාවත්කාලීන කරන්න" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "මකන්න" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "අවවාදය" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "ඔබගේ මුරපදය ප්රත්යාරම්භ කිරීම සඳහා යොමුව විද්යුත් තැපෑලෙන් ලැබෙනු ඇත" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "පරිශීලක නම" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "දියුණු/උසස්" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "දත්ත ෆෝල්ඩරය" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "දත්ත සමුදාය හැඩගැසීම" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "භාවිතා වනු ඇත" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "දත්තගබඩා භාවිතාකරු" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "දත්තගබඩාවේ මුරපදය" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "දත්තගබඩාවේ නම" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "දත්තගබඩා සේවාදායකයා" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "ස්ථාපනය කිරීම අවසන් කරන්න" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "මුරපදය අමතකද?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "මතක තබාගන්න" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "ප්රවේශවන්න" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 6a62c6c1ea15ed622a37e7932379963fada6d118..b58a44be1fffcbd8b2dd37915d2fd1627fd61007 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ගොනු" @@ -119,7 +119,7 @@ msgstr "යොමුව හිස් විය නොහැක" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "දෝෂයක්" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "නිෂ්ප්රභ කරන්න" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "නම" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "ප්රමාණය" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "වෙනස් කළ" @@ -292,49 +305,49 @@ msgstr "ෆෝල්ඩරය" msgid "From link" msgstr "යොමුවෙන්" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "බාන්න" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "නොබෙදු" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "මකා දමන්න" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "උඩුගත කිරීම විශාල වැඩිය" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "වර්තමාන පරික්ෂාව" diff --git a/l10n/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index 380ffe03e8cc229474dad173f182aca8c590ed72..2e754e8ef116ad64603877baa0c790730e4cb240 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 84135df646df17a8b5367a8f0207414b9a705c75..741ba55b3e10c5c544ea7837d01e59b59c574819 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <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,7 +17,7 @@ msgstr "" "Language: si_LK\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 "පිවිසීමට හැක" @@ -25,7 +25,7 @@ msgstr "පිවිසීමට හැක" msgid "Error configuring Dropbox storage" msgstr "Dropbox ගබඩාව වින්යාස කිරීමේ දෝශයක් ඇත" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "පිවිසුම ලබාදෙන්න" @@ -33,24 +33,24 @@ msgstr "පිවිසුම ලබාදෙන්න" msgid "Please provide a valid Dropbox app key and secret." msgstr "කරුණාකර වලංගු Dropbox යෙදුම් යතුරක් හා රහසක් ලබාදෙන්න." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "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 "" -#: 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 "" -#: 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/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index ef616c5a5481bf39a8342a4e1ef63a01379d2741..8ad799d100544863ff359a14abbb50e757115c6f 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "දෝෂයක්" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "නම" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +71,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "මකා දමන්න" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index befb81f4fa0d481f911a1da248b7c320002bb8ea..e09474f77033486ca2ff5521982777d53f31379f 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <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,318 +17,325 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "උදව්" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "පෞද්ගලික" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "සිටුවම්" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "පරිශීලකයන්" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "පරිපාලක" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "ZIP භාගත කිරීම් අක්රියයි" -#: 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 "තෝරාගත් ගොනු ZIP ගොනුවක් තැනීමට විශාල වැඩිය." -#: 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/si_LK/settings.po b/l10n/si_LK/settings.po index dede6a46ee8292ccf7925461e7917604c08a6515..1bba29ef0440fd46f8ab9440471ae5298b568764 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "අක්රිය කරන්න" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "සක්රිය කරන්න" @@ -129,43 +129,43 @@ msgstr "සක්රිය කරන්න" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "දෝෂයක්" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "යාවත්කාල කිරීම" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "තම කණ්ඩායමේ අයෙකු හා පමණක් හුවමාරුවට අවසර දෙමි" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "ලඝුව" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "වැඩි" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "අඩු" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 9628a98779c7e89c383a82a6ef6c12636454076a..406b5ccaa25e5808aef90d436e376c0d8991d20b 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 6970d1b3c74273abe9b4b1370d8233a9c5f13edf..caf14391ec0874653d1a5a27b920f5743155e3a9 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -319,8 +324,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -340,126 +345,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -496,7 +509,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -568,7 +581,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -622,48 +645,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -687,19 +714,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -707,7 +742,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 070448f726fb24af4565a68843d66b0694be98d1..828614242ae704bd12bc57564a9c5446fe8eafd7 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,14 +163,14 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -210,31 +210,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -295,49 +308,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po index 796557674c439a39531d39d7383f3c90cef061bd..b09eb6f9b874d2fe449a5057a4a92f17a5a9bcbe 100644 --- a/l10n/sk/files_encryption.po +++ b/l10n/sk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 864614817b2d36ad5034c7da4b8a209471f9d7f2..8cea4a32231dc39b027bd25784f984cb92658ed1 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 7c9758b4cc8ad3929153bfbf60a2aa839594f321..4833b4b0581a261a8cb9f9da054438b8982bec85 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +19,17 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s s Vami zdieľa »%s«" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "skupina" @@ -321,8 +326,8 @@ msgstr "Nešpecifikovaný typ objektu." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Chyba" @@ -342,126 +347,134 @@ msgstr "Zdieľané" msgid "Share" msgstr "Zdieľať" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Chyba počas zdieľania" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Chyba počas ukončenia zdieľania" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Chyba počas zmeny oprávnení" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Zdieľané s vami a so skupinou {group} používateľom {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Zdieľané s vami používateľom {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Zdieľať s" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Zdieľať cez odkaz" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Chrániť heslom" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Heslo" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Povoliť verejné nahrávanie" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Odoslať odkaz emailom" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Odoslať" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Nastaviť dátum expirácie" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Dátum expirácie" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Zdieľať cez e-mail:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Používateľ nenájdený" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Zdieľanie už zdieľanej položky nie je povolené" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Zdieľané v {item} s {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "môže upraviť" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "prístupové práva" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "vytvoriť" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "aktualizovať" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "vymazať" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "zdieľať" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Email odoslaný" +#: js/share.js:729 +msgid "Warning" +msgstr "Varovanie" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -498,7 +511,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Odkaz pre obnovenie hesla obdržíte e-mailom." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Meno používateľa" @@ -570,8 +583,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Ahoj,\n\nChcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu: %s\n\nVďaka" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -624,48 +647,52 @@ msgstr "Pre informácie, ako správne nastaviť váš server, sa pozrite do <a h msgid "Create an <strong>admin account</strong>" msgstr "Vytvoriť <strong>administrátorský účet</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Rozšírené" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Priečinok dát" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Nastaviť databázu" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "bude použité" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Hostiteľ databázy" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Heslo databázy" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Meno databázy" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Tabuľkový priestor databázy" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Server databázy" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Dokončiť inštaláciu" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -689,19 +716,27 @@ msgstr "V nedávnej dobe ste nezmenili svoje heslo, Váš účet môže byť kom msgid "Please change your password to secure your account again." msgstr "Prosím, zmeňte svoje heslo pre opätovné zabezpečenie Vášho účtu" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Zabudli ste heslo?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "zapamätať" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Prihlásiť sa" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatívne prihlasovanie" @@ -709,8 +744,13 @@ msgstr "Alternatívne prihlasovanie" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Ahoj,<br><br>chcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu: <br><a href=\"%s\">zde</a>.<br><br>Vďaka" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index fd554f6c97366575ffb8806c1a6daa3688748451..b30caa95361f6e24c9b3c56585bca860e62466d4 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -87,7 +87,7 @@ msgstr "" msgid "Invalid directory." msgstr "Neplatný priečinok." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Súbory" @@ -120,7 +120,7 @@ msgstr "URL nemôže byť prázdne." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Neplatný názov priečinka. Názov \"Shared\" je rezervovaný pre ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Chyba" @@ -164,14 +164,14 @@ msgstr "prepísaný {new_name} súborom {old_name}" msgid "undo" msgstr "vrátiť" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n priečinok" msgstr[1] "%n priečinky" msgstr[2] "%n priečinkov" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n súbor" @@ -211,31 +211,44 @@ msgstr "Vaše úložisko je plné. Súbory nemožno aktualizovať ani synchroniz msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Vaše úložisko je takmer plné ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifrovanie bolo zakázané, ale vaše súbory sú stále zašifrované. Prosím, choďte do osobného nastavenia pre dešifrovanie súborov." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Názov" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Veľkosť" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Upravené" @@ -296,49 +309,49 @@ msgstr "Priečinok" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Zmazané súbory" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Nemáte oprávnenie na zápis." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Žiadny súbor. Nahrajte niečo!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Sťahovanie" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Zmazať" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Nahrávanie je príliš veľké" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Čakajte, súbory sú prehľadávané." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Práve prezerané" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index 7353664590fef4d6f53816798214a162fed5c755..e0728ac23ffad4f85d174b2214d1795aea44e472 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/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-08-30 09:31-0400\n" -"PO-Revision-Date: 2013-08-28 18:40+0000\n" -"Last-Translator: martin\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,17 +45,24 @@ msgstr "Heslo úspešne zmenené." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Nemožno zmeniť heslo. Pravdepodobne nebolo staré heslo zadané správne." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Heslo súkromného kľúča je úspešne aktualizované." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Nemožno aktualizovať heslo súkromného kľúča. Možno nebolo staré heslo správne." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -63,36 +70,30 @@ msgid "" "files." msgstr "Váš privátny kľúč je nesprávny! Pravdepodobne bolo zmenené vaše heslo mimo systému ownCloud (napr. váš korporátny adresár). Môžte aktualizovať vaše heslo privátneho kľúča v osobných nastaveniach za účelom obnovenia prístupu k zašifrovaným súborom." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Chýbajúce požiadavky." -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Prosím uistite sa, že PHP verzie 5.3.3 alebo novšej je nainštalované a tiež, že OpenSSL knižnica spolu z PHP rozšírením je povolená a konfigurovaná správne. Nateraz bola aplikácia šifrovania zablokovaná." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Nasledujúci používatelia nie sú nastavení pre šifrovanie:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Ukladám..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Váš súkromný kľúč je neplatný. Možno bolo Vaše heslo zmenené z vonku." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Môžte odomknúť váš privátny kľúč v" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "osobné nastavenia" @@ -109,27 +110,35 @@ msgstr "Povoliť obnovovací kľúč (umožňuje obnoviť používateľské súb msgid "Recovery key password" msgstr "Heslo obnovovacieho kľúča" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Povolené" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Zakázané" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Zmeniť heslo obnovovacieho kľúča:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Staré heslo obnovovacieho kľúča" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Nové heslo obnovovacieho kľúča" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Zmeniť heslo" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 5f990176d0b0f4bcd1570d5b93a79836607d28a7..33c04c25182d5e035d8b2a531df063b740e060cb 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -18,7 +18,7 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 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 "Prístup povolený" @@ -26,7 +26,7 @@ msgstr "Prístup povolený" msgid "Error configuring Dropbox storage" msgstr "Chyba pri konfigurácii úložiska Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Povoliť prístup" @@ -34,24 +34,24 @@ msgstr "Povoliť prístup" msgid "Please provide a valid Dropbox app key and secret." msgstr "Zadajte platný kľúč aplikácie a heslo Dropbox" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Chyba pri konfigurácii úložiska 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>Upozornenie:</b> \"smbclient\" nie je nainštalovaný. Nie je možné pripojenie oddielov CIFS/SMB. Požiadajte administrátora systému, nech ho nainštaluje." -#: 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>Upozornenie:</b> Podpora FTP v PHP nie je povolená alebo nainštalovaná. Nie je možné pripojenie oddielov FTP. Požiadajte administrátora systému, nech ho nainštaluje." -#: 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/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 488bcade2e15be1078bd047cdd47a50124c173eb..ba114deddff3d536f2400413f8f774a0ef61085d 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-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-20 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -28,45 +28,45 @@ msgstr "Nemožno zmazať %s navždy" msgid "Couldn't restore %s" msgstr "Nemožno obnoviť %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "vykonať obnovu" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Chyba" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "trvalo zmazať súbor" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Zmazať trvalo" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Názov" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Zmazané" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n priečinok" msgstr[1] "%n priečinky" msgstr[2] "%n priečinkov" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n súbor" msgstr[1] "%n súbory" msgstr[2] "%n súborov" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "obnovené" @@ -74,11 +74,11 @@ msgstr "obnovené" msgid "Nothing in here. Your trash bin is empty!" msgstr "Žiadny obsah. Kôš je prázdny!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Obnoviť" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Zmazať" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 8d4dc2dc8911717c37e6d489bc06b1d3a47a2963..e85df073fccbd8da71f80a62b4a47a76f3b55453 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <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,322 +19,329 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:239 +#: private/app.php:237 #, 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." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "Nešpecifikované meno aplikácie" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Pomoc" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Osobné" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Nastavenia" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Používatelia" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Administrátor" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Zlyhala aktualizácia \"%s\"." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "webové služby pod Vašou kontrolou" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "nemožno otvoriť \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "Sťahovanie súborov ZIP je vypnuté." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Súbory musia byť nahrávané jeden za druhým." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Späť na súbory" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Zvolené súbory sú príliš veľké na vygenerovanie zip súboru." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Stiahnite súbory po menších častiach, samostatne, alebo sa obráťte na správcu." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Nešpecifikovaný zdroj pri inštalácii aplikácie" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Nešpecifikovaný atribút \"href\" pri inštalácii aplikácie pomocou protokolu \"http\"" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Nešpecifikovaná cesta pri inštalácii aplikácie z lokálneho súboru" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Typ archívu %s nie je podporovaný" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Zlyhanie pri otváraní archívu počas inštalácie aplikácie" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Aplikácia neposkytuje súbor info.xml" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Aplikácia nemôže byť inštalovaná pre nepovolený kód v aplikácii" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Aplikácia nemôže byť inštalovaná pre nekompatibilitu z danou verziou ownCloudu" -#: 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 "Aplikácia nemôže byť inštalovaná pretože obsahuje <shipped>pravý</shipped> štítok, ktorý nie je povolený pre zaslané \"shipped\" aplikácie" -#: 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 "Aplikácia nemôže byť inštalovaná pretože verzia v info.xml/version nezodpovedá verzii špecifikovanej v aplikačnom obchode" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "Aplikačný adresár už existuje" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nemožno vytvoriť aplikačný priečinok. Prosím upravte povolenia. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Aplikácia nie je zapnutá" -#: 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 "Chyba autentifikácie" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token vypršal. Obnovte, prosím, stránku." -#: 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 "Súbory" -#: 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 "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Obrázky" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "Zadajte používateľské meno %s databázy.." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "Zadajte názov databázy pre %s databázy." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "V názve databázy %s nemôžete používať bodky" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Používateľské meno, alebo heslo MS SQL nie je platné: %s" -#: 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 "Musíte zadať jestvujúci účet alebo administrátora." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre MySQL databázu je neplatné" -#: 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 "Chyba DB: \"%s\"" -#: 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 "Podozrivý príkaz bol: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Používateľ '%s'@'localhost' už v MySQL existuje." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Zahodiť používateľa z MySQL." -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Používateľ '%s'@'%%' už v MySQL existuje" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Zahodiť používateľa z MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Nie je možné pripojiť sa k Oracle" -#: 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 "Používateľské meno a/alebo heslo pre Oracle databázu je neplatné" -#: 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 "Podozrivý príkaz bol: \"%s\", meno: %s, heslo: %s" -#: 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 "Používateľské meno a/alebo heslo pre PostgreSQL databázu je neplatné" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Zadajte používateľské meno administrátora." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Zadajte heslo administrátora." -#: 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 "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Prosím skontrolujte <a href='%s'>inštalačnú príručku</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Nemožno nájsť danú kategóriu \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "pred sekundami" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "pred %n minútami" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "pred %n hodinami" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "dnes" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "včera" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "pred %n dňami" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "minulý mesiac" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "pred %n mesiacmi" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "minulý rok" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "pred rokmi" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Príčina:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Nemožno nájsť danú kategóriu \"%s\"" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 961d19a242b52b4679a126964a6ed9326713bbd5..b44a7438343e3576077e995fed5134f6795c5429 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -119,11 +119,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Aktualizovať na {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Zakázať" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Zapnúť" @@ -131,43 +131,43 @@ msgstr "Zapnúť" msgid "Please wait...." msgstr "Čakajte prosím..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Chyba pri zablokovaní aplikácie" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Chyba pri povoľovaní aplikácie" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Aktualizujem..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "chyba pri aktualizácii aplikácie" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Chyba" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Aktualizovať" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Aktualizované" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 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:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Ukladám..." @@ -343,46 +343,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Povoliť používateľom zdieľať len s používateľmi v ich skupinách" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Zabezpečenie" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Vynútiť HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vynúti pripájanie klientov k %s šifrovaným pripojením." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Pripojte sa k %s cez HTTPS pre povolenie alebo zakázanie vynútenia SSL." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Záznam" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Viac" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Menej" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Verzia" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 4c4d7f82839074f8218ca6deddcecd84f25e34e3..490bc7b44cf391e272731df4a0bcd2491b5e3cbf 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: martin\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -27,17 +27,17 @@ msgstr "Nepodarilo sa vymazať mapovania." msgid "Failed to delete the server configuration" msgstr "Zlyhalo zmazanie nastavenia servera." -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Nastavenie je v poriadku a pripojenie je stabilné." -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Nastavenie je v poriadku, ale pripojenie zlyhalo. Skontrolujte nastavenia servera a prihlasovacie údaje." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 57c093c4eeb08b4dff00b62e19d3ed3e5394bfe4..6b2374ddc6479e4b6509a0e744d5d054a7dc175e 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -19,12 +19,17 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s je delil »%s« z vami" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "skupina" @@ -326,8 +331,8 @@ msgstr "Vrsta predmeta ni podana." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Napaka" @@ -347,126 +352,134 @@ msgstr "V souporabi" msgid "Share" msgstr "Souporaba" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Napaka med souporabo" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Napaka med odstranjevanjem souporabe" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Napaka med spreminjanjem dovoljenj" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "V souporabi z vami in skupino {group}. Lastnik je {owner}." -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "V souporabi z vami. Lastnik je {owner}." -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Omogoči souporabo z" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Omogoči souporabo preko povezave" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Zaščiti z geslom" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Geslo" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Dovoli javne prenose na strežnik" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Posreduj povezavo po elektronski pošti" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Pošlji" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Nastavi datum preteka" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Datum preteka" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Souporaba preko elektronske pošte:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Ni najdenih uporabnikov" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Nadaljnja souporaba ni dovoljena" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "V souporabi v {item} z {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Prekliči souporabo" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "lahko ureja" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "nadzor dostopa" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "ustvari" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "posodobi" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "izbriši" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "določi souporabo" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Napaka med nastavljanjem datuma preteka" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Pošiljanje ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Elektronska pošta je poslana" +#: js/share.js:729 +msgid "Warning" +msgstr "Opozorilo" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -503,7 +516,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Na elektronski naslov boste prejeli povezavo za ponovno nastavitev gesla." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Uporabniško ime" @@ -575,8 +588,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Pozdravljen/a,⏎\n⏎\nsporočam, da je %s delil %s s teboj.⏎\nPoglej na: %s⏎\n⏎\nLep pozdrav!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -629,48 +652,52 @@ msgstr "Za navodila, kako pravilno nastaviti vaš strežnik, kliknite na povezav msgid "Create an <strong>admin account</strong>" msgstr "Ustvari <strong>skrbniški račun</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Napredne možnosti" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Podatkovna mapa" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Nastavi podatkovno zbirko" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "bo uporabljen" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Uporabnik podatkovne zbirke" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Geslo podatkovne zbirke" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Ime podatkovne zbirke" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Razpredelnica podatkovne zbirke" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Gostitelj podatkovne zbirke" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Končaj namestitev" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -694,19 +721,27 @@ msgstr "V primeru, da gesla za dostop že nekaj časa niste spremenili, je raču msgid "Please change your password to secure your account again." msgstr "Spremenite geslo za izboljšanje zaščite računa." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Ali ste pozabili geslo?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "zapomni si" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Prijava" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Druge prijavne možnosti" @@ -714,8 +749,13 @@ msgstr "Druge prijavne možnosti" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Pozdravljen/a,<br><br>sporočam, da je %s delil »%s« s teboj.<br><a href=\"%s\">Poglej vsebine!</a><br><br>Lep pozdrav!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/sl/files.po b/l10n/sl/files.po index d8dee234cc0a94bce12cc9c01cf206764e3caf89..388b2dedf323328812814f63ae0db25ecab56961 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -87,7 +87,7 @@ msgstr "" msgid "Invalid directory." msgstr "Neveljavna mapa." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Datoteke" @@ -120,7 +120,7 @@ msgstr "Naslov URL ne sme biti prazna vrednost." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ime mape je neveljavno. Uporaba oznake \"Souporaba\" je rezervirana za ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Napaka" @@ -164,7 +164,7 @@ msgstr "preimenovano ime {new_name} z imenom {old_name}" msgid "undo" msgstr "razveljavi" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -172,7 +172,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -214,31 +214,44 @@ msgstr "Shramba je povsem napolnjena. Datotek ni več mogoče posodabljati in us msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Mesto za shranjevanje je skoraj polno ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datoteka zelo velika." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Ime" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Velikost" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Spremenjeno" @@ -299,49 +312,49 @@ msgstr "Mapa" msgid "From link" msgstr "Iz povezave" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Izbrisane datoteke" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Za to mesto ni ustreznih dovoljenj za pisanje." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Tukaj še ni ničesar. Najprej je treba kakšno datoteko poslati v oblak!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Prejmi" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Prekliči souporabo" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Izbriši" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Prekoračenje omejitve velikosti" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Poteka preučevanje datotek, počakajte ..." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Trenutno poteka preučevanje" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index dce60f89a056ef8c2be427962c2613afa4c9c782..bd85156b74968a4ed1d4e9d49acd7d619913e8f3 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/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-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: barbarak <barbarak@arnes.si>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,17 +44,24 @@ msgstr "Geslo je bilo uspešno spremenjeno." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Gesla ni bilo mogoče spremeniti. Morda vnos starega gesla ni bil pravilen." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Zasebni ključ za geslo je bil uspešno posodobljen." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Zasebnega ključa za geslo ni bilo mogoče posodobiti. Morda vnos starega gesla ni bil pravilen." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -62,36 +69,30 @@ msgid "" "files." msgstr "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno zunaj sistema ownCloud (npr. v skupnem imeniku). Svoj zasebni ključ, ki vam bo omogočil dostop do šifriranih dokumentov, lahko posodobite v osebnih nastavitvah." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Manjkajoče zahteve" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Preverite, da imate na strežniku nameščen paket PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Naslednji uporabniki še nimajo nastavljenega šifriranja:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Poteka shranjevanje ..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Svoj zasebni ključ lahko odklenite v" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "osebne nastavitve" @@ -108,27 +109,35 @@ msgstr "Omogoči ključ za obnovitev datotek (v primeru izgube gesla)" msgid "Recovery key password" msgstr "Ključ za obnovitev gesla" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Omogočeno" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Onemogočeno" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Spremeni ključ za obnovitev gesla:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Stari ključ za obnovitev gesla" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Nov ključ za obnovitev gesla" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Spremeni geslo" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 90cc598ec893452be60400546ddcbff691977b78..14fecb56ea0b17a07d0e36d08c531e734acfbb66 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: js/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 "Dostop je odobren" @@ -26,7 +26,7 @@ msgstr "Dostop je odobren" msgid "Error configuring Dropbox storage" msgstr "Napaka nastavljanja shrambe Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Odobri dostop" @@ -34,24 +34,24 @@ msgstr "Odobri dostop" msgid "Please provide a valid Dropbox app key and secret." msgstr "Vpisati je treba veljaven ključ programa in kodo za Dropbox" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Napaka nastavljanja shrambe 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>Opozorilo:</b> paket \"smbclient\" ni nameščen. Priklapljanje pogonov CIFS/SMB ne bo mogoče." -#: 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>Opozorilo:</b> podpora FTP v PHP ni omogočena ali pa ni nameščena. Priklapljanje pogonov FTP zato ne bo mogoče." -#: 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/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 866885ca0cb56b956a6c6c81a868b6861fda098e..284bba9884c497b57e3c1fdea2552c4889b2fa0f 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,31 +27,31 @@ msgstr "Datoteke %s ni mogoče dokončno izbrisati." msgid "Couldn't restore %s" msgstr "Ni mogoče obnoviti %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "izvedi opravilo obnavljanja" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Napaka" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "dokončno izbriši datoteko" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Izbriši dokončno" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Ime" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Izbrisano" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -59,7 +59,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -67,7 +67,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -75,11 +75,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "Mapa smeti je prazna." -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Obnovi" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Izbriši" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 871f8629966cffebc40264e7460dae38d71510cc..5719658689330524e80624e5e098a3f7bdd56801 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -18,270 +18,282 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Pomoč" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Osebno" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Nastavitve" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Uporabniki" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Skrbništvo" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "spletne storitve pod vašim nadzorom" -#: 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 "Prejemanje datotek v paketu ZIP je onemogočeno." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Datoteke je mogoče prejeti le posamično." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Nazaj na datoteke" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Izbrane datoteke so prevelike za ustvarjanje datoteke arhiva zip." -#: 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 "Program ni omogočen" -#: 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 "Napaka pri overjanju" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Žeton je potekel. Stran je treba ponovno naložiti." -#: 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 "Datoteke" -#: 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 "Besedilo" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Slike" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s - vnos uporabniškega imena podatkovne zbirke." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s - vnos imena podatkovne zbirke." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s - v imenu podatkovne zbirke ni dovoljeno uporabljati pik." -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Uporabniško ime ali geslo MS SQL ni veljavno: %s" -#: 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 "Prijaviti se je treba v obstoječi ali pa skrbniški račun." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Uporabniško ime ali geslo MySQL ni veljavno" -#: 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 "Napaka podatkovne zbirke: \"%s\"" -#: 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 "Napačni ukaz je: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Uporabnik MySQL '%s'@'localhost' že obstaja." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Odstrani uporabnika s podatkovne zbirke MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Uporabnik MySQL '%s'@'%%' že obstaja." -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Odstrani uporabnika s podatkovne zbirke MySQL" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Povezava z bazo Oracle ni uspela." -#: 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 "Uporabniško ime ali geslo Oracle ni veljavno" -#: 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 "Napačni ukaz je: \"%s\", ime: %s, geslo: %s" -#: 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 "Uporabniško ime ali geslo PostgreSQL ni veljavno" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Nastavi uporabniško ime skrbnika." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Nastavi geslo skrbnika." -#: 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 "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Preverite <a href='%s'>navodila namestitve</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Kategorije \"%s\" ni mogoče najti." + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -289,7 +301,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] "" @@ -297,15 +309,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "danes" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "včeraj" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -313,11 +325,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "zadnji mesec" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -325,19 +337,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "lansko leto" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "let nazaj" -#: 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 "Kategorije \"%s\" ni mogoče najti." diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index dd0437a4bdd3f86fa69b950999ffb6990e6ad4ad..cb7d56aab65c06727f28ad435a2864182bb378b8 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -119,11 +119,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Posodobi na {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Onemogoči" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Omogoči" @@ -131,43 +131,43 @@ msgstr "Omogoči" msgid "Please wait...." msgstr "Počakajte ..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Poteka posodabljanje ..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Prišlo je do napake med posodabljanjem programa." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Napaka" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Posodobi" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Posodobljeno" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Poteka shranjevanje ..." @@ -343,46 +343,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Varnost" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Zahtevaj uporabo HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Raven beleženja" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Več" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Manj" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Različica" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 4a826a92f8c417b5282199dbbf168c5908677cb2..95dd8e04afc2c88f6f185cddacdc065dce579a38 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -26,17 +26,17 @@ msgstr "Preslikav ni bilo mogoče izbrisati" msgid "Failed to delete the server configuration" msgstr "Brisanje nastavitev strežnika je spodletelo." -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Nastavitev je veljavna, zato je povezavo mogoče vzpostaviti!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Nastavitev je veljavna, vendar pa je vez Bind spodletela. Preveriti je treba nastavitve strežnika in ustreznost poveril." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/sq/core.po b/l10n/sq/core.po index c2395b2d0be052ca57a50b42b1c193fbb407dcc2..194c8b6eb0665cf85612dcf985fdeb06585afe01 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -19,12 +19,17 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s ndau »%s« me ju" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "grupi" @@ -316,8 +321,8 @@ msgstr "Nuk është specifikuar tipi i objektit." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Veprim i gabuar" @@ -337,126 +342,134 @@ msgstr "Ndarë" msgid "Share" msgstr "Nda" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Veprim i gabuar gjatë heqjes së ndarjes" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Veprim i gabuar gjatë ndryshimit të lejeve" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Ndarë me ju dhe me grupin {group} nga {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Ndarë me ju nga {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Nda me" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Nda me lidhje" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Mbro me kod" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Kodi" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Lejo Ngarkimin Publik" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Dërgo email me lidhjen" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Dërgo" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Cakto datën e përfundimit" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Data e përfundimit" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Nda me email:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Nuk u gjet asnjë person" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Rindarja nuk lejohet" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Ndarë në {item} me {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Hiq ndarjen" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "mund të ndryshosh" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "kontrollimi i hyrjeve" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "krijo" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "azhurno" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "elimino" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "nda" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Mbrojtur me kod" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Duke dërguar..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Email-i u dërgua" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -493,7 +506,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Do t'iu vijë një email që përmban një lidhje për ta rivendosur kodin." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Përdoruesi" @@ -565,8 +578,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Tungjatjeta,\n\nju njoftojmë që %s ka ndarë %s me ju.\nShikojeni: %s\n\nPëshëndetje!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -619,48 +642,52 @@ msgstr "Për më shumë informacion mbi konfigurimin e duhur të serverit tuaj, msgid "Create an <strong>admin account</strong>" msgstr "Krijo një <strong>llogari administruesi</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Të përparuara" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Emri i dosjes" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Konfiguro database-in" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "do të përdoret" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Përdoruesi i database-it" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Kodi i database-it" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Emri i database-it" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Tablespace-i i database-it" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Pozicioni (host) i database-it" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Mbaro setup-in" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -684,19 +711,27 @@ msgstr "Nqse nuk keni ndryshuar kodin kohët e fundit, llogaria juaj mund të je msgid "Please change your password to secure your account again." msgstr "Ju lutemi, ndryshoni kodin për ta siguruar përsëri llogarinë tuaj." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Ke humbur kodin?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "kujto" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Hyrje" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Hyrje alternative" @@ -704,8 +739,13 @@ msgstr "Hyrje alternative" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Tungjatjeta,<br><br>duam t'ju njoftojmë që %s ka ndarë »%s« me ju.<br><a href=\"%s\">Shikojeni!</a><br><br>Përshëndetje!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/sq/files.po b/l10n/sq/files.po index a5b9a669e2950e3b88cf92508e47d9a15938f916..02ed948241cfcffc1094cdeb28610a490fe58021 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -87,7 +87,7 @@ msgstr "" msgid "Invalid directory." msgstr "Dosje e pavlefshme." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Skedarët" @@ -120,7 +120,7 @@ msgstr "URL-i nuk mund të jetë bosh." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Emri i dosjes është i pavlefshëm. Përdorimi i \"Shared\" është i rezervuar nga Owncloud-i" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Veprim i gabuar" @@ -164,13 +164,13 @@ msgstr "U zëvëndësua {new_name} me {old_name}" msgid "undo" msgstr "anulo" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosje" msgstr[1] "%n dosje" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n skedar" @@ -208,31 +208,44 @@ msgstr "Hapësira juaj e memorizimit është plot, nuk mund të ngarkoni apo sin msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Hapësira juaj e memorizimit është gati plot ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kodifikimi u çaktivizua por skedarët tuaj vazhdojnë të jenë të kodifikuar. Ju lutem shkoni tek parametrat personale për të dekodifikuar skedarët tuaj." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Shkarkimi juaj po përgatitet. Mund të duhet pak kohë nqse skedarët janë të mëdhenj." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Emri" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Dimensioni" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Modifikuar" @@ -293,49 +306,49 @@ msgstr "Dosje" msgid "From link" msgstr "Nga lidhja" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Skedarë të eliminuar" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Nuk keni të drejta për të shkruar këtu." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Këtu nuk ka asgjë. Ngarkoni diçka!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Shkarko" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Hiq ndarjen" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Elimino" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Ngarkimi është shumë i madh" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skedarët që doni të ngarkoni tejkalojnë dimensionet maksimale për ngarkimet në këtë server." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Skedarët po analizohen, ju lutemi pritni." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Analizimi aktual" diff --git a/l10n/sq/files_encryption.po b/l10n/sq/files_encryption.po index ccb7cbaa9260d885c49b5bab8daca5668ad14f1d..1df9139a98ededa19d8049f927ad956cf13d8874 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index c8c772a9bdc7a94c0e1806d1eca0ea840397de39..93df58188276d2721920300e9f6c26107133d4d9 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: sq\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 "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index a359590d5750bf0b4a934db21d775b57bfeef0a3..ba9832da5b3c7e200775c416fea2e867d85c7fb4 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-09-10 10:41-0400\n" -"PO-Revision-Date: 2013-09-09 23:00+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: Odeen <rapid_odeen@zoho.com>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -44,27 +44,27 @@ msgstr "eliminoje përfundimisht skedarin" msgid "Delete permanently" msgstr "Elimino përfundimisht" -#: js/trash.js:184 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Emri" -#: js/trash.js:185 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Eliminuar" -#: js/trash.js:193 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosje" msgstr[1] "%n dosje" -#: js/trash.js:199 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n skedar" msgstr[1] "%n skedarë" -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "rivendosur" @@ -72,11 +72,11 @@ msgstr "rivendosur" msgid "Nothing in here. Your trash bin is empty!" msgstr "Këtu nuk ka asgjë. Koshi juaj është bosh!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Rivendos" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Elimino" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index e10fb8cdfd900bf6d47d36ace9a330d3a99f8678..8d7f5344cb40ea8b3c3947d0af015951b380f49e 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,325 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Ndihmë" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personale" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Parametra" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Përdoruesit" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "shërbime web nën kontrollin tënd" -#: 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 "Shkarimi i skedarëve ZIP është i çaktivizuar." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Skedarët duhet të shkarkohen një nga një." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Kthehu tek skedarët" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Skedarët e selektuar janë shumë të mëdhenj për të krijuar një skedar ZIP." -#: 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 "Programi nuk është i aktivizuar." -#: 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 "Veprim i gabuar gjatë vërtetimit të identitetit" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Përmbajtja ka skaduar. Ju lutemi ringarkoni faqen." -#: 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 "Skedarët" -#: 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 "Tekst" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Foto" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "% shkruani përdoruesin e database-it." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s shkruani emrin e database-it." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s nuk mund të përdorni pikat tek emri i database-it" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Përdoruesi dhe/apo kodi i MS SQL i pavlefshëm: %s" -#: 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 "Duhet të përdorni një llogari ekzistuese ose llogarinë e administratorit." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i MySQL-it i pavlefshëm." -#: 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 "Veprim i gabuar i DB-it: \"%s\"" -#: 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 "Komanda e gabuar ishte: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Përdoruesi MySQL '%s'@'localhost' ekziston." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Eliminoni këtë përdorues nga MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Përdoruesi MySQL '%s'@'%%' ekziston" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Eliminoni këtë përdorues nga MySQL." -#: 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 "Përdoruesi dhe/apo kodi i Oracle-it i pavlefshëm" -#: 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 "Komanda e gabuar ishte: \"%s\", përdoruesi: %s, kodi: %s" -#: 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 "Përdoruesi dhe/apo kodi i PostgreSQL i pavlefshëm" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Cakto emrin e administratorit." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Cakto kodin e administratorit." -#: 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 "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Ju lutemi kontrolloni mirë <a href='%s'>shoqëruesin e instalimit</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Kategoria \"%s\" nuk u gjet" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "sekonda më parë" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuta më parë" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n orë më parë" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "sot" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "dje" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n ditë më parë" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "muajin e shkuar" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n muaj më parë" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "vitin e shkuar" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "vite më parë" -#: 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 "Kategoria \"%s\" nuk u gjet" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 033a815c20c5dec990267cf799995cf3f891b633..04795ca25deb605e6713da086bbe623e7587afa9 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Veprim i gabuar" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Azhurno" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 89615eb99c3f072bfdf03dcf65050b7a5c1515a2..0c630054e04b468ea6d30c0f1da0c1f3a73c088b 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/sr/core.po b/l10n/sr/core.po index b0063f1a94260114ea27cefad7d98b6f9763df30..5981837809e5d0c9c3a875e814c4950537f88f37 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "група" @@ -319,8 +324,8 @@ msgstr "Врста објекта није подешена." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Грешка" @@ -340,126 +345,134 @@ msgstr "" msgid "Share" msgstr "Дели" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Грешка у дељењу" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Грешка код искључења дељења" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Грешка код промене дозвола" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Дељено са вама и са групом {group}. Поделио {owner}." -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Поделио са вама {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Подели са" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Подели линк" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Заштићено лозинком" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Лозинка" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Пошаљи" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Постави датум истека" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Датум истека" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Подели поштом:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Особе нису пронађене." -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Поновно дељење није дозвољено" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Подељено унутар {item} са {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Укини дељење" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "може да мења" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "права приступа" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "направи" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "ажурирај" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "обриши" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "подели" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Порука је послата" +#: js/share.js:729 +msgid "Warning" +msgstr "Упозорење" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -496,7 +509,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Добићете везу за ресетовање лозинке путем е-поште." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Корисничко име" @@ -568,7 +581,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -622,48 +645,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Направи <strong>административни налог</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Напредно" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Фацикла података" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Подешавање базе" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "ће бити коришћен" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Корисник базе" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Лозинка базе" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Име базе" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Радни простор базе података" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Домаћин базе" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Заврши подешавање" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -687,19 +714,27 @@ msgstr "Ако ускоро не промените лозинку ваш нал msgid "Please change your password to secure your account again." msgstr "Промените лозинку да бисте обезбедили налог." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Изгубили сте лозинку?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "упамти" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Пријава" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -707,7 +742,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 58518b339beadfd160960c6550a2de45780ee87a..a3df05d5cdf2557561c6811f88f27ae48b9cc74a 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "неисправна фасцикла." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Датотеке" @@ -119,7 +119,7 @@ msgstr "Адреса не може бити празна." 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Грешка" @@ -163,14 +163,14 @@ msgstr "замењено {new_name} са {old_name}" msgid "undo" msgstr "опозови" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -210,31 +210,44 @@ msgstr "Ваше складиште је пуно. Датотеке више н msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше складиште је скоро па пуно ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Припремам преузимање. Ово може да потраје ако су датотеке велике." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Име" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Величина" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Измењено" @@ -295,49 +308,49 @@ msgstr "фасцикла" msgid "From link" msgstr "Са везе" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Обрисане датотеке" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Овде немате дозволу за писање." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Овде нема ничег. Отпремите нешто!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Преузми" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Укини дељење" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Обриши" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Датотека је превелика" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеке које желите да отпремите прелазе ограничење у величини." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Скенирам датотеке…" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Тренутно скенирање" diff --git a/l10n/sr/files_encryption.po b/l10n/sr/files_encryption.po index 04b3da34ccd8c0b57b6f7c12fb8370512c401584..1740a985aabb47e88f1973592a655d0c61360974 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Чување у току..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 3ae0a9272fc3ebeb8516eae27bf367d13ca8df91..fef547c2b9263b495b50ba23a215c32678943970 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/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 "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 9fed460b7d4ccd1b78cb3b07cf3aea08cc1118de..3d3a324b2b57ac3f52efe398d85b57cb57a08611 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,45 +27,45 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "врати у претходно стање" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Грешка" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Обриши за стално" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Име" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Обрисано" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -73,11 +73,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "Овде нема ништа. Корпа за отпатке је празна." -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Врати" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Обриши" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 60393d5c2a634f53eeff0e8813fe6f429b374e87..7e3ecdf193f36307cefff640b7ab3c7fccdbbf48 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -17,322 +17,329 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Помоћ" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Лично" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Поставке" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Корисници" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Администратор" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "Преузимање ZIP-а је искључено." -#: 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 "Изабране датотеке су превелике да бисте направили ZIP датотеку." -#: 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 "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Погледајте <a href='%s'>водиче за инсталацију</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Не могу да пронађем категорију „%s“." + +#: 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 "Не могу да пронађем категорију „%s“." diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index ee77f11fb6ea3ce106d7d6c13f2f8e44c8402ded..4920132355d25f9fddea33bf893c92246299cdc6 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Ажурирај на {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Искључи" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Омогући" @@ -129,43 +129,43 @@ msgstr "Омогући" msgid "Please wait...." msgstr "Сачекајте…" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Ажурирам…" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Грешка при ажурирању апликације" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Грешка" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Ажурирај" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Ажурирано" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Чување у току..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Дозволи корисницима да деле само са корисницима у њиховим групама" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Бележење" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Ниво бележења" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Више" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Мање" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Верзија" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 57813276079fdef71d2e2042d04eef05aba2a271..7949578324a1e854149eebda5787ca627c55672a 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index da5af6328b4d647a97d5f2920238d0c83dd2d7c8..4ed4e7b9876a3930b75e9d72a3a7f5b9741335e3 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,17 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -320,8 +325,8 @@ msgstr "Tip objekta nije zadan." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Greška" @@ -341,126 +346,134 @@ msgstr "Deljeno" msgid "Share" msgstr "Podeli" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Greška pri deljenju" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Greška u uklanjanju deljenja" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Greška u promeni dozvola" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} podelio sa Vama i grupom {group} " -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Sa vama podelio {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Podeli sa" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Podeli koristei link" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Zaštita lozinkom" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Lozinka" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Pošalji link e-mailom" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Pošalji" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Datum isteka" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Datum isteka" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Deli putem e-maila" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Nema pronađenih ljudi" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Dalje deljenje nije dozvoljeno" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Deljeno u {item} sa {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Ukljoni deljenje" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "dozvoljene izmene" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "napravi" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "ažuriranje" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "brisanje" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "deljenje" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Zaštćeno lozinkom" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Greška u uklanjanju datuma isteka" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Greška u postavljanju datuma isteka" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Slanje..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Email poslat" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -497,7 +510,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Dobićete vezu za resetovanje lozinke putem e-pošte." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Korisničko ime" @@ -569,7 +582,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -623,48 +646,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Napravi <strong>administrativni nalog</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Napredno" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Fascikla podataka" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Podešavanje baze" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "će biti korišćen" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Korisnik baze" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Lozinka baze" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Ime baze" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "tablespace baze" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Domaćin baze" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Završi podešavanje" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -688,19 +715,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "upamti" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -708,7 +743,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 72c25ecb2ed0b3f017cf18be4693315b834e3048..4c630d0622315cf7822265f2dcc4677a0c87a4fe 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Fajlovi" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Greška" @@ -163,14 +163,14 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -210,31 +210,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Ime" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Veličina" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Zadnja izmena" @@ -295,49 +308,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Ukljoni deljenje" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Obriši" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Pošiljka je prevelika" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index 2f15da5caaee7abe466b170289cc7d98fd92177f..591d38389ca596c7dac41307da8741e8609c2312 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index cf5df4bfa849fde31026c239f65030ae44946de1..438ab9f1983919893412500a96b4257dbe5f96a9 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <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,7 +17,7 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/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 "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 0c52072bbaadffd70f27d85ad221c54e51e9d3a9..f4cf46e9bcb0a394fbc9e79b23fc9cb32dce9c48 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 07:30+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -65,7 +65,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index afa426b476b94c1e2456c1012e25db4c7604d480..322d7d6299229d1460f0779b2ad15ddf99056659 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 07:30+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <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,322 +17,329 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Pomoć" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Lično" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Podešavanja" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Korisnici" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Adninistracija" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "Greška pri autentifikaciji" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: search/provider/file.php:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fajlovi" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "Tekst" -#: search/provider/file.php:30 +#: 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 "Pre par sekundi" -#: 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 "Danas" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "juče" -#: 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 "prošlog meseca" -#: 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 "prošle godine" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "pre nekoliko godina" -#: 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/sr@latin/settings.po b/l10n/sr@latin/settings.po index eaddf7af119678029c6420d06353320f43027c9d..dbcfe052434eb0214cfbb90a0ab03d19fb1d1f19 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Greška" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 32f10400a2cdc7ed29b39804287e657590500823..4280b445590a0a323724c380f2df64fb74423ca6 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 07:30+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 3d94872f70d4df2a081a446bc5a2fcca057aebb9..4a8fddec11a8e084b7e9e577d1bb4d09926f0607 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-29 00:02-0400\n" -"PO-Revision-Date: 2013-09-28 02:02+0000\n" -"Last-Translator: Daniel Sandman <revoltism@gmail.com>\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot <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" @@ -22,12 +22,17 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s delade »%s« med dig" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "Grupp" @@ -319,8 +324,8 @@ msgstr "Objekttypen är inte specificerad." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Fel" @@ -340,126 +345,134 @@ msgstr "Delad" msgid "Share" msgstr "Dela" -#: js/share.js:131 js/share.js:696 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Fel vid delning" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Fel när delning skulle avslutas" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Fel vid ändring av rättigheter" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Delad med dig och gruppen {group} av {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Delad med dig av {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Delad med" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Delad med länk" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Lösenordsskydda" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Lösenord" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Tillåt publik uppladdning" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "E-posta länk till person" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Skicka" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Sätt utgångsdatum" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Utgångsdatum" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Dela via e-post:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Hittar inga användare" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Dela vidare är inte tillåtet" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Delad i {item} med {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Sluta dela" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "kan redigera" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "åtkomstkontroll" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "skapa" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "uppdatera" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "radera" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "dela" -#: js/share.js:400 js/share.js:643 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:656 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:668 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:683 +#: js/share.js:694 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:694 +#: js/share.js:705 msgid "Email sent" msgstr "E-post skickat" +#: js/share.js:729 +msgid "Warning" +msgstr "Varning" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -496,7 +509,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Du får en länk att återställa ditt lösenord via e-post." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Användarnamn" @@ -568,8 +581,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\nVi hörs!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -622,48 +645,52 @@ msgstr "För information hur du korrekt konfigurerar din servern, se ownCloud <a msgid "Create an <strong>admin account</strong>" msgstr "Skapa ett <strong>administratörskonto</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Avancerad" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Datamapp" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Konfigurera databasen" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "kommer att användas" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Databasanvändare" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Lösenord till databasen" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Databasnamn" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Databas tabellutrymme" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Databasserver" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Avsluta installation" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -687,19 +714,27 @@ msgstr "Om du inte har ändrat ditt lösenord nyligen så kan ditt konto vara ma msgid "Please change your password to secure your account again." msgstr "Ändra genast lösenord för att säkra ditt konto." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Glömt ditt lösenord?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "kom ihåg" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Logga in" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternativa inloggningar" @@ -707,8 +742,13 @@ msgstr "Alternativa inloggningar" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Hej där,<br><br>ville bara informera dig om att %s delade »%s« med dig.<br><a href=\"%s\">Titta på den!</a><br><br>Hörs!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 3fe12b46d57223948dd35ebc24f1f1fe491d3082..39cd256c8680810faeb1944eb527fb50f8aaa05a 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "" msgid "Invalid directory." msgstr "Felaktig mapp." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Filer" @@ -123,7 +123,7 @@ msgstr "URL kan inte vara tom." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ogiltigt mappnamn. Användning av 'Shared' är reserverad av ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Fel" @@ -167,13 +167,13 @@ msgstr "ersatt {new_name} med {old_name}" msgid "undo" msgstr "ångra" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapp" msgstr[1] "%n mappar" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" @@ -211,31 +211,44 @@ msgstr "Ditt lagringsutrymme är fullt, filer kan inte längre uppdateras eller msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kryptering inaktiverades men dina filer är fortfarande krypterade. Vänligen gå till sidan för dina personliga inställningar för att dekryptera dina filer." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Din nedladdning förbereds. Det kan ta tid om det är stora filer." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Namn" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Storlek" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Ändrad" @@ -296,49 +309,49 @@ msgstr "Mapp" msgid "From link" msgstr "Från länk" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Raderade filer" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Du saknar skrivbehörighet här." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Sluta dela" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Radera" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "För stor uppladdning" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index c5524af8443b327a6633e588316749ae977d4891..cda8bdec222f172f976fdcca61c785640f301e26 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/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-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <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" @@ -47,17 +47,24 @@ msgstr "Ändringen av lösenordet lyckades." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Kunde inte ändra lösenordet. Kanske det gamla lösenordet inte var rätt." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "Den privata lösenordsnyckeln uppdaterades utan problem." -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "Kunde inte uppdatera den privata lösenordsnyckeln. Kanske var det gamla lösenordet fel." -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -65,36 +72,30 @@ msgid "" "files." msgstr "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer." -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "Krav som saknas" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och korrekt konfigurerad. Kryptering är tillsvidare inaktiverad." -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "Följande användare har inte aktiverat kryptering:" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Sparar..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan." - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "Du kan låsa upp din privata nyckel i dina" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "personliga inställningar" @@ -111,27 +112,35 @@ msgstr "Aktivera lösenordsnyckel (för att kunna återfå användarens filer vi msgid "Recovery key password" msgstr "Lösenordsnyckel" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Aktiverad" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Inaktiverad" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "Ändra lösenordsnyckel:" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "Gammal lösenordsnyckel" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "Ny lösenordsnyckel" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Byt lösenord" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index af1c578869d242719634c82a919b6c0305868e4a..8cb6128460072373daa1979695a1361fdb2a26d6 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: sv\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 "Åtkomst beviljad" @@ -26,7 +26,7 @@ msgstr "Åtkomst beviljad" msgid "Error configuring Dropbox storage" msgstr "Fel vid konfigurering av Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Bevilja åtkomst" @@ -34,24 +34,24 @@ msgstr "Bevilja åtkomst" msgid "Please provide a valid Dropbox app key and secret." msgstr "Ange en giltig Dropbox nyckel och hemlighet." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Fel vid konfigurering av 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>Varning:</b> \"smb-klienten\" är inte installerad. Montering av CIFS/SMB delningar är inte möjligt. Kontakta din systemadministratör för att få den installerad." -#: 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>Varning:</b> Stöd för FTP i PHP är inte aktiverat eller installerat. Montering av FTP-delningar är inte möjligt. Kontakta din systemadministratör för att få det installerat." -#: 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/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index eafab03a7d979a58047813c8e17b6de34d8f565b..7116eb647ae412a1fea623f8be04e6e998573329 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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-18 08:40+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -29,43 +29,43 @@ msgstr "Kunde inte radera %s permanent" msgid "Couldn't restore %s" msgstr "Kunde inte återställa %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "utför återställning" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Fel" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "radera filen permanent" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Radera permanent" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Namn" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Raderad" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapp" msgstr[1] "%n mappar" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "återställd" @@ -73,11 +73,11 @@ msgstr "återställd" msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting här. Din papperskorg är tom!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Återskapa" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Radera" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 8865b3f1d8d84a0451d56b530c8a76dda0106f73..ba933c67ff85e86893db0c3f05be7ccef3695487 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -20,318 +20,325 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Appen \"%s\" kan inte installeras eftersom att den inte är kompatibel med denna version av ownCloud." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "Inget appnamn angivet" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Hjälp" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Personligt" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Inställningar" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Användare" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Admin" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Misslyckades med att uppgradera \"%s\"." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "webbtjänster under din kontroll" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "Kan inte öppna \"%s\"" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "Nerladdning av ZIP är avstängd." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Filer laddas ner en åt gången." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Tillbaka till Filer" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Valda filer är för stora för att skapa zip-fil." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Ladda ner filerna i mindre bitar, separat eller fråga din administratör." -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Ingen källa angiven vid installation av app " -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Ingen href angiven vid installation av app från http" -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Ingen sökväg angiven vid installation av app från lokal fil" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "Arkiv av typen %s stöds ej" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Kunde inte öppna arkivet när appen skulle installeras" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Appen har ingen info.xml fil" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Appen kan inte installeras eftersom att den innehåller otillåten kod" -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Appen kan inte installeras eftersom att den inte är kompatibel med denna version av ownCloud" -#: 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 "Appen kan inte installeras eftersom att den innehåller etiketten <shipped>true</shipped> vilket inte är tillåtet för icke inkluderade appar" -#: 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 "Appen kan inte installeras eftersom versionen i info.xml inte är samma som rapporteras från app store" -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "Appens mapp finns redan" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Kan inte skapa appens mapp. Var god åtgärda rättigheterna. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Applikationen är inte aktiverad" -#: 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 "Fel vid autentisering" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Ogiltig token. Ladda om sidan." -#: 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 "Filer" -#: 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 "Text" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Bilder" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s ange databasanvändare." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s ange databasnamn" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s du får inte använda punkter i databasnamnet" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL-användaren och/eller lösenordet var inte giltigt: %s" -#: 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 "Du måste antingen ange ett befintligt konto eller administratör." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL-användarnamnet och/eller lösenordet är felaktigt" -#: 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 "DB error: \"%s\"" -#: 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 "Det felaktiga kommandot var: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL-användaren '%s'@'localhost' existerar redan." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Radera denna användare från MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQl-användare '%s'@'%%' existerar redan" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Radera denna användare från MySQL." -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracle-anslutning kunde inte etableras" -#: 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 "Oracle-användarnamnet och/eller lösenordet är felaktigt" -#: 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 "Det felande kommandot var: \"%s\", name: %s, password: %s" -#: 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 "PostgreSQL-användarnamnet och/eller lösenordet är felaktigt" -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Ange ett användarnamn för administratören." -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Ange ett administratörslösenord." -#: 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 "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Var god kontrollera <a href='%s'>installationsguiden</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Kunde inte hitta kategorin \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "sekunder sedan" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "i dag" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "i går" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "förra månaden" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "förra året" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "år sedan" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Orsakad av:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "Kunde inte hitta kategorin \"%s\"" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index a0a193043a0c7532be27fe0a995c208f1f6fb267..8f2dedc9d544085506b6ab80501d30502c5d98a7 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.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-09-29 00:02-0400\n" -"PO-Revision-Date: 2013-09-28 01:44+0000\n" -"Last-Translator: Daniel Sandman <revoltism@gmail.com>\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" "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 +164,15 @@ msgstr "Uppdatera" msgid "Updated" msgstr "Uppdaterad" -#: js/personal.js:221 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "Välj en profilbild" -#: js/personal.js:266 +#: js/personal.js:270 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:288 +#: js/personal.js:292 msgid "Saving..." msgstr "Sparar..." @@ -348,46 +348,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Tillåt bara delning med användare i egna grupper" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Säkerhet" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Kräv HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvingar klienterna att ansluta till %s via en krypterad anslutning." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Anslut till din %s via HTTPS för att aktivera/deaktivera SSL" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Logg" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Nivå på loggning" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Mer" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Mindre" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Version" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 48d8dddb418961bf77797590c90e943fba482198..a59b02df0fbc3183959a3a8c8bd85766ee655298 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: Magnus Höglund <magnus@linux.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -28,17 +28,17 @@ msgstr "Fel vid rensning av mappningar" msgid "Failed to delete the server configuration" msgstr "Misslyckades med att radera serverinställningen" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Inställningen är giltig och anslutningen kunde upprättas!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Konfigurationen är riktig, men Bind felade. Var vänlig och kontrollera serverinställningar och logininformation." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 7b0e7105489c579feadf7968b9c0af01c5588bbf..dceb4c86917ac9012b01581d4db0d6eb26bd2278 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -314,8 +319,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index b12e3fb13dcd62be84232ccd513c97028d7faa24..8298ab48ec05b09ffd6832a8cbb9994ac3ef7012 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -292,49 +305,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po index 44bd37d47a128cc6d74a119476a4a32052f63636..62bebc15d4037e500451d01a7c68ff5e8c929006 100644 --- a/l10n/sw_KE/files_encryption.po +++ b/l10n/sw_KE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index da40717273393e1717897c7d65dcd0cecae11adc..008c8256e5a67a1467ae0b64a83996cf0f3d3d2c 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 85ae869a75217733d1859cc847155701990a56bb..1b4795931a8991d47160303f0397279f8bea0f3a 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "குழு" @@ -314,8 +319,8 @@ msgstr "பொருள் வகை குறிப்பிடப்படவ #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "வழு" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "பகிர்வு" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "பகிராமல் உள்ளப்போதான வழு" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "அனுமதிகள் மாறும்போதான வழு" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "உங்களுடனும் குழுவுக்கிடையிலும் {குழு} பகிரப்பட்டுள்ளது {உரிமையாளர்}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "உங்களுடன் பகிரப்பட்டுள்ளது {உரிமையாளர்}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "பகிர்தல்" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "இணைப்புடன் பகிர்தல்" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "கடவுச்சொல்லை பாதுகாத்தல்" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "கடவுச்சொல்" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "காலாவதி தேதியை குறிப்பிடுக" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "காலவதியாகும் திகதி" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "மின்னஞ்சலினூடான பகிர்வு: " -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "நபர்கள் யாரும் இல்லை" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "மீள்பகிர்வதற்கு அனுமதி இல்லை " -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "{பயனாளர்} உடன் {உருப்படி} பகிரப்பட்டுள்ளது" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "தொகுக்க முடியும்" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "கட்டுப்பாடான அணுகல்" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "உருவவாக்கல்" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "இற்றைப்படுத்தல்" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "நீக்குக" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "பகிர்தல்" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "எச்சரிக்கை" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "நீங்கள் மின்னஞ்சல் மூலம் உங்களுடைய கடவுச்சொல்லை மீளமைப்பதற்கான இணைப்பை பெறுவீர்கள். " #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "பயனாளர் பெயர்" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "<strong> நிர்வாக கணக்கொன்றை </strong> உருவாக்குக" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "உயர்ந்த" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "தரவு கோப்புறை" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "தரவுத்தளத்தை தகவமைக்க" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "பயன்படுத்தப்படும்" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "தரவுத்தள பயனாளர்" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "தரவுத்தள கடவுச்சொல்" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "தரவுத்தள பெயர்" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "தரவுத்தள அட்டவணை" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "தரவுத்தள ஓம்புனர்" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "அமைப்பை முடிக்க" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "உங்களுடைய கடவுச்சொல்லை அண msgid "Please change your password to secure your account again." msgstr "உங்களுடைய கணக்கை மீண்டும் பாதுகாக்க தயவுசெய்து உங்களுடைய கடவுச்சொல்லை மாற்றவும்." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "உங்கள் கடவுச்சொல்லை தொலைத்துவிட்டீர்களா?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "ஞாபகப்படுத்துக" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "புகுபதிகை" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index dd4a7dcf141cd56b51dec91eaab208e1d5c62914..963a52c9a7d1afe7402c43864dab1bc43707f400 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "கோப்புகள்" @@ -119,7 +119,7 @@ msgstr "URL வெறுமையாக இருக்கமுடியாத 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "வழு" @@ -163,13 +163,13 @@ msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப் msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "பெயர்" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "அளவு" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "மாற்றப்பட்டது" @@ -292,49 +305,49 @@ msgstr "கோப்புறை" msgid "From link" msgstr "இணைப்பிலிருந்து" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "பகிரப்படாதது" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "நீக்குக" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "பதிவேற்றல் மிகப்பெரியது" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்புகளானது இந்த சேவையகத்தில் கோப்பு பதிவேற்றக்கூடிய ஆகக்கூடிய அளவிலும் கூடியது." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "கோப்புகள் வருடப்படுகின்றன, தயவுசெய்து காத்திருங்கள்." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "தற்போது வருடப்படுபவை" diff --git a/l10n/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index 6c36776c8a3b498ae5544d51d16a190f76482b68..5bdd47956cc776e93965307e0a2cab042f79e78f 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "சேமிக்கப்படுகிறது..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 510a8d15dccbaa17c0a52ba1950f4ffa4f7ccaa1..42e8617601a424780b227b11c10d09e0bb4b4920 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <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,7 +17,7 @@ msgstr "" "Language: ta_LK\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 "அனுமதி வழங்கப்பட்டது" @@ -25,7 +25,7 @@ msgstr "அனுமதி வழங்கப்பட்டது" msgid "Error configuring Dropbox storage" msgstr "Dropbox சேமிப்பை தகவமைப்பதில் வழு" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "அனுமதியை வழங்கல்" @@ -33,24 +33,24 @@ msgstr "அனுமதியை வழங்கல்" msgid "Please provide a valid Dropbox app key and secret." msgstr "தயவுசெய்து ஒரு செல்லுபடியான Dropbox செயலி சாவி மற்றும் இரகசியத்தை வழங்குக. " -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Google இயக்க சேமிப்பகத்தை தகமைப்பதில் வழு" -#: 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 "" -#: 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 "" -#: 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/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 6cf36b94cdef9bcd231fea597fb9b5889e603273..937d88eaa1b4e48bddee6bbe655fa3d81e7f883e 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "வழு" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "பெயர்" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +71,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "நீக்குக" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 13095e3d78d5e693921bb875b2cac3fa9564c1b8..4fd740127540bea8793417a4a5bd435ce164a7ee 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <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,318 +17,325 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "உதவி" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "தனிப்பட்ட" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "அமைப்புகள்" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "பயனாளர்" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "நிர்வாகம்" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை" + +#: 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 "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index cafed635ec952f37241968237c860b8077005bd1..2777ae60f0c031ab57e1cdf74a27018f9e829e32 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "இயலுமைப்ப" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "இயலுமைப்படுத்துக" @@ -129,43 +129,43 @@ msgstr "இயலுமைப்படுத்துக" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "வழு" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "இற்றைப்படுத்தல்" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "சேமிக்கப்படுகிறது..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "மேலதிக" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "குறைவான" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 3df1b0da627ecdea4e62a9bc573600ef5760034e..3b2312317a281df9eeffd549be3c83b1fe91ef7c 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/te/core.po b/l10n/te/core.po index fa997fc7fcc78ca010d5fce75850acc805d1b601..28a4577388eb2148295c16fbc783a4e798943ccf 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -314,8 +319,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "పొరపాటు" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "సంకేతపదం" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "పంపించు" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "కాలం చెల్లు తేదీ" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "తొలగించు" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "వాడుకరి పేరు" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "మీ సంకేతపదం పోయిందా?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/te/files.po b/l10n/te/files.po index 6c0c87d21816ce534a684316f4fc30a196507f20..882a13053f15c8f4c74080568133110145b942c1 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "పొరపాటు" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "పేరు" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "పరిమాణం" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -292,49 +305,49 @@ msgstr "సంచయం" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "తొలగించు" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/te/files_encryption.po b/l10n/te/files_encryption.po index c592c5b12d8ac6ef2d46b44c27d44d6bfb87da44..f6bffff3067b9b5668f8de6b6011aa1b18f8a951 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# వీవెన్ <veeven@gmail.com>, 2013 +# వీవెన్ వీరపనేని <veeven@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -44,17 +44,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -62,36 +69,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "వ్యక్తిగత అమరికలు" @@ -108,27 +109,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 91be85d763577701d25f30f32acbbe6959e8c3d3..050d9359e38d3c39183b71c1c8afc089d1c70cd8 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: te\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 "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/te/files_trashbin.po b/l10n/te/files_trashbin.po index b4d02b2255831d6c7152717403df9f3a02bc793b..a96a83e98dd354ea0c18b9ef233e40e5f367512f 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "పొరపాటు" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "శాశ్వతంగా తొలగించు" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "పేరు" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +71,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "తొలగించు" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 6bea113344d111d175a518dc14b4dd426ccdfa95..843489a11c615f7de147d8ac103af998c6150db8 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -17,318 +17,325 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "సహాయం" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "అమరికలు" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "వాడుకరులు" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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/te/settings.po b/l10n/te/settings.po index b9bb6933e6add143469768a37ceec63ef384e2a4..be0dfd5ad0e838ca0d5064034ed3c016ff644ea4 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "పొరపాటు" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "మరిన్ని" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index f187c04b451425b5703ca92087e63f5819a919be..90eb60be589358deeb0e196093693dd48cdce74d 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 687b168209c8d5070bd04c13b193d92345c73db8..541877435d9c511aa11a312066e090bcb41f3c0b 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2013-10-07 12:16-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" @@ -18,12 +18,17 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -315,8 +320,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:656 js/share.js:668 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "" @@ -336,126 +341,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:696 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "" -#: js/share.js:400 js/share.js:643 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:656 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:668 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:683 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:694 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a href=" @@ -492,7 +505,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "" @@ -564,7 +577,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -618,48 +641,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -683,19 +710,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -703,7 +738,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 5a5cf056beb95345b3f102aca16096d3c40f6617..aac13557b57344990b46f3036d3829d705e00617 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:14-0400\n" +"POT-Creation-Date: 2013-10-07 12:14-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" @@ -91,36 +91,36 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:244 +#: js/file-upload.js:224 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:255 +#: js/file-upload.js:235 msgid "Not enough space available" msgstr "" -#: js/file-upload.js:322 +#: js/file-upload.js:302 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:356 +#: js/file-upload.js:336 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:446 +#: js/file-upload.js:426 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:500 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:525 lib/app.php:53 +#: js/file-upload.js:505 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:537 js/file-upload.js:553 js/files.js:518 js/files.js:556 msgid "Error" msgstr "" @@ -132,7 +132,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:197 +#: js/fileactions.js:184 msgid "Rename" msgstr "" @@ -164,13 +164,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: 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:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -208,31 +208,43 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:307 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:518 js/files.js:556 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:569 templates/index.php:57 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:570 templates/index.php:69 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:571 templates/index.php:71 msgid "Modified" msgstr "" @@ -293,49 +305,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:30 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:35 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:41 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:46 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:63 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:76 templates/index.php:77 msgid "Unshare" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:82 templates/index.php:83 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:96 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:98 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:103 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:106 msgid "Current scanning" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 312f7f29bb0e6b1072fd30fb41faf9d0844adbe5..9c0e1c7acd311077f4c9fb4295fd53a508d15ab8 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:15-0400\n" +"POT-Creation-Date: 2013-10-07 12:14-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" @@ -42,17 +42,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the " +"encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private " @@ -71,25 +78,19 @@ msgid "" "the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:255 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -106,27 +107,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 0ec2c070912ef82fb275d28310360758cc17d338..ccd29020348d9738d11fc4a2b4e0a148e734a696 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2013-10-07 12:16-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 77c296c9a7c49a3c554cef885caea5e5b0bdf409..89ca241853475fd1a2dbaab6500ec68ac923c573 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2013-10-07 12:16-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" @@ -53,28 +53,28 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:15 +#: templates/public.php:16 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:19 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:92 +#: templates/public.php:27 templates/public.php:93 msgid "Download" msgstr "" -#: templates/public.php:43 templates/public.php:46 +#: templates/public.php:44 templates/public.php:47 msgid "Upload" msgstr "" -#: templates/public.php:56 +#: templates/public.php:57 msgid "Cancel upload" msgstr "" -#: templates/public.php:89 +#: templates/public.php:90 msgid "No preview available for" msgstr "" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index b379edf9e9310d38f1a6affa8f582b368ab787cd..71a310eaf0d12a9b329f773ca2f43308ebb8f661 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2013-10-07 12:16-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 4d7bff6e8b69a372cec83c842b494d1bfd536ff8..c9d3851c6bdbaf4d237f4246f5d8a2b55e94ed62 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2013-10-07 12:16-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" @@ -38,6 +38,6 @@ msgstr "" msgid "No other versions available" msgstr "" -#: js/versions.js:145 +#: js/versions.js:147 msgid "Restore" msgstr "" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index cdaf465ab302912b24aea53c00e7da465514ed12..43d1f696e292d3a58a7dbebda5942adf4edfa5ce 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2013-10-07 12:17-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" @@ -18,318 +18,325 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: app.php:237 +#: private/app.php:237 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version " "of ownCloud." msgstr "" -#: app.php:248 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: app.php:352 +#: private/app.php:352 msgid "Help" msgstr "" -#: app.php:365 +#: private/app.php:365 msgid "Personal" msgstr "" -#: app.php:376 +#: private/app.php:376 msgid "Settings" msgstr "" -#: app.php:388 +#: private/app.php:388 msgid "Users" msgstr "" -#: app.php:401 +#: private/app.php:401 msgid "Admin" msgstr "" -#: app.php:832 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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:18 search/provider/file.php:36 +#: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" -#: search/provider/file.php:27 search/provider/file.php:34 +#: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" msgstr "" -#: search/provider/file.php:30 +#: 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 "" -#: tags.php:194 +#: private/tags.php:194 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: template/functions.php:96 +#: 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 "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot new file mode 100644 index 0000000000000000000000000000000000000000..9eb4e47d7cb68f27b09b5aa656897f25c3a2ecfa --- /dev/null +++ b/l10n/templates/private.pot @@ -0,0 +1,335 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ownCloud Core 6.0.0\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-10-07 12:17-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: app.php:237 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version " +"of ownCloud." +msgstr "" + +#: app.php:248 +msgid "No app name specified" +msgstr "" + +#: app.php:352 +msgid "Help" +msgstr "" + +#: app.php:365 +msgid "Personal" +msgstr "" + +#: app.php:376 +msgid "Settings" +msgstr "" + +#: app.php:388 +msgid "Users" +msgstr "" + +#: app.php:401 +msgid "Admin" +msgstr "" + +#: app.php:832 +#, 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 +msgid "Unknown filetype" +msgstr "" + +#: avatar.php:69 +msgid "Invalid image" +msgstr "" + +#: defaults.php:36 +msgid "web services under your control" +msgstr "" + +#: files.php:66 files.php:98 +#, php-format +msgid "cannot open \"%s\"" +msgstr "" + +#: files.php:226 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:227 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:228 files.php:256 +msgid "Back to Files" +msgstr "" + +#: files.php:253 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: files.php:254 +msgid "" +"Download the files in smaller chunks, seperately or kindly ask your " +"administrator." +msgstr "" + +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:125 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:131 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:140 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: 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 +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 +msgid "App directory already exists" +msgstr "" + +#: installer.php:175 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:18 search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: search/provider/file.php:27 search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: setup/abstractdatabase.php:22 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: setup/abstractdatabase.php:25 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: setup/abstractdatabase.php:28 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: 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 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: 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 +#, 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 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: setup/mysql.php:92 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: setup/oci.php:41 setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: setup/oci.php:173 setup/oci.php:205 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: setup/postgresql.php:23 setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: 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 +#, php-format +msgid "Please double check the <a href='%s'>installation guides</a>." +msgstr "" + +#: tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: template/functions.php:122 +msgid "seconds ago" +msgstr "" + +#: template/functions.php:123 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: template/functions.php:124 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: template/functions.php:125 +msgid "today" +msgstr "" + +#: template/functions.php:126 +msgid "yesterday" +msgstr "" + +#: template/functions.php:128 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: template/functions.php:130 +msgid "last month" +msgstr "" + +#: template/functions.php:131 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: template/functions.php:133 +msgid "last year" +msgstr "" + +#: template/functions.php:134 +msgid "years ago" +msgstr "" + +#: template.php:297 +msgid "Caused by:" +msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index af2b7236802602fb44637ae239db1678b694dcf5..6403c9cc46b261d19ccbabe5fc2aabd5b89e75b4 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:17-0400\n" +"POT-Creation-Date: 2013-10-07 12:17-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" @@ -156,15 +156,15 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:221 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:288 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -180,32 +180,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 "" @@ -340,45 +340,53 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank" "\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" " diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index ca738710f5cd80ee3485cdef0b33cde76b1202d5..448d4b6c3af17d80e06ae8fc854292bbe708dab0 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2013-10-07 12:16-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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index d3a899a1fe57978a0223a9adf4a9b13077b839a3..3d3aa1e6941741d57cd53888e558aabd0d462621 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ownCloud Core 5.0.0\n" +"Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-09-30 10:16-0400\n" +"POT-Creation-Date: 2013-10-07 12:16-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 8700d149b0f036ee45fb7f2b4ca827ac72ef71d8..ba1a5c7ddb411ee02d0c06b3978a11ec495eed7e 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "กลุ่มผู้ใช้งาน" @@ -309,8 +314,8 @@ msgstr "ชนิดของวัตถุยังไม่ได้รับ #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "ข้อผิดพลาด" @@ -330,126 +335,134 @@ msgstr "แชร์แล้ว" msgid "Share" msgstr "แชร์" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "เกิดข้อผิดพลาดในการยกเลิกการแชร์ข้อมูล" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "เกิดข้อผิดพลาดในการเปลี่ยนสิทธิ์การเข้าใช้งาน" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "ได้แชร์ให้กับคุณ และกลุ่ม {group} โดย {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "ถูกแชร์ให้กับคุณโดย {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "แชร์ให้กับ" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "แชร์ด้วยลิงก์" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "รหัสผ่าน" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "ส่งลิงก์ให้ทางอีเมล" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "ส่ง" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "กำหนดวันที่หมดอายุ" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "วันที่หมดอายุ" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "แชร์ผ่านทางอีเมล" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "ไม่พบบุคคลที่ต้องการ" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "ได้แชร์ {item} ให้กับ {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "สามารถแก้ไข" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "ระดับควบคุมการเข้าใช้งาน" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "สร้าง" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "อัพเดท" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "ลบ" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "แชร์" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "ส่งอีเมล์แล้ว" +#: js/share.js:729 +msgid "Warning" +msgstr "คำเตือน" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -486,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "คุณจะได้รับลิงค์เพื่อกำหนดรหัสผ่านใหม่ทางอีเมล์" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "ชื่อผู้ใช้งาน" @@ -558,7 +571,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -612,48 +635,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "สร้าง <strong>บัญชีผู้ดูแลระบบ</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "ขั้นสูง" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "โฟลเดอร์เก็บข้อมูล" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "กำหนดค่าฐานข้อมูล" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "จะถูกใช้" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "ชื่อผู้ใช้งานฐานข้อมูล" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "รหัสผ่านฐานข้อมูล" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "ชื่อฐานข้อมูล" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "พื้นที่ตารางในฐานข้อมูล" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Database host" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "ติดตั้งเรียบร้อยแล้ว" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -677,19 +704,27 @@ msgstr "หากคุณยังไม่ได้เปลี่ยนรห msgid "Please change your password to secure your account again." msgstr "กรุณาเปลี่ยนรหัสผ่านของคุณอีกครั้ง เพื่อป้องกันบัญชีของคุณให้ปลอดภัย" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "ลืมรหัสผ่าน?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "จำรหัสผ่าน" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "เข้าสู่ระบบ" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -697,7 +732,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index c6f593331857e1658d9a3afde500bde8c6339bdc..877917c0b500900188f7f17717adb4b7b928d829 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ไฟล์" @@ -119,7 +119,7 @@ msgstr "URL ไม่สามารถเว้นว่างได้" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "ข้อผิดพลาด" @@ -163,12 +163,12 @@ msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -204,31 +204,44 @@ msgstr "พื้นที่จัดเก็บข้อมูลของค msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "พื้นที่จัดเก็บข้อมูลของคุณใกล้เต็มแล้ว ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "ชื่อ" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "ขนาด" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "แก้ไขแล้ว" @@ -289,49 +302,49 @@ msgstr "แฟ้มเอกสาร" msgid "From link" msgstr "จากลิงก์" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "ลบ" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index 84ab71bdb0733ebb2aa8aa4739d235a88402b2dc..a9e0be2e60ba533749e9ffd34a1296d9df216948 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "กำลังบันทึกข้อมูล..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 3036782c91db0d238ce00cc57002e54b19eceddb..4bdc5618a273fbedba4f626e849e789302331842 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <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,7 +17,7 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\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 "การเข้าถึงได้รับอนุญาตแล้ว" @@ -25,7 +25,7 @@ msgstr "การเข้าถึงได้รับอนุญาตแล msgid "Error configuring Dropbox storage" msgstr "เกิดข้อผิดพลาดในการกำหนดค่าพื้นที่จัดเก็บข้อมูล Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "อนุญาตให้เข้าถึงได้" @@ -33,24 +33,24 @@ msgstr "อนุญาตให้เข้าถึงได้" msgid "Please provide a valid Dropbox app key and secret." msgstr "กรุณากรอกรหัส app key ของ Dropbox และรหัสลับ" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "เกิดข้อผิดพลาดในการกำหนดค่าการจัดเก็บข้อมูลในพื้นที่ของ 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>คำเตือน:</b> \"smbclient\" ยังไม่ได้ถูกติดตั้ง. การชี้ CIFS/SMB เพื่อแชร์ข้อมูลไม่สามารถกระทำได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง." -#: 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>คำเตือน:</b> การสนับสนุนการใช้งาน FTP ในภาษา PHP ยังไม่ได้ถูกเปิดใช้งานหรือถูกติดตั้ง. การชี้ FTP เพื่อแชร์ข้อมูลไม่สามารถดำเนินการได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง" -#: 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/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index d4723ca5dc7d833201a20202d1133dc2cb473c62..c54132eb7626d4a4a68cd22594d3d3c8b386ca02 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -27,41 +27,41 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "ดำเนินการคืนค่า" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "ชื่อ" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "ลบแล้ว" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +69,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "คืนค่า" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "ลบ" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 0866886c95a29db613736faf3c0ae8288acbe72a..cd3e90c37a9e41606a64f4a786f15232505e55b5 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <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,314 +17,321 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "ช่วยเหลือ" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "ส่วนตัว" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "ตั้งค่า" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "ผู้ใช้งาน" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "ผู้ดูแล" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้" -#: 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 "ไฟล์ที่เลือกมีขนาดใหญ่เกินกว่าที่จะสร้างเป็นไฟล์ zip" -#: 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 "ไม่พบหมวดหมู่ \"%s\"" + +#: 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 "ไม่พบหมวดหมู่ \"%s\"" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 1b369b9b75b0adf00a42a51f8f80971badac2a1e..ee691f79fbf0cb8b61911ee44c316d6b42d24a9c 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "อัพเดทไปเป็นรุ่น {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "ปิดใช้งาน" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "เปิดใช้งาน" @@ -129,43 +129,43 @@ msgstr "เปิดใช้งาน" msgid "Please wait...." msgstr "กรุณารอสักครู่..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "กำลังอัพเดทข้อมูล..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "เกิดข้อผิดพลาดในระหว่างการอัพเดทแอปฯ" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "อัพเดท" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "อัพเดทแล้ว" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "กำลังบันทึกข้อมูล..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "ระดับการเก็บบันทึก log" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "มาก" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "น้อย" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index f1de28b8322e47778a326306ea5015c8e2f67ccc..f59f5c8333d82d9de0ff9696d3d892498a90db6e 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "การลบการกำหนดค่าเซิร์ฟเวอร์ล้มเหลว" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "การกำหนดค่าถูกต้องและการเชื่อมต่อสามารถเชื่อมต่อได้!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "การกำหนดค่าถูกต้อง, แต่การผูกข้อมูลล้มเหลว, กรุณาตรวจสอบการตั้งค่าเซิร์ฟเวอร์และข้อมูลการเข้าใช้งาน" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 286f827c66c9b51ac36004a643c7817035094fc8..6ba5e5d6be4832f8e9042128d757a9ea4d39ac06 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -20,12 +20,17 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s sizinle »%s« paylaşımında bulundu" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "grup" @@ -317,8 +322,8 @@ msgstr "Nesne türü belirtilmemiş." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Hata" @@ -338,126 +343,134 @@ msgstr "Paylaşılan" msgid "Share" msgstr "Paylaş" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Paylaşım sırasında hata " -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Paylaşım iptal ediliyorken hata" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "İzinleri değiştirirken hata oluştu" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr " {owner} tarafından sizinle ve {group} ile paylaştırılmış" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "{owner} trafından sizinle paylaştırıldı" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "ile Paylaş" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Bağlantı ile paylaş" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Şifre korunması" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Parola" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "Herkes tarafından yüklemeye izin ver" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Kişiye e-posta linki" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Gönder" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Son kullanma tarihini ayarla" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Son kullanım tarihi" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Eposta ile paylaş" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Kişi bulunamadı" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Tekrar paylaşmaya izin verilmiyor" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr " {item} içinde {user} ile paylaşılanlarlar" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Paylaşılmayan" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "düzenleyebilir" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "erişim kontrolü" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "oluştur" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "güncelle" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "sil" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "paylaş" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Paralo korumalı" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Geçerlilik tarihi tanımlama hatası" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Gönderiliyor..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Eposta gönderildi" +#: js/share.js:729 +msgid "Warning" +msgstr "Uyarı" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -494,7 +507,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Parolanızı sıfırlamak için bir bağlantı Eposta olarak gönderilecek." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Kullanıcı Adı" @@ -566,8 +579,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "Merhaba\n\n%s sizinle %s dosyasını paylaştığı\nPaylaşımı gör:%s\n\nİyi günler!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -620,48 +643,52 @@ msgstr "Server'ınızı nasıl ayarlayacağınıza dair bilgi için, lütfen <a msgid "Create an <strong>admin account</strong>" msgstr "Bir <strong>yönetici hesabı</strong> oluşturun" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Gelişmiş" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Veri klasörü" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Veritabanını ayarla" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "kullanılacak" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Veritabanı kullanıcı adı" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Veritabanı parolası" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Veritabanı adı" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Veritabanı tablo alanı" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Veritabanı sunucusu" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Kurulumu tamamla" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -685,19 +712,27 @@ msgstr "Yakın zamanda parolanızı değiştirmedi iseniz hesabınız riske gire msgid "Please change your password to secure your account again." msgstr "Hesabınızı korumak için lütfen parolanızı değiştirin." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Parolanızı mı unuttunuz?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "hatırla" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Giriş yap" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Alternatif Girişler" @@ -705,8 +740,13 @@ msgstr "Alternatif Girişler" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -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!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 05c4ef5679771fad7e4c26343816fa53a84daa7a..397ed7bd9636a3f07bf4c63178d966b0779b04f9 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -89,7 +89,7 @@ msgstr "" msgid "Invalid directory." msgstr "Geçersiz dizin." -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Dosyalar" @@ -122,7 +122,7 @@ msgstr "URL boş olamaz." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Geçersiz dizin adı. 'Shared' dizin ismi kullanımı ownCloud tarafından rezerve edilmiştir." -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Hata" @@ -166,13 +166,13 @@ msgstr "{new_name} ismi {old_name} ile değiştirildi" msgid "undo" msgstr "geri al" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dizin" msgstr[1] "%n dizin" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosya" @@ -210,31 +210,44 @@ msgstr "Depolama alanınız dolu, artık dosyalar güncellenmeyecek yada senkron msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçiniz." -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "İsim" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Boyut" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Değiştirilme" @@ -295,49 +308,49 @@ msgstr "Klasör" msgid "From link" msgstr "Bağlantıdan" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Dosyalar silindi" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Buraya erişim hakkınız yok." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "İndir" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Paylaşılmayan" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Sil" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Yükleme çok büyük" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Dosyalar taranıyor, lütfen bekleyin." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Güncel tarama" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index 9bd94afdb89c72eff254685d1ce5700c38b85186..90a55700eff55186da4fcd8509b4c8e2df0ef501 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -44,17 +44,24 @@ msgstr "Şifreniz başarıyla değiştirildi." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Parola değiştirilemedi. Eski parolanız doğru olmayabilir" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -62,36 +69,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Kaydediliyor..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -108,27 +109,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Etkinleştirildi" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Devre dışı" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Parola değiştir" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index c2e5f4c34162ab8bb233c5b86da7cd8804ea159c..90d4fe2ca5b09a1b9c3f0280f4859000709ab75d 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: tr\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 "Giriş kabul edildi" @@ -25,7 +25,7 @@ msgstr "Giriş kabul edildi" msgid "Error configuring Dropbox storage" msgstr "Dropbox depo yapılandırma hatası" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Erişim sağlandı" @@ -33,24 +33,24 @@ msgstr "Erişim sağlandı" msgid "Please provide a valid Dropbox app key and secret." msgstr "Lütfen Dropbox app key ve secret temin ediniz" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Google Drive depo yapılandırma hatası" -#: 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>Uyari.</b>''smbclient''yüklü değil. Mont etme CIFS/SMB hissenin mümkün değildir. Lutfen kullanici sistemin sormak onu yuklemek ici, " -#: 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 "<Uyari.</b>. Sistem FTP PHPden aktif degil veya yuklemedi. Monte etme hissenin FTP mumkun degildir. Lutfen kullaniici sistemin sormak onu yuklemek icin." -#: 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/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index f46712fc9f499b437ba9391cfd2a3fa902006f1a..431d26bfe7a9e878acd4e6f5650b603dd0556b29 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-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-15 10:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: tridinebandim\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -28,43 +28,43 @@ msgstr "%s Kalıcı olarak silinemedi" msgid "Couldn't restore %s" msgstr "%s Geri yüklenemedi" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "Geri yükleme işlemini gerçekleştir" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Hata" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "Dosyayı kalıcı olarak sil" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Kalıcı olarak sil" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "İsim" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Silindi" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n dizin" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n dosya" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "geri yüklendi" @@ -72,11 +72,11 @@ msgstr "geri yüklendi" msgid "Nothing in here. Your trash bin is empty!" msgstr "Burası boş. Çöp kutun tamamen boş." -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Geri yükle" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Sil" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 7eadae253b4cf078dd3a613252170c34543cb254..6a247032c23131f8011aa9fb4233bf1f2d91d748 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -19,318 +19,325 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:239 +#: private/app.php:237 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Owncloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz." -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "Uygulama adı belirtimedli" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Yardım" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Kişisel" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Ayarlar" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Kullanıcılar" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Yönetici" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" yükseltme başarısız oldu." -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "Bilgileriniz güvenli ve şifreli" -#: files.php:66 files.php:98 +#: private/files.php:66 private/files.php:98 #, php-format msgid "cannot open \"%s\"" msgstr "\"%s\" açılamıyor" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "ZIP indirmeleri kapatılmıştır." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Dosyaların birer birer indirilmesi gerekmektedir." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Dosyalara dön" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür." -#: files.php:254 +#: private/files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." msgstr "Dosyaları ayrı ayrı, küçük parçalar halinde indirin ya da yöneticinizden yardım isteyin. " -#: installer.php:63 +#: private/installer.php:63 msgid "No source specified when installing app" msgstr "Uygulama kurulurken bir kaynak belirtilmedi" -#: installer.php:70 +#: private/installer.php:70 msgid "No href specified when installing app from http" msgstr "Uygulama kuruluyorken http'de href belirtilmedi." -#: installer.php:75 +#: private/installer.php:75 msgid "No path specified when installing app from local file" msgstr "Uygulama yerel dosyadan kuruluyorken dosya yolu belirtilmedi" -#: installer.php:89 +#: private/installer.php:89 #, php-format msgid "Archives of type %s are not supported" msgstr "%s arşiv tipi desteklenmiyor" -#: installer.php:103 +#: private/installer.php:103 msgid "Failed to open archive when installing app" msgstr "Uygulama kuruluyorken arşiv dosyası açılamadı" -#: installer.php:125 +#: private/installer.php:125 msgid "App does not provide an info.xml file" msgstr "Uygulama info.xml dosyası sağlamıyor" -#: installer.php:131 +#: private/installer.php:131 msgid "App can't be installed because of not allowed code in the App" msgstr "Uygulamada izin verilmeyeden kodlar olduğu için kurulamıyor." -#: installer.php:140 +#: private/installer.php:140 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Owncloud versiyonunuz ile uyumsuz olduğu için uygulama kurulamıyor." -#: 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 "Uygulama kurulamıyor. Çünkü \"non shipped\" uygulamalar için <shipped>true</shipped> tag içermektedir." -#: 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 "Uygulama kurulamıyor çünkü info.xml/version ile uygulama marketde belirtilen sürüm aynı değil." -#: installer.php:162 +#: private/installer.php:162 msgid "App directory already exists" msgstr "App dizini zaten mevcut" -#: installer.php:175 +#: private/installer.php:175 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "app dizini oluşturulamıyor. Lütfen izinleri düzeltin. %s" -#: json.php:28 +#: private/json.php:28 msgid "Application is not enabled" msgstr "Uygulama etkinleştirilmedi" -#: 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 "Kimlik doğrulama hatası" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Jetonun süresi geçti. Lütfen sayfayı yenileyin." -#: 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 "Dosyalar" -#: 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 "Metin" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Resimler" -#: setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "%s veritabanı kullanıcı adını gir." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s veritabanı adını gir." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s veritabanı adında nokta kullanamayabilirsiniz" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s" -#: 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 "Bir konto veya kullanici birlemek ihtiyacin. " -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL kullanıcı adı ve/veya parolası geçerli değil" -#: 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 "DB Hata: ''%s''" -#: 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 "Komut rahasiz ''%s''. " -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL kullanici '%s @local host zatan var. " -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Bu kullanici MySQLden list disari koymak. " -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL kullanici '%s @ % % zaten var (zaten yazili)" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Bu kulanıcıyı MySQL veritabanından kaldır" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "Oracle bağlantısı kurulamadı" -#: 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 "Adi klullanici ve/veya parola Oracle mantikli değildir. " -#: 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 "Hatalı komut: \"%s\", ad: %s, parola: %s" -#: 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 "PostgreSQL adi kullanici ve/veya parola yasal degildir. " -#: setup.php:28 +#: private/setup.php:28 msgid "Set an admin username." msgstr "Bir adi kullanici vermek. " -#: setup.php:31 +#: private/setup.php:31 msgid "Set an admin password." msgstr "Parola yonetici birlemek. " -#: 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 "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Lütfen <a href='%s'>kurulum kılavuzlarını</a> iki kez kontrol edin." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "\"%s\" kategorisi bulunamadı" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "saniye önce" -#: template/functions.php:97 +#: private/template/functions.php:123 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n dakika önce" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n saat önce" -#: template/functions.php:99 +#: private/template/functions.php:125 msgid "today" msgstr "bugün" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "dün" -#: template/functions.php:101 +#: private/template/functions.php:128 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n gün önce" -#: template/functions.php:102 +#: private/template/functions.php:130 msgid "last month" msgstr "geçen ay" -#: template/functions.php:103 +#: private/template/functions.php:131 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n ay önce" -#: template/functions.php:104 +#: private/template/functions.php:133 msgid "last year" msgstr "geçen yıl" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "yıl önce" -#: template.php:297 +#: private/template.php:297 msgid "Caused by:" msgstr "Neden olan:" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "\"%s\" kategorisi bulunamadı" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 8d168dd065d7db93937376c52b29e97d2cb47d56..7f1ee5060c356c4f6b9ca7ba7efde02a8273c0bc 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "{appversion} Güncelle" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Etkin değil" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Etkinleştir" @@ -133,43 +133,43 @@ msgstr "Etkinleştir" msgid "Please wait...." msgstr "Lütfen bekleyin...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "Uygulama devre dışı bırakılırken hata" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "Uygulama etkinleştirilirken hata" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Güncelleniyor...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Uygulama güncellenirken hata" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Hata" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Güncelleme" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Güncellendi" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 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:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Kaydediliyor..." @@ -345,46 +345,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Güvenlik" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "HTTPS bağlantısına zorla" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "İstemcileri %s a şifreli bir bağlantı ile bağlanmaya zorlar." -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s a HTTPS ile bağlanın." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Kayıtlar" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Günlük seviyesi" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Daha fazla" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Az" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 69f083c6084d9693ea62dfd15787b8e8035b941b..34a5b99bd6e436fddb83e2d112f7a017adb10758 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,17 +27,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Sunucu yapılandırmasını silme başarısız oldu" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Yapılandırma geçerli ve bağlantı kuruldu!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Yapılandırma geçerli fakat bağlanma(bind) başarısız. Lütfen Sunucu ayarları ve kimlik bilgilerini kontrol ediniz." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 2550b6d4ad0ba11e62acfd78fee13390a2dc6af6..75bc1a3a1f3763f6cb70a913839beb4b01aaa482 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "گۇرۇپپا" @@ -309,8 +314,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "خاتالىق" @@ -330,126 +335,134 @@ msgstr "" msgid "Share" msgstr "ھەمبەھىر" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "ھەمبەھىر" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "ئىم" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "يوللا" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "ھەمبەھىرلىمە" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "ئۆچۈر" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "ھەمبەھىر" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "ئاگاھلاندۇرۇش" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -486,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "ئىشلەتكۈچى ئاتى" @@ -558,7 +571,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -612,48 +635,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "ئالىي" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "تەڭشەك تامام" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -677,19 +704,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -697,7 +732,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/ug/files.po b/l10n/ug/files.po index c029562d869208d4b0bce0e2e0e4215bb5a1c4f3..7f3c7d56126515169a97d870c1bd5f547a611cd7 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "ھۆججەتلەر" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "خاتالىق" @@ -163,12 +163,12 @@ msgstr "" msgid "undo" msgstr "يېنىۋال" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -204,31 +204,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "ئاتى" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "چوڭلۇقى" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "ئۆزگەرتكەن" @@ -289,49 +302,49 @@ msgstr "قىسقۇچ" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "ئۆچۈرۈلگەن ھۆججەتلەر" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "بۇ جايدا ھېچنېمە يوق. Upload something!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "چۈشۈر" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "ھەمبەھىرلىمە" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "ئۆچۈر" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "يۈكلەندىغىنى بەك چوڭ" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ug/files_encryption.po b/l10n/ug/files_encryption.po index d2941695a8daa7fe99fd55a9dc2b1a26a8011169..529b8ab659914b6ec48b519766d880e701895d5c 100644 --- a/l10n/ug/files_encryption.po +++ b/l10n/ug/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "ساقلاۋاتىدۇ…" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index ed4e95513c8d1a0709e3be2ee8bcb6e3aa2c2589..aa2087978481b599e0a4bdb1ef641e022843a136 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/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-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: Abduqadir Abliz <sahran.ug@gmail.com>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\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 "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index df0057cd76b445b8712239b125d777a9c306951f..103286687b00a6c3a08be1e9e64d8211cb058d93 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -27,41 +27,41 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "خاتالىق" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "مەڭگۈلۈك ئۆچۈر" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "ئاتى" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "ئۆچۈرۈلدى" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +69,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "ئۆچۈر" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 27e9f375db1c396768f3d3eec1a09e1c43cea266..58fd4e0c96f03fe62f65c26930b44c147ca0ffbb 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/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-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -17,314 +17,321 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "ياردەم" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "شەخسىي" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "تەڭشەكلەر" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "ئىشلەتكۈچىلەر" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "سىزنىڭ تور مۇلازىمېتىرىڭىز ھۆججەت قەدەمداشلاشقا يول قويىدىغان قىلىپ توغرا تەڭشەلمەپتۇ، چۈنكى WebDAV نىڭ ئېغىزى بۇزۇلغاندەك تۇرىدۇ." -#: 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/ug/settings.po b/l10n/ug/settings.po index 84bd5ebb2a5f004221150ef074cfafed9931b8f9..95ccc43e5f480c109deaa323e454fcfe944727dd 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -118,11 +118,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "{appversion} غا يېڭىلايدۇ" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "چەكلە" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "قوزغات" @@ -130,43 +130,43 @@ msgstr "قوزغات" msgid "Please wait...." msgstr "سەل كۈتۈڭ…" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "يېڭىلاۋاتىدۇ…" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "ئەپنى يېڭىلاۋاتقاندا خاتالىق كۆرۈلدى" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "خاتالىق" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "يېڭىلا" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "يېڭىلاندى" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "ساقلاۋاتىدۇ…" @@ -342,46 +342,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "بىخەتەرلىك" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "خاتىرە" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "خاتىرە دەرىجىسى" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "تېخىمۇ كۆپ" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "ئاز" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index ad88262b4408b7769642bf47f73a452f0484688f..23d2804c30bec4e0681ab0ecfada72309f34a861 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 2deda9a93d507fa45b638bfb94b84ef6927176c9..90400bb72ea98832a9d83ac076ea77e1ea2fac9d 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,17 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "група" @@ -319,8 +324,8 @@ msgstr "Не визначено тип об'єкту." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Помилка" @@ -340,126 +345,134 @@ msgstr "Опубліковано" msgid "Share" msgstr "Поділитися" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Помилка під час публікації" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Помилка під час відміни публікації" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Помилка при зміні повноважень" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr " {owner} опублікував для Вас та для групи {group}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "{owner} опублікував для Вас" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Опублікувати для" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Опублікувати через посилання" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Захистити паролем" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Пароль" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Ел. пошта належить Пану" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Надіслати" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Встановити термін дії" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Термін дії" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Опублікувати через Ел. пошту:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Жодної людини не знайдено" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Пере-публікація не дозволяється" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Опубліковано {item} для {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Закрити доступ" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "може редагувати" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "контроль доступу" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "створити" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "оновити" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "видалити" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "опублікувати" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Ел. пошта надіслана" +#: js/share.js:729 +msgid "Warning" +msgstr "Попередження" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -496,7 +509,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Ви отримаєте посилання для скидання вашого паролю на Ел. пошту." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Ім'я користувача" @@ -568,7 +581,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -622,48 +645,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Створити <strong>обліковий запис адміністратора</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Додатково" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Каталог даних" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Налаштування бази даних" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "буде використано" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Користувач бази даних" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Пароль для бази даних" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Назва бази даних" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Таблиця бази даних" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Хост бази даних" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Завершити налаштування" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -687,19 +714,27 @@ msgstr "Якщо Ви не міняли пароль останнім часом msgid "Please change your password to secure your account again." msgstr "Будь ласка, змініть свій пароль, щоб знову захистити Ваш обліковий запис." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Забули пароль?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "запам'ятати" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Вхід" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Альтернативні Логіни" @@ -707,7 +742,12 @@ msgstr "Альтернативні Логіни" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/uk/files.po b/l10n/uk/files.po index d269f620d94b4d1e90b3029694630190c18c5ba5..cbae1aabd0903d0372a9cf4f8f6ed692b8a5662a 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-29 00:02-0400\n" -"PO-Revision-Date: 2013-09-27 19:42+0000\n" -"Last-Translator: zubr139 <zubr139@ukr.net>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:11+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,7 +120,7 @@ msgstr "URL не може бути пустим." msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Неправильне ім'я теки. Використання 'Shared' зарезервовано ownCloud" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Помилка" @@ -164,14 +164,14 @@ msgstr "замінено {new_name} на {old_name}" msgid "undo" msgstr "відмінити" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n тека" msgstr[1] "%n тека" msgstr[2] "%n теки" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -211,31 +211,44 @@ msgstr "Ваше сховище переповнене, файли більше msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше сховище майже повне ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Ім'я" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Розмір" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Змінено" @@ -296,49 +309,49 @@ msgstr "Тека" msgid "From link" msgstr "З посилання" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "Видалено файлів" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "У вас тут немає прав на запис." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Тут нічого немає. Відвантажте що-небудь!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Завантажити" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Закрити доступ" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Видалити" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Файл занадто великий" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Файли скануються, зачекайте, будь-ласка." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Поточне сканування" diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index 6957679f93fe75c85f37f8971a466db769359286..24aa22b936e7ae50a178982f8c5c69d0ee0c303d 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/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-09-29 00:02-0400\n" -"PO-Revision-Date: 2013-09-27 19:12+0000\n" -"Last-Translator: zubr139 <zubr139@ukr.net>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,17 +44,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -73,25 +80,19 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:255 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Зберігаю..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "особисті налаштування" @@ -108,27 +109,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Змінити Пароль" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index e5332acadba86340826cd48cfaf3a6ba768afa39..a6bc125a32b1e81665d8f1fa41bfa5265f2de768 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-08-01 01:55-0400\n" -"PO-Revision-Date: 2013-08-01 03:10+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -38,20 +38,20 @@ msgstr "Будь ласка, надайте дійсний ключ та пар msgid "Error configuring Google Drive storage" msgstr "Помилка при налаштуванні сховища Google Drive" -#: lib/config.php:448 +#: 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>Попередження:</b> Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його." -#: lib/config.php:451 +#: 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>Попередження:</b> Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її." -#: lib/config.php:454 +#: 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/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 617e1276bfd7cb1e4910b3cfd74f44661af71491..ce817bd5a2666297815b4941ea84a6becbfb0e02 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -28,45 +28,45 @@ msgstr "Неможливо видалити %s назавжди" msgid "Couldn't restore %s" msgstr "Неможливо відновити %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "виконати операцію відновлення" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Помилка" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "видалити файл назавжди" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Видалити назавжди" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Ім'я" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Видалено" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "відновлено" @@ -74,11 +74,11 @@ msgstr "відновлено" msgid "Nothing in here. Your trash bin is empty!" msgstr "Нічого немає. Ваший кошик для сміття пустий!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Відновити" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Видалити" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index af53a22d88cb9fd219bc28c5c38d289bc92e9b64..c5b93ce899187f53c5979623d7345cdc543f67d7 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -17,322 +17,329 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Допомога" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Особисте" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Налаштування" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Користувачі" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Адмін" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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 "ZIP завантаження вимкнено." -#: 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 "Вибрані фали завеликі для генерування zip файлу." -#: 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 "%s введіть ім'я користувача бази даних." -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s введіть назву бази даних." -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s не можна використовувати крапки в назві бази даних" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL ім'я користувача та/або пароль не дійсні: %s" -#: 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 "Вам потрібно ввести або існуючий обліковий запис або administrator." -#: setup/mysql.php:12 +#: private/setup/mysql.php:12 msgid "MySQL username and/or password not valid" msgstr "MySQL ім'я користувача та/або пароль не дійсні" -#: 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 "Помилка БД: \"%s\"" -#: 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 "Команда, що викликала проблему: \"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Користувач MySQL '%s'@'localhost' вже існує." -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "Видалити цього користувача з MySQL" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Користувач MySQL '%s'@'%%' вже існує" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "Видалити цього користувача з MySQL." -#: 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 "Oracle ім'я користувача та/або пароль не дійсні" -#: 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 "Команда, що викликала проблему: \"%s\", ім'я: %s, пароль: %s" -#: 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 "PostgreSQL ім'я користувача та/або пароль не дійсні" -#: 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 "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Будь ласка, перевірте <a href='%s'>інструкції по встановленню</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Не вдалося знайти категорію \"%s\"" + +#: 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 "Не вдалося знайти категорію \"%s\"" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 912467cac901b92e2f7c63bb138375394e55ea6d..9eb33b3246a44330b5f952174c0441dc512731c5 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-29 00:02-0400\n" -"PO-Revision-Date: 2013-09-27 19:43+0000\n" -"Last-Translator: zubr139 <zubr139@ukr.net>\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" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -158,15 +158,15 @@ msgstr "Оновити" msgid "Updated" msgstr "Оновлено" -#: js/personal.js:221 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:288 +#: js/personal.js:292 msgid "Saving..." msgstr "Зберігаю..." @@ -342,46 +342,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "Безпека" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Примусове застосування HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Протокол" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "Рівень протоколювання" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "Більше" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "Менше" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Версія" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index db0bfc141d0820d12cc2c7b998b3530946ed537d..ef8068cc5420eccd271b9871b04a246ea4e32f36 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Не вдалося видалити конфігурацію сервера" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "Конфігурація вірна і зв'язок може бути встановлений !" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Конфігурація вірна, але встановити зв'язок не вдалося. Будь ласка, перевірте налаштування сервера і облікові дані." -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index ab9aac58cff8ec3981eaad50151935bc3524b535..9f41f5bb7e9cd78ef8dff44189fd56ab32696a42 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -314,8 +319,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "ایرر" @@ -335,126 +340,134 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "شئیرنگ ختم کرنے کے دوران ایرر" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "اختیارات کو تبدیل کرنے کے دوران ایرر" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "اس کے ساتھ شئیر کریں" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "لنک کے ساتھ شئیر کریں" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "پاسورڈ سے محفوظ کریں" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "پاسورڈ" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "تاریخ معیاد سیٹ کریں" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "تاریخ معیاد" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "کوئی لوگ نہیں ملے۔" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "دوبارہ شئیر کرنے کی اجازت نہیں" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "شئیرنگ ختم کریں" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "ایڈٹ کر سکے" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "اسیس کنٹرول" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "نیا بنائیں" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "اپ ڈیٹ" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "ختم کریں" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "شئیر کریں" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "پاسورڈ سے محفوظ کیا گیا ہے" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -491,7 +504,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "آپ ای میل کے ذریعے اپنے پاسورڈ ری سیٹ کا لنک موصول کریں گے" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "یوزر نیم" @@ -563,7 +576,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -617,48 +640,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "ایک<strong> ایڈمن اکاؤنٹ</strong> بنائیں" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "ایڈوانسڈ" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "ڈیٹا فولڈر" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "ڈیٹا بیس کونفگر کریں" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "استعمال ہو گا" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "ڈیٹابیس یوزر" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "ڈیٹابیس پاسورڈ" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "ڈیٹابیس کا نام" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "ڈیٹابیس ٹیبل سپیس" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "ڈیٹابیس ہوسٹ" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "سیٹ اپ ختم کریں" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -682,19 +709,27 @@ msgstr "" msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "کیا آپ پاسورڈ بھول گئے ہیں؟" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "یاد رکھیں" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "لاگ ان" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -702,7 +737,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 2efc8cf7473f0759276ae4f143c6882a4124985d..08d2cebd46336c74cf3dbd36540702a1afa77303 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "ایرر" @@ -163,13 +163,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -207,31 +207,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -292,49 +305,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "شئیرنگ ختم کریں" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ur_PK/files_encryption.po b/l10n/ur_PK/files_encryption.po index 9bf9cd875cb94d39206d43f0208e53f00782f028..627123bd44a8eac9f9097d6fba41c1a472b19c8a 100644 --- a/l10n/ur_PK/files_encryption.po +++ b/l10n/ur_PK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:44 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:45 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:263 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 7ccb9117fbdffe29bada7ac2d2200a1395ae53bd..3056d8fb9538a7b8e735a7958ae3e1f9966fd821 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "ایرر" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -71,11 +71,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index a5cf0b44cdd18161b7c33329cd10e221934c0281..bdc24e477e20eb1b838efebb6d2daefcd30bacc9 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <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,318 +17,325 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "مدد" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "ذاتی" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "سیٹینگز" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "یوزرز" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "ایڈمن" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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/ur_PK/settings.po b/l10n/ur_PK/settings.po index 2893f058698b459184db1abe193bf36800b79e67..13f090d58c089ce16e4ff5d84cecb6f10c19a09b 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "ایرر" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index fd54d8167be69059178e9dae354e051f6118616f..d79a6ad3ff694d69fec3a09af9aede4c0bd72204 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/vi/core.po b/l10n/vi/core.po index d2f455e39e96e78cee3081683b7bf3fcb8a4d1aa..0304dc8dedc9237390287a05b5c617830dbfd530 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,17 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "nhóm" @@ -310,8 +315,8 @@ msgstr "Loại đối tượng không được chỉ định." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "Lỗi" @@ -331,126 +336,134 @@ msgstr "Được chia sẻ" msgid "Share" msgstr "Chia sẻ" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "Lỗi trong quá trình gỡ chia sẻ" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "Lỗi trong quá trình phân quyền" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "Đã được chia sẽ với bạn và nhóm {group} bởi {owner}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "Đã được chia sẽ bởi {owner}" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "Chia sẻ với" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "Chia sẻ với liên kết" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "Mật khẩu bảo vệ" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Mật khẩu" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "Liên kết email tới cá nhân" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "Gởi" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "Đặt ngày kết thúc" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "Ngày kết thúc" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "Chia sẻ thông qua email" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "Không tìm thấy người nào" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "Chia sẻ lại không được cho phép" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "Đã được chia sẽ trong {item} với {user}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "có thể chỉnh sửa" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "quản lý truy cập" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "tạo" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "cập nhật" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "xóa" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "chia sẻ" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Email đã được gửi" +#: js/share.js:729 +msgid "Warning" +msgstr "Cảnh báo" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -487,7 +500,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Vui lòng kiểm tra Email để khôi phục lại mật khẩu." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "Tên đăng nhập" @@ -559,7 +572,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -613,48 +636,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "Tạo một <strong>tài khoản quản trị</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "Nâng cao" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "Thư mục dữ liệu" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "Cấu hình cơ sở dữ liệu" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "được sử dụng" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "Người dùng cơ sở dữ liệu" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "Mật khẩu cơ sở dữ liệu" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "Tên cơ sở dữ liệu" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "Cơ sở dữ liệu tablespace" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "Database host" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "Cài đặt hoàn tất" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -678,19 +705,27 @@ msgstr "Nếu bạn không thay đổi mật khẩu gần đây của bạn, tà msgid "Please change your password to secure your account again." msgstr "Vui lòng thay đổi mật khẩu của bạn để đảm bảo tài khoản của bạn một lần nữa." -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "Bạn quên mật khẩu ?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "ghi nhớ" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "Đăng nhập" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "Đăng nhập khác" @@ -698,7 +733,12 @@ msgstr "Đăng nhập khác" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/vi/files.po b/l10n/vi/files.po index df0a42f78e5ce8bc4e8f8df7a873ab9a85941953..74b8446e5bbfc24ae21272fc04b1da91168ccd0e 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -87,7 +87,7 @@ msgstr "" msgid "Invalid directory." msgstr "Thư mục không hợp lệ" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "Tập tin" @@ -120,7 +120,7 @@ msgstr "URL không được để trống." 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "Lỗi" @@ -164,12 +164,12 @@ msgstr "đã thay thế {new_name} bằng {old_name}" msgid "undo" msgstr "lùi lại" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -205,31 +205,44 @@ msgstr "Your storage is full, files can not be updated or synced anymore!" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Your storage is almost full ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "Tên" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "Thay đổi" @@ -290,49 +303,49 @@ msgstr "Thư mục" msgid "From link" msgstr "Từ liên kết" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "File đã bị xóa" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "Bạn không có quyền ghi vào đây." -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "Không có gì ở đây .Hãy tải lên một cái gì đó !" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "Tải về" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "Xóa" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "Tập tin tải lên quá lớn" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ ." -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Tập tin đang được quét ,vui lòng chờ." -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "Hiện tại đang quét" diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index aeea77799a94a0f79ba32aebd8954eabbb61e319..acda5db65aa9b86deb115cf507309b6c2622a1b5 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -44,17 +44,24 @@ msgstr "Đã đổi mật khẩu." msgid "Could not change the password. Maybe the old password was not correct." msgstr "Không thể đổi mật khẩu. Có lẽ do mật khẩu cũ không đúng." -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -62,36 +69,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "Đang lưu..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -108,27 +109,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "Bật" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "Tắt" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "Đổi Mật khẩu" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 66d06e79b22243323c3d736c3cebe4ed4b77adc1..0d5260e98e7c5ebbc8b8df04d13fc6d3926fe8ec 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -18,7 +18,7 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\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 "Đã cấp quyền truy cập" @@ -26,7 +26,7 @@ msgstr "Đã cấp quyền truy cập" msgid "Error configuring Dropbox storage" msgstr "Lỗi cấu hình lưu trữ Dropbox " -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Cấp quyền truy cập" @@ -34,24 +34,24 @@ msgstr "Cấp quyền truy cập" msgid "Please provide a valid Dropbox app key and secret." msgstr "Xin vui lòng cung cấp một ứng dụng Dropbox hợp lệ và mã bí mật." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Lỗi cấu hình lưu trữ 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>Cảnh báo:</b> \"smbclient\" chưa được cài đặt. Mount CIFS/SMB shares là không thể thực hiện được. Hãy hỏi người quản trị hệ thống để cài đặt nó." -#: 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>Cảnh báo:</b> FTP trong PHP chưa được cài đặt hoặc chưa được mở. Mount FTP shares là không thể. Xin hãy yêu cầu quản trị hệ thống của bạn cài đặt 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/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index c0a3d67ec4a82e0744553f9e65ca18300a599d82..6abf104c6a453a2d3dfb992c879bb52d8073340b 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -27,41 +27,41 @@ msgstr "Không thể óa %s vĩnh viễn" msgid "Couldn't restore %s" msgstr "Không thể khôi phục %s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "thực hiện phục hồi" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "Lỗi" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "xóa file vĩnh viễn" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "Xóa vĩnh vễn" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "Tên" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "Đã xóa" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +69,11 @@ msgstr "" 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:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "Khôi phục" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Xóa" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 7ad119bbb6f4c4e07e9b5dca4da105078be0a9a3..e17c35b1e78b1abdcedf781082dae9a73aac021e 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -17,314 +17,321 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "Giúp đỡ" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "Cá nhân" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "Cài đặt" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "Người dùng" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "Quản trị" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "dịch vụ web dưới sự kiểm soát của bạn" -#: 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 "Tải về ZIP đã bị tắt." -#: files.php:227 +#: private/files.php:227 msgid "Files need to be downloaded one by one." msgstr "Tập tin cần phải được tải về từng người một." -#: files.php:228 files.php:256 +#: private/files.php:228 private/files.php:256 msgid "Back to Files" msgstr "Trở lại tập tin" -#: files.php:253 +#: private/files.php:253 msgid "Selected files too large to generate zip file." msgstr "Tập tin được chọn quá lớn để tạo tập tin ZIP." -#: 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 "Ứng dụng không được BẬT" -#: 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 "Lỗi xác thực" -#: json.php:51 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Mã Token đã hết hạn. Hãy tải lại trang." -#: 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 "Tập tin" -#: 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 "Văn bản" -#: search/provider/file.php:29 +#: private/search/provider/file.php:30 msgid "Images" msgstr "Hình ảnh" -#: 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 "không thể tìm thấy mục \"%s\"" + +#: private/template/functions.php:122 msgid "seconds ago" msgstr "vài giây trước" -#: 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 "hôm nay" -#: template/functions.php:100 +#: private/template/functions.php:126 msgid "yesterday" msgstr "hôm qua" -#: 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 "tháng trước" -#: 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 "năm trước" -#: template/functions.php:105 +#: private/template/functions.php:134 msgid "years ago" msgstr "năm trước" -#: 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 "không thể tìm thấy mục \"%s\"" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index a34995956113d595aa5eba2caa252d06cd16a377..16e90c1a643742013b72ecd97113544a9d950b2e 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "Cập nhật lên {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "Tắt" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "Bật" @@ -129,43 +129,43 @@ msgstr "Bật" msgid "Please wait...." msgstr "Xin hãy đợi..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "Đang cập nhật..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "Lỗi khi cập nhật ứng dụng" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "Lỗi" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "Cập nhật" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "Đã cập nhật" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "Đang lưu..." @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "Chỉ cho phép người dùng chia sẻ với những người dùng trong nhóm của họ" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "hơn" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "ít" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index e926fbc3d814a460c44c703901d495b2f86ca7e7..6bcd44e766a3d06a7acf90897cba0ef0df003adc 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index f321e4cfc4b406ee70a70195ab4b5ad7aba7bc3f..ea7c79d482edf6f9be498353f458821dc22fa283 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +20,17 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s 向您分享了 »%s«" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "组" @@ -312,8 +317,8 @@ msgstr "未指定对象类型。" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "错误" @@ -333,126 +338,134 @@ msgstr "已共享" msgid "Share" msgstr "分享" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "共享时出错" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "取消共享时出错" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "修改权限时出错" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} 共享给您及 {group} 组" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "{owner} 与您共享" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "分享之" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "共享链接" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "密码保护" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "密码" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "允许公开上传" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "发送链接到个人" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "发送" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "设置过期日期" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "过期日期" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "通过Email共享" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "未找到此人" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "不允许二次共享" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "在 {item} 与 {user} 共享。" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "取消共享" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "可以修改" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "访问控制" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "创建" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "更新" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "删除" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "共享" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "正在发送..." -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "邮件已发送" +#: js/share.js:729 +msgid "Warning" +msgstr "警告" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -489,7 +502,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "您将会收到包含可以重置密码链接的邮件。" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "用户名" @@ -561,8 +574,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "您好,\n\n%s 向您分享了 %s。\n查看: %s" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -615,48 +638,52 @@ msgstr "关于如何配置服务器,请参见 <a href=\"%s\" target=\"_blank\" msgid "Create an <strong>admin account</strong>" msgstr "创建<strong>管理员账号</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "高级" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "数据目录" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "配置数据库" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "将被使用" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "数据库名" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "数据库表空间" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "安装完成" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -680,19 +707,27 @@ msgstr "如果您没有最近修改您的密码,您的帐户可能会受到影 msgid "Please change your password to secure your account again." msgstr "请修改您的密码,以保护您的账户安全。" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "忘记密码?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "记住" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "登录" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "其他登录方式" @@ -700,8 +735,13 @@ msgstr "其他登录方式" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "您好,<br><br>%s 向您分享了 »%s«。<br><a href=\"%s\">查看</a>" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 26678e7a4538a41164ae367dd0dd89bdab04bae3..555d270359b76301c839d2c7b89f325e548622ae 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -89,7 +89,7 @@ msgstr "" msgid "Invalid directory." msgstr "无效文件夹。" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "文件" @@ -122,7 +122,7 @@ msgstr "URL不能为空" msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "无效的文件夹名。”Shared“ 是 Owncloud 预留的文件夹" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "错误" @@ -166,12 +166,12 @@ msgstr "已将 {old_name}替换成 {new_name}" msgid "undo" msgstr "撤销" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 文件夹" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n个文件" @@ -207,31 +207,44 @@ msgstr "您的存储空间已满,文件将无法更新或同步!" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "您的存储空间即将用完 ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "下载正在准备中。如果文件较大可能会花费一些时间。" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "名称" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "大小" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "修改日期" @@ -292,49 +305,49 @@ msgstr "文件夹" msgid "From link" msgstr "来自链接" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "已删除文件" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "您没有写权限" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "下载" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "取消共享" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "删除" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您正尝试上传的文件超过了此服务器可以上传的最大容量限制" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "文件正在被扫描,请稍候。" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "当前扫描" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index fd619e23d55be759c08b2c81192dd3389b249ad2..e61f96811edcaa6b453a6f85eb1f1643adef1ff9 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -46,17 +46,24 @@ msgstr "密码修改成功。" msgid "Could not change the password. Maybe the old password was not correct." msgstr "不能修改密码。旧密码可能不正确。" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "私钥密码成功更新。" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "无法更新私钥密码。可能旧密码不正确。" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -64,36 +71,30 @@ msgid "" "files." msgstr "您的私有密钥无效!也许是您在 ownCloud 系统外更改了密码 (比如,在您的公司目录)。您可以在个人设置里更新您的私钥密码来恢复访问你的加密文件。" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "保存中" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "您的私钥不正确!可能您在别处更改了密码。" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "您可以在这里解锁您的私钥:" +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "个人设置" @@ -110,27 +111,35 @@ msgstr "启用恢复密钥(允许你在密码丢失后恢复文件):" msgid "Recovery key password" msgstr "恢复密钥密码" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "开启" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "禁用" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "更改恢复密钥密码" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "旧的恢复密钥密码" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "新的恢复密钥密码" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "修改密码" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 10f2bcf69e32dbcb43470990e2a5cc2ab6d28676..3a5df5a89f1c0ad3a11c0e74d15650898ba606f5 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\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 "权限已授予。" @@ -25,7 +25,7 @@ msgstr "权限已授予。" msgid "Error configuring Dropbox storage" msgstr "配置Dropbox存储时出错" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "授权" @@ -33,24 +33,24 @@ msgstr "授权" msgid "Please provide a valid Dropbox app key and secret." msgstr "请提供有效的Dropbox应用key和secret" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "配置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>警告:</b>“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。" -#: 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>警告:</b>PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。" -#: 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/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 3b1a2c820692a16580e2db674860b4be0cb4e5e3..b4b860b9760cd7b4d42b0b48014755885e57f7a0 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-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-16 16:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" "Last-Translator: waterone <suiy02@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -28,41 +28,41 @@ msgstr "无法彻底删除文件%s" msgid "Couldn't restore %s" msgstr "无法恢复%s" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "执行恢复操作" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "错误" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "彻底删除文件" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "永久删除" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "名称" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "已删除" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 文件夹" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n个文件" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "已恢复" @@ -70,11 +70,11 @@ msgstr "已恢复" msgid "Nothing in here. Your trash bin is empty!" msgstr "这里没有东西. 你的回收站是空的!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "恢复" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "删除" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 6d3267bb037b7503b67651a12faacbc3a6001caf..f79a9210b9cc25c6f13089061a1911373f29084a 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <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,314 +20,321 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "帮助" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "个人" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "设置" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "用户" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "管理" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" msgstr "" -#: defaults.php:35 +#: private/defaults.php:36 msgid "web services under your control" msgstr "您控制的web服务" -#: 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 "ZIP 下载已经关闭" -#: 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 "选择的文件太大,无法生成 zip 文件。" -#: 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 "应用未提供 info.xml 文件" -#: 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 "Token 过期,请刷新页面。" -#: 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 "%s 输入数据库用户名。" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s 输入数据库名称。" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s 您不能在数据库名称中使用英文句号。" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 用户名和/或密码无效:%s" -#: 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 "MySQL 数据库用户名和/或密码无效" -#: 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 "数据库错误:\"%s\"" -#: 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 "冲突命令为:\"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL 用户 '%s'@'localhost' 已存在。" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "建议从 MySQL 数据库中丢弃 Drop 此用户" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL 用户 '%s'@'%%' 已存在" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "建议从 MySQL 数据库中丢弃 Drop 此用户。" -#: 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 "Oracle 数据库用户名和/或密码无效" -#: 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 "冲突命令为:\"%s\",名称:%s,密码:%s" -#: 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 "PostgreSQL 数据库用户名和/或密码无效" -#: 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 "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "请认真检查<a href='%s'>安装指南</a>." -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "无法找到分类 \"%s\"" + +#: 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] "%n 分钟前" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小时前" -#: 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] "%n 天前" -#: 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] "%n 月前" -#: 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 "无法找到分类 \"%s\"" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index fc3228827b0d9cd0f3a8ca14f14411619481a439..d24fe6ee6d6e2b2d3ed1374e43a137a8376e3984 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -122,11 +122,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "更新至 {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "禁用" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "开启" @@ -134,43 +134,43 @@ msgstr "开启" msgid "Please wait...." msgstr "请稍等...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "禁用 app 时出错" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "启用 app 时出错" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "正在更新...." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "更新 app 时出错" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "错误" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "更新" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "已更新" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "正在解密文件... 请稍等,可能需要一些时间。" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "保存中" @@ -346,46 +346,54 @@ msgid "Allow users to only share with users in their groups" msgstr "允许用户只向同组用户共享" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "安全" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "强制使用 HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "强制客户端通过加密连接连接到%s。" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "请经由HTTPS连接到这个%s 实例来启用或禁用强制SSL." -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "日志" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "日志级别" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "更多" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "更少" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "版本" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 22c5379e5583a28d4df5f7f74a25bc90ef38d22e..fc1b3807b3d718c6326ee3f04bc897c320f2994d 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -26,17 +26,17 @@ msgstr "清除映射失败。" msgid "Failed to delete the server configuration" msgstr "未能删除服务器配置" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "配置有效,能够建立连接!" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "配置有效但绑定失败。请检查服务器设置和认证信息。" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index b4aef3cc566c26c7df2f843445c8698d0166968d..9c319138ec1895d8e7f07fbc652e0fad51ce2a13 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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,12 +17,17 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/share.php:327 msgid "group" msgstr "" @@ -309,8 +314,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "錯誤" @@ -330,126 +335,134 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "分享時發生錯誤" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "取消分享時發生錯誤" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "更改權限時發生錯誤" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner}與你及群組的分享" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "{owner}與你的分享" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "分享" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "以連結分享" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "密碼保護" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "密碼" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "傳送" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "設定分享期限" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "分享期限" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "以電郵分享" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "找不到" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "取消分享" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "" + +#: js/share.js:361 msgid "can edit" msgstr "" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "新增" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "更新" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "刪除" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "分享" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "郵件已傳" +#: js/share.js:729 +msgid "Warning" +msgstr "" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -486,7 +499,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "你將收到一封電郵" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "用戶名稱" @@ -558,7 +571,17 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" +msgstr "" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" msgstr "" #: templates/edit_categories_dialog.php:4 @@ -612,48 +635,52 @@ msgstr "" msgid "Create an <strong>admin account</strong>" msgstr "建立管理員帳戶" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "進階" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "設定資料庫" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "將被使用" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "資料庫帳戶" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -677,19 +704,27 @@ msgstr "如果你近期未曾更改密碼, 你的帳號可能被洩露!" msgid "Please change your password to secure your account again." msgstr "請更改你的密碼以保護你的帳戶" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "忘記密碼" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "記住" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "登入" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -697,7 +732,12 @@ msgstr "" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" +"href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" msgstr "" #: templates/update.php:3 diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 20aca3cb37e20ea744d09f020c050b6d9ecc1e11..f7e5e4000ac67ac225c1cb55ee6343ad511e5f4d 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-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "" msgid "Invalid directory." msgstr "" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "文件" @@ -119,7 +119,7 @@ msgstr "" 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:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "錯誤" @@ -163,12 +163,12 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -204,31 +204,44 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" msgstr "" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "名稱" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "" @@ -289,49 +302,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "下載" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "取消分享" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "刪除" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index f1049dc1eb636886e55471a5f6a782cd390c9ef0..eb5e9956658e8ca032dd9e2f7333c5985e59af19 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -43,17 +43,24 @@ msgstr "" msgid "Could not change the password. Maybe the old password was not correct." msgstr "" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -61,36 +68,30 @@ msgid "" "files." msgstr "" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "" -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -107,27 +108,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 075e0e775319e523ceb8bb12fc8218481de8f782..a0ce717aa25a627469c17e27cbeac68375699663 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+0000\n" "Last-Translator: I Robot <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,7 +17,7 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\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 "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: 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 "" -#: 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 "" -#: 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/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 31ad547f9b1d93c9ce4c47e4098df9fa6bcad404..ad4303aa9e4dc6f132e42f5be9761baf4d1e6fd7 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-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,41 +27,41 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:100 +#: js/trash.js:7 js/trash.js:102 msgid "perform restore operation" msgstr "" -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148 msgid "Error" msgstr "錯誤" -#: js/trash.js:36 +#: js/trash.js:37 msgid "delete file permanently" msgstr "" -#: js/trash.js:127 +#: js/trash.js:129 msgid "Delete permanently" msgstr "" -#: js/trash.js:182 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "名稱" -#: js/trash.js:183 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "" -#: js/trash.js:191 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/trash.js:197 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: lib/trash.php:819 lib/trash.php:821 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "" @@ -69,11 +69,11 @@ msgstr "" msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "刪除" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 22b7a3e57b444982c02df99d10fd597ec151f0e6..0b9662277b08a28e756c871efba6c262aefbd942 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 13:21+0000\n" "Last-Translator: I Robot <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,314 +17,321 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:237 #, 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:248 msgid "No app name specified" msgstr "" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "幫助" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "個人" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "設定" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "用戶" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "管理" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" msgstr "" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" msgstr "" -#: avatar.php:69 +#: private/avatar.php:69 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/zh_HK/settings.po b/l10n/zh_HK/settings.po index 079b4a52ddfdca50a9f63c4996078552fefedf71..1f4b86c3bb72b2dee87b617273d895411c38c365 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-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\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" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -117,11 +117,11 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "" @@ -129,43 +129,43 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "錯誤" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" msgstr "" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "" @@ -341,46 +341,54 @@ msgid "Allow users to only share with users in their groups" msgstr "" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index ecd9fd8d4c154f9e1f70e3b65127f0bcd972b167..794b71762b8f34b397561eeec62a2a1b941c0b20 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 4db9d316b844049b7a271b30b45e5247599050b6..060ef0108ccc7f3c42e620db7862017926faa0e4 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-09-22 12:55-0400\n" -"PO-Revision-Date: 2013-09-20 15:01+0000\n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" "Last-Translator: I Robot <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" @@ -19,12 +19,17 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:97 +#: ajax/share.php:118 ajax/share.php:197 #, php-format msgid "%s shared »%s« with you" msgstr "%s 與您分享了 %s" -#: ajax/share.php:227 +#: ajax/share.php:168 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "無法寄送郵件給這些使用者:%s" + +#: ajax/share.php:327 msgid "group" msgstr "群組" @@ -94,23 +99,23 @@ msgstr "從最愛移除 %s 時發生錯誤。" #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "未提供圖片或檔案" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "未知的檔案類型" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "無效的圖片" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "沒有臨時用的大頭貼,請再試一次" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "未設定剪裁" #: js/config.php:32 msgid "Sunday" @@ -246,7 +251,7 @@ msgstr "選擇" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "載入檔案選擇器樣板出錯: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -262,26 +267,26 @@ msgstr "好" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "載入訊息樣板出錯: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" +msgstr[0] "{count} 個檔案衝突" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "一個檔案衝突" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "您要保留哪一個檔案?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "如果您同時選擇兩個版本,被複製的那個檔案名稱後面會加上編號" #: js/oc-dialogs.js:376 msgid "Cancel" @@ -289,19 +294,19 @@ msgstr "取消" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "繼續" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(已全選)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "(已選 {count} 項)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "載入檔案存在樣板出錯" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -311,8 +316,8 @@ msgstr "未指定物件類型。" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:645 js/share.js:657 +#: js/oc-vcategories.js:199 js/share.js:130 js/share.js:143 js/share.js:150 +#: js/share.js:667 js/share.js:679 msgid "Error" msgstr "錯誤" @@ -332,126 +337,134 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:131 js/share.js:685 +#: js/share.js:132 js/share.js:707 msgid "Error while sharing" msgstr "分享時發生錯誤" -#: js/share.js:142 +#: js/share.js:143 msgid "Error while unsharing" msgstr "取消分享時發生錯誤" -#: js/share.js:149 +#: js/share.js:150 msgid "Error while changing permissions" msgstr "修改權限時發生錯誤" -#: js/share.js:158 +#: js/share.js:159 msgid "Shared with you and the group {group} by {owner}" msgstr "由 {owner} 分享給您和 {group}" -#: js/share.js:160 +#: js/share.js:161 msgid "Shared with you by {owner}" msgstr "{owner} 已經和您分享" -#: js/share.js:183 +#: js/share.js:184 msgid "Share with" msgstr "分享給別人" -#: js/share.js:188 +#: js/share.js:189 msgid "Share with link" msgstr "使用連結分享" -#: js/share.js:191 +#: js/share.js:192 msgid "Password protect" msgstr "密碼保護" -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +#: js/share.js:194 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "密碼" -#: js/share.js:198 +#: js/share.js:199 msgid "Allow Public Upload" msgstr "允許任何人上傳" -#: js/share.js:202 +#: js/share.js:203 msgid "Email link to person" msgstr "將連結 email 給別人" -#: js/share.js:203 +#: js/share.js:204 msgid "Send" msgstr "寄出" -#: js/share.js:208 +#: js/share.js:209 msgid "Set expiration date" msgstr "指定到期日" -#: js/share.js:209 +#: js/share.js:210 msgid "Expiration date" msgstr "到期日" -#: js/share.js:242 +#: js/share.js:243 msgid "Share via email:" msgstr "透過電子郵件分享:" -#: js/share.js:245 +#: js/share.js:246 msgid "No people found" msgstr "沒有找到任何人" -#: js/share.js:283 +#: js/share.js:284 msgid "Resharing is not allowed" msgstr "不允許重新分享" -#: js/share.js:319 +#: js/share.js:320 msgid "Shared in {item} with {user}" msgstr "已和 {user} 分享 {item}" -#: js/share.js:340 +#: js/share.js:341 msgid "Unshare" msgstr "取消分享" -#: js/share.js:352 +#: js/share.js:353 +msgid "notify user by email" +msgstr "使用郵件通知使用者" + +#: js/share.js:361 msgid "can edit" msgstr "可編輯" -#: js/share.js:354 +#: js/share.js:363 msgid "access control" msgstr "存取控制" -#: js/share.js:357 +#: js/share.js:366 msgid "create" msgstr "建立" -#: js/share.js:360 +#: js/share.js:369 msgid "update" msgstr "更新" -#: js/share.js:363 +#: js/share.js:372 msgid "delete" msgstr "刪除" -#: js/share.js:366 +#: js/share.js:375 msgid "share" msgstr "分享" -#: js/share.js:400 js/share.js:632 +#: js/share.js:409 js/share.js:654 msgid "Password protected" msgstr "受密碼保護" -#: js/share.js:645 +#: js/share.js:667 msgid "Error unsetting expiration date" msgstr "取消到期日設定失敗" -#: js/share.js:657 +#: js/share.js:679 msgid "Error setting expiration date" msgstr "設定到期日發生錯誤" -#: js/share.js:672 +#: js/share.js:694 msgid "Sending ..." msgstr "正在傳送…" -#: js/share.js:683 +#: js/share.js:705 msgid "Email sent" msgstr "Email 已寄出" +#: js/share.js:729 +msgid "Warning" +msgstr "警告" + #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " @@ -488,7 +501,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "重設密碼的連結將會寄到您的電子郵件信箱。" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 +#: templates/login.php:25 msgid "Username" msgstr "使用者名稱" @@ -560,8 +573,18 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -"Cheers!" -msgstr "嗨,\n\n通知您一聲,%s 與您分享了 %s 。\n您可以到 %s 看看" +msgstr "嗨,\n\n%s 和你分享了 %s ,到這裡看它:%s\n" + +#: templates/altmail.php:4 +#, php-format +msgid "" +"The share will expire on %s.\n" +"\n" +msgstr "分享將於 %s 過期\n" + +#: templates/altmail.php:6 templates/mail.php:19 +msgid "Cheers!" +msgstr "太棒了!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -614,48 +637,52 @@ msgstr "請參考<a href=\"%s\" target=\"_blank\">說明文件</a>以瞭解如 msgid "Create an <strong>admin account</strong>" msgstr "建立一個<strong>管理者帳號</strong>" -#: templates/installation.php:65 +#: templates/installation.php:66 msgid "Advanced" msgstr "進階" -#: templates/installation.php:67 +#: templates/installation.php:73 msgid "Data folder" msgstr "資料儲存位置" -#: templates/installation.php:77 +#: templates/installation.php:85 msgid "Configure the database" msgstr "設定資料庫" -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 +#: templates/installation.php:90 templates/installation.php:102 +#: templates/installation.php:113 templates/installation.php:124 +#: templates/installation.php:136 msgid "will be used" msgstr "將會使用" -#: templates/installation.php:140 +#: templates/installation.php:148 msgid "Database user" msgstr "資料庫使用者" -#: templates/installation.php:147 +#: templates/installation.php:155 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:152 +#: templates/installation.php:160 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:160 +#: templates/installation.php:168 msgid "Database tablespace" msgstr "資料庫 tablespace" -#: templates/installation.php:167 +#: templates/installation.php:175 msgid "Database host" msgstr "資料庫主機" -#: templates/installation.php:175 +#: templates/installation.php:184 msgid "Finish setup" msgstr "完成設定" +#: templates/installation.php:184 +msgid "Finishing …" +msgstr "即將完成…" + #: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." @@ -679,19 +706,27 @@ msgstr "如果您最近並未更改密碼,您的帳號可能已經遭到入侵 msgid "Please change your password to secure your account again." msgstr "請更改您的密碼以再次取得您帳戶的控制權。" -#: templates/login.php:32 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:38 msgid "Lost your password?" msgstr "忘記密碼?" -#: templates/login.php:37 +#: templates/login.php:43 msgid "remember" msgstr "記住" -#: templates/login.php:39 +#: templates/login.php:46 msgid "Log in" msgstr "登入" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "其他登入方法" @@ -699,8 +734,13 @@ msgstr "其他登入方法" #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " -"href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "嗨,<br><br>通知您一聲,%s 與您分享了 %s ,<br><a href=\"%s\">看一下吧</a>" +"href=\"%s\">View it!</a><br><br>" +msgstr "嗨,<br><br>%s 和你分享了 %s ,到<a href=\"%s\">這裡</a>看它<br><br>" + +#: templates/mail.php:17 +#, php-format +msgid "The share will expire on %s.<br><br>" +msgstr "分享將於 %s 過期<br><br>" #: templates/update.php:3 #, php-format diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 60f8fdf7a0d9e27f103383d652fdff47d1a645de..f75d7a8e4c1379d68d107855bff0b4c0ecbfd891 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:44-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:40+0000\n" +"Last-Translator: pellaeon <nfsmwlin@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,23 +77,23 @@ msgstr "儲存空間不足" #: ajax/upload.php:120 ajax/upload.php:143 msgid "Upload failed. Could not get file info." -msgstr "" +msgstr "上傳失敗,無法取得檔案資訊" #: ajax/upload.php:136 msgid "Upload failed. Could not find uploaded file" -msgstr "" +msgstr "上傳失敗,找不到上傳的檔案" #: ajax/upload.php:160 msgid "Invalid directory." msgstr "無效的資料夾" -#: appinfo/app.php:12 +#: appinfo/app.php:11 msgid "Files" msgstr "檔案" #: js/file-upload.js:244 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "因為 {filename} 是個目錄或是大小為零,所以無法上傳" #: js/file-upload.js:255 msgid "Not enough space available" @@ -105,7 +105,7 @@ msgstr "上傳已取消" #: js/file-upload.js:356 msgid "Could not get result from server." -msgstr "" +msgstr "無法從伺服器取回結果" #: js/file-upload.js:446 msgid "" @@ -120,7 +120,7 @@ msgstr "URL 不能為空" msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留" -#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:507 js/files.js:545 +#: js/file-upload.js:557 js/file-upload.js:573 js/files.js:516 js/files.js:554 msgid "Error" msgstr "錯誤" @@ -164,12 +164,12 @@ msgstr "使用 {new_name} 取代 {old_name}" msgid "undo" msgstr "復原" -#: js/filelist.js:533 js/filelist.js:599 js/files.js:576 +#: js/filelist.js:533 js/filelist.js:599 js/files.js:585 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 個資料夾" -#: js/filelist.js:534 js/filelist.js:600 js/files.js:582 +#: js/filelist.js:534 js/filelist.js:600 js/files.js:591 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n 個檔案" @@ -205,31 +205,44 @@ msgstr "您的儲存空間已滿,沒有辦法再更新或是同步檔案!" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "您的儲存空間快要滿了 ({usedSpacePercent}%)" -#: js/files.js:67 +#: js/files.js:68 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +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 "無效的檔案加密私鑰,請在個人設定中更新您的私鑰密語以存取加密的檔案。" + +#: js/files.js:76 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "加密已經被停用,但是您的舊檔案還是處於已加密的狀態,請前往個人設定以解密這些檔案。" -#: js/files.js:296 +#: js/files.js:305 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "正在準備您的下載,若您的檔案較大,將會需要更多時間。" -#: js/files.js:507 js/files.js:545 +#: js/files.js:516 js/files.js:554 msgid "Error moving file" -msgstr "" +msgstr "移動檔案失敗" -#: js/files.js:558 templates/index.php:61 +#: js/files.js:567 templates/index.php:59 msgid "Name" msgstr "名稱" -#: js/files.js:559 templates/index.php:73 +#: js/files.js:568 templates/index.php:71 msgid "Size" msgstr "大小" -#: js/files.js:560 templates/index.php:75 +#: js/files.js:569 templates/index.php:73 msgid "Modified" msgstr "修改時間" @@ -290,49 +303,49 @@ msgstr "資料夾" msgid "From link" msgstr "從連結" -#: templates/index.php:33 +#: templates/index.php:32 msgid "Deleted files" msgstr "回收桶" -#: templates/index.php:39 +#: templates/index.php:37 msgid "Cancel upload" msgstr "取消上傳" -#: templates/index.php:45 +#: templates/index.php:43 msgid "You don’t have write permissions here." msgstr "您在這裡沒有編輯權" -#: templates/index.php:50 +#: templates/index.php:48 msgid "Nothing in here. Upload something!" msgstr "這裡還沒有東西,上傳一些吧!" -#: templates/index.php:67 +#: templates/index.php:65 msgid "Download" msgstr "下載" -#: templates/index.php:80 templates/index.php:81 +#: templates/index.php:78 templates/index.php:79 msgid "Unshare" msgstr "取消分享" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:84 templates/index.php:85 msgid "Delete" msgstr "刪除" -#: templates/index.php:100 +#: templates/index.php:98 msgid "Upload too large" msgstr "上傳過大" -#: templates/index.php:102 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您試圖上傳的檔案大小超過伺服器的限制。" -#: templates/index.php:107 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "正在掃描檔案,請稍等。" -#: templates/index.php:110 +#: templates/index.php:108 msgid "Current scanning" msgstr "正在掃描" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 2adbae532d964523dadd4a67bf13aea5c5da853b..021e5775dc2719e1540d1de59b3f7d31bc5f1fac 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" "Last-Translator: I Robot <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" @@ -45,17 +45,24 @@ msgstr "成功變更密碼。" msgid "Could not change the password. Maybe the old password was not correct." msgstr "無法變更密碼,或許是輸入的舊密碼不正確。" -#: ajax/updatePrivateKeyPassword.php:51 +#: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." msgstr "" -#: ajax/updatePrivateKeyPassword.php:53 +#: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." msgstr "" -#: files/error.php:7 +#: files/error.php:9 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:12 msgid "" "Your private key is not valid! Likely your password was changed outside the " "ownCloud system (e.g. your corporate directory). You can update your private" @@ -63,36 +70,30 @@ msgid "" "files." msgstr "您的私鑰不正確! 感覺像是密碼在 ownCloud 系統之外被改變(例:您的目錄)。 您可以在個人設定中更新私鑰密碼取回已加密的檔案。" -#: hooks/hooks.php:41 +#: hooks/hooks.php:53 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:42 +#: hooks/hooks.php:54 msgid "" "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." msgstr "" -#: hooks/hooks.php:249 +#: hooks/hooks.php:254 msgid "Following users are not set up for encryption:" msgstr "" -#: js/settings-admin.js:11 +#: js/settings-admin.js:13 msgid "Saving..." msgstr "儲存中..." -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 +#: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "" @@ -109,27 +110,35 @@ msgstr "" msgid "Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:54 +#: templates/settings-admin.php:17 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:24 templates/settings-personal.php:54 msgid "Enabled" msgstr "已啓用" -#: templates/settings-admin.php:29 templates/settings-personal.php:62 +#: templates/settings-admin.php:32 templates/settings-personal.php:62 msgid "Disabled" msgstr "已停用" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:37 msgid "Change recovery key password:" msgstr "" -#: templates/settings-admin.php:41 +#: templates/settings-admin.php:43 msgid "Old Recovery key password" msgstr "" -#: templates/settings-admin.php:48 +#: templates/settings-admin.php:50 msgid "New Recovery key password" msgstr "" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:56 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:61 msgid "Change Password" msgstr "變更密碼" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 8296c419b966e92ab33c051e8bb79bea873fdd52..0bd4012e4a22c836134ea6b49253c60b1a0b4783 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-01 18:37+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" @@ -18,7 +18,7 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\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 "允許存取" @@ -26,7 +26,7 @@ msgstr "允許存取" msgid "Error configuring Dropbox storage" msgstr "設定 Dropbox 儲存時發生錯誤" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "允許存取" @@ -34,24 +34,24 @@ msgstr "允許存取" msgid "Please provide a valid Dropbox app key and secret." msgstr "請提供有效的 Dropbox app key 和 app secret 。" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "設定 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>警告</b>:未安裝 \"smbclient\" ,因此無法掛載 CIFS/SMB 分享,請洽您的系統管理員將其安裝。" -#: 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>警告</b>:PHP 並未啓用 FTP 的支援,因此無法掛載 FTP 分享,請洽您的系統管理員將其安裝並啓用。" -#: 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/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 57f79d287d91d5f7bffa65954787e19fc6c771cd..645968ec0b5a7a80d676b6a2c8f2d5476503c3e4 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-09-01 13:27-0400\n" -"PO-Revision-Date: 2013-09-01 13:20+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -44,25 +44,25 @@ msgstr "永久刪除檔案" msgid "Delete permanently" msgstr "永久刪除" -#: js/trash.js:184 templates/index.php:17 +#: js/trash.js:190 templates/index.php:21 msgid "Name" msgstr "名稱" -#: js/trash.js:185 templates/index.php:27 +#: js/trash.js:191 templates/index.php:31 msgid "Deleted" msgstr "已刪除" -#: js/trash.js:193 +#: js/trash.js:199 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 個資料夾" -#: js/trash.js:199 +#: js/trash.js:205 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n 個檔案" -#: lib/trash.php:814 lib/trash.php:816 +#: lib/trashbin.php:814 lib/trashbin.php:816 msgid "restored" msgstr "已還原" @@ -70,11 +70,11 @@ msgstr "已還原" msgid "Nothing in here. Your trash bin is empty!" msgstr "您的回收桶是空的!" -#: templates/index.php:20 templates/index.php:22 +#: templates/index.php:24 templates/index.php:26 msgid "Restore" msgstr "還原" -#: templates/index.php:30 templates/index.php:31 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "刪除" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 93ad380deccaf74ddc2b3367432b2dad41a69807..bc8ee7c2a27413b8426b91412c2029ae98372339 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-09-16 11:33-0400\n" -"PO-Revision-Date: 2013-09-16 15:34+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" "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,314 +18,321 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:239 +#: private/app.php:237 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "無法安裝應用程式 %s 因為它和此版本的 ownCloud 不相容。" -#: app.php:250 +#: private/app.php:248 msgid "No app name specified" msgstr "沒有指定應用程式名稱" -#: app.php:361 +#: private/app.php:352 msgid "Help" msgstr "說明" -#: app.php:374 +#: private/app.php:365 msgid "Personal" msgstr "個人" -#: app.php:385 +#: private/app.php:376 msgid "Settings" msgstr "設定" -#: app.php:397 +#: private/app.php:388 msgid "Users" msgstr "使用者" -#: app.php:410 +#: private/app.php:401 msgid "Admin" msgstr "管理" -#: app.php:839 +#: private/app.php:832 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "升級失敗:%s" -#: avatar.php:56 +#: private/avatar.php:56 msgid "Custom profile pictures don't work with encryption yet" -msgstr "" +msgstr "自訂大頭貼暫時不能和加密功能同時使用" -#: avatar.php:64 +#: private/avatar.php:64 msgid "Unknown filetype" -msgstr "" +msgstr "未知的檔案類型" -#: avatar.php:69 +#: private/avatar.php:69 msgid "Invalid image" -msgstr "" +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 "無法開啓 %s" -#: files.php:226 +#: private/files.php:226 msgid "ZIP download is turned off." msgstr "ZIP 下載已關閉。" -#: 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 "從 http 安裝應用程式,找不到 href 屬性" -#: 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 "不支援 %s 格式的壓縮檔" -#: 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 "應用程式沒有提供 info.xml 檔案" -#: 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 "無法安裝應用程式因為它和此版本的 ownCloud 不相容。" -#: 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 "無法安裝應用程式,因為它包含了 <shipped>true</shipped> 標籤,在未發行的應用程式當中這是不允許的" -#: 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 "無法安裝應用程式,因為它在 info.xml/version 宣告的版本與 app store 當中記載的版本不同" -#: 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 "無法建立應用程式目錄,請檢查權限:%s" -#: 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 "Token 過期,請重新整理頁面。" -#: 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 "%s 輸入資料庫使用者名稱。" -#: setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "%s 輸入資料庫名稱。" -#: setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s 資料庫名稱不能包含小數點" -#: setup/mssql.php:20 +#: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 使用者和/或密碼無效:%s" -#: 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 "MySQL 用戶名和/或密碼無效" -#: 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 "資料庫錯誤:\"%s\"" -#: 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 "有問題的指令是:\"%s\"" -#: setup/mysql.php:85 +#: private/setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "MySQL 使用者 '%s'@'localhost' 已經存在。" -#: setup/mysql.php:86 +#: private/setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "在 MySQL 移除這個使用者" -#: setup/mysql.php:91 +#: private/setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "MySQL 使用者 '%s'@'%%' 已經存在" -#: setup/mysql.php:92 +#: private/setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "在 MySQL 移除這個使用者。" -#: setup/oci.php:34 +#: private/setup/oci.php:34 msgid "Oracle connection could not be established" msgstr "無法建立 Oracle 資料庫連線" -#: 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 "Oracle 用戶名和/或密碼無效" -#: 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 "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"" -#: 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 "PostgreSQL 用戶名和/或密碼無效" -#: 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 "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。" -#: setup.php:185 +#: private/setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "請參考<a href='%s'>安裝指南</a>。" -#: template/functions.php:96 +#: private/tags.php:194 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "找不到分類:\"%s\"" + +#: 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] "%n 分鐘前" -#: template/functions.php:98 +#: private/template/functions.php:124 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: 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] "%n 天前" -#: 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] "%n 個月前" -#: 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 "找不到分類:\"%s\"" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 5c24961e5cb323bf56bf9d2263e11a5ac45e8f2a..e7728f4604bde2dbd16039ec21add8210e8e37c0 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-20 10:45-0400\n" -"PO-Revision-Date: 2013-09-20 14:45+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 16:10+0000\n" +"Last-Translator: pellaeon <nfsmwlin@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,42 +87,42 @@ msgstr "無法更新應用程式" #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "密碼錯誤" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "未提供使用者" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "請提供管理者還原密碼,否則會遺失所有使用者資料" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "錯誤的管理者還原密碼" #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "後端不支援變更密碼,但成功更新使用者的加密金鑰" #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "無法修改密碼" #: js/apps.js:43 msgid "Update to {appversion}" msgstr "更新至 {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:108 +#: js/apps.js:49 js/apps.js:82 js/apps.js:110 msgid "Disable" msgstr "停用" -#: js/apps.js:49 js/apps.js:89 js/apps.js:102 js/apps.js:117 +#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 msgid "Enable" msgstr "啟用" @@ -130,43 +130,43 @@ msgstr "啟用" msgid "Please wait...." msgstr "請稍候..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:100 +#: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" msgstr "停用應用程式錯誤" -#: js/apps.js:99 js/apps.js:112 js/apps.js:113 +#: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" msgstr "啓用應用程式錯誤" -#: js/apps.js:123 +#: js/apps.js:125 msgid "Updating...." msgstr "更新中..." -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error while updating app" msgstr "更新應用程式錯誤" -#: js/apps.js:126 +#: js/apps.js:128 msgid "Error" msgstr "錯誤" -#: js/apps.js:127 templates/apps.php:43 +#: js/apps.js:129 templates/apps.php:43 msgid "Update" msgstr "更新" -#: js/apps.js:130 +#: js/apps.js:132 msgid "Updated" msgstr "已更新" -#: js/personal.js:220 +#: js/personal.js:225 msgid "Select a profile picture" -msgstr "" +msgstr "選擇大頭貼" -#: js/personal.js:265 +#: js/personal.js:270 msgid "Decrypting files... Please wait, this can take some time." msgstr "檔案解密中,請稍候。" -#: js/personal.js:287 +#: js/personal.js:292 msgid "Saving..." msgstr "儲存中..." @@ -342,46 +342,54 @@ msgid "Allow users to only share with users in their groups" msgstr "僅允許使用者在群組內分享" #: templates/admin.php:170 +msgid "Allow mail notification" +msgstr "允許郵件通知" + +#: templates/admin.php:171 +msgid "Allow user to send mail notification for shared files" +msgstr "允許使用者分享檔案時寄出通知郵件" + +#: templates/admin.php:178 msgid "Security" msgstr "安全性" -#: templates/admin.php:183 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "強制啟用 HTTPS" -#: templates/admin.php:185 +#: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "強迫用戶端使用加密連線連接到 %s" -#: templates/admin.php:191 +#: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。" -#: templates/admin.php:203 +#: templates/admin.php:211 msgid "Log" msgstr "紀錄" -#: templates/admin.php:204 +#: templates/admin.php:212 msgid "Log level" msgstr "紀錄層級" -#: templates/admin.php:235 +#: templates/admin.php:243 msgid "More" msgstr "更多" -#: templates/admin.php:236 +#: templates/admin.php:244 msgid "Less" msgstr "更少" -#: templates/admin.php:242 templates/personal.php:161 +#: templates/admin.php:250 templates/personal.php:161 msgid "Version" msgstr "版本" -#: templates/admin.php:246 templates/personal.php:164 +#: templates/admin.php:254 templates/personal.php:164 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -494,27 +502,27 @@ msgstr "個人資料照片" #: templates/personal.php:90 msgid "Upload new" -msgstr "" +msgstr "上傳新的" #: templates/personal.php:92 msgid "Select new from Files" -msgstr "" +msgstr "從已上傳的檔案中選一個" #: templates/personal.php:93 msgid "Remove image" -msgstr "" +msgstr "移除圖片" #: templates/personal.php:94 msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "" +msgstr "可以使用 png 或 jpg 格式,最好是方形的,但是您之後也可以裁剪它" #: templates/personal.php:97 msgid "Abort" -msgstr "" +msgstr "中斷" #: templates/personal.php:98 msgid "Choose as profile image" -msgstr "" +msgstr "設定為大頭貼" #: templates/personal.php:106 templates/personal.php:107 msgid "Language" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 50beca64ee57462303b741967abc63e8fd033ee8..c33ca060231ad923375129ede3ae2eed0d12ad80 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-05 11:51+0000\n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+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" @@ -27,17 +27,17 @@ msgstr "清除映射失敗" msgid "Failed to delete the server configuration" msgstr "刪除伺服器設定時失敗" -#: ajax/testConfiguration.php:36 +#: ajax/testConfiguration.php:37 msgid "The configuration is valid and the connection could be established!" msgstr "設定有效且連線可建立" -#: ajax/testConfiguration.php:39 +#: ajax/testConfiguration.php:40 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "設定有效但連線無法建立,請檢查伺服器設定與認證資料。" -#: ajax/testConfiguration.php:43 +#: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." diff --git a/lib/base.php b/lib/base.php index bf2c51f0ad3435344f9620ea12e1bcfdfd7f90c2..7299a012da9c07245be388b78841dc334dfba558 100644 --- a/lib/base.php +++ b/lib/base.php @@ -493,6 +493,11 @@ class OC { if (isset($_SERVER['PHP_AUTH_USER']) && self::$session->exists('user_id') && $_SERVER['PHP_AUTH_USER'] != self::$session->get('user_id')) { + $sessionUser = self::$session->get('user_id'); + $serverUser = $_SERVER['PHP_AUTH_USER']; + OC_Log::write('core', + "Session user-id ($sessionUser) doesn't match SERVER[PHP_AUTH_USER] ($serverUser).", + OC_Log::WARN); OC_User::logout(); } @@ -747,11 +752,17 @@ class OC { protected static function handleLogin() { OC_App::loadApps(array('prelogin')); $error = array(); + + // auth possible via apache module? + if (OC::tryApacheAuth()) { + $error[] = 'apacheauthfailed'; + } // remember was checked after last login - if (OC::tryRememberLogin()) { + elseif (OC::tryRememberLogin()) { $error[] = 'invalidcookie'; - // Someone wants to log in : - } elseif (OC::tryFormLogin()) { + } + // logon via web form + elseif (OC::tryFormLogin()) { $error[] = 'invalidpassword'; } @@ -769,6 +780,20 @@ class OC { } } + protected static function tryApacheAuth() { + $return = OC_User::handleApacheAuth(); + + // if return is true we are logged in -> redirect to the default page + if ($return === true) { + $_REQUEST['redirect_url'] = \OC_Request::requestUri(); + OC_Util::redirectToDefaultPage(); + exit; + } + + // in case $return is null apache based auth is not enabled + return is_null($return) ? false : true; + } + protected static function tryRememberLogin() { if (!isset($_COOKIE["oc_remember_login"]) || !isset($_COOKIE["oc_token"]) diff --git a/lib/private/l10n/ach.php b/lib/l10n/ach.php similarity index 100% rename from lib/private/l10n/ach.php rename to lib/l10n/ach.php diff --git a/lib/private/l10n/de_AT.php b/lib/l10n/ady.php similarity index 100% rename from lib/private/l10n/de_AT.php rename to lib/l10n/ady.php diff --git a/lib/private/l10n/af_ZA.php b/lib/l10n/af_ZA.php similarity index 100% rename from lib/private/l10n/af_ZA.php rename to lib/l10n/af_ZA.php diff --git a/lib/private/l10n/ar.php b/lib/l10n/ar.php similarity index 98% rename from lib/private/l10n/ar.php rename to lib/l10n/ar.php index f626dcdfda6213e0238670a5d1a023fbc1ea7646..6870c549940a8183dda5a63c8ae4f6a83958693e 100644 --- a/lib/private/l10n/ar.php +++ b/lib/l10n/ar.php @@ -35,6 +35,7 @@ $TRANSLATIONS = array( "Set an admin password." => "اعداد كلمة مرور للمدير", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة", "Please double check the <a href='%s'>installation guides</a>." => "الرجاء التحقق من <a href='%s'>دليل التنصيب</a>.", +"Could not find category \"%s\"" => "تعذر العثور على المجلد \"%s\"", "seconds ago" => "منذ ثواني", "_%n minute ago_::_%n minutes ago_" => array("","","","","",""), "_%n hour ago_::_%n hours ago_" => array("","","","","",""), @@ -44,7 +45,6 @@ $TRANSLATIONS = array( "last month" => "الشهر الماضي", "_%n month ago_::_%n months ago_" => array("","","","","",""), "last year" => "السنةالماضية", -"years ago" => "سنة مضت", -"Could not find category \"%s\"" => "تعذر العثور على المجلد \"%s\"" +"years ago" => "سنة مضت" ); $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;"; diff --git a/lib/private/l10n/be.php b/lib/l10n/be.php similarity index 100% rename from lib/private/l10n/be.php rename to lib/l10n/be.php diff --git a/lib/private/l10n/bg_BG.php b/lib/l10n/bg_BG.php similarity index 97% rename from lib/private/l10n/bg_BG.php rename to lib/l10n/bg_BG.php index b6cc949eb8a645b3b6c1904eeda2113a7303d8d7..c9de3d64d890e3add68517fc8a0343633da5405d 100644 --- a/lib/private/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -36,6 +36,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Въведете парола за администратор.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи.", "Please double check the <a href='%s'>installation guides</a>." => "Моля направете повторна справка с <a href='%s'>ръководството за инсталиране</a>.", +"Could not find category \"%s\"" => "Невъзможно откриване на категорията \"%s\"", "seconds ago" => "преди секунди", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), @@ -45,7 +46,6 @@ $TRANSLATIONS = array( "last month" => "последният месец", "_%n month ago_::_%n months ago_" => array("",""), "last year" => "последната година", -"years ago" => "последните години", -"Could not find category \"%s\"" => "Невъзможно откриване на категорията \"%s\"" +"years ago" => "последните години" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/bn_BD.php b/lib/l10n/bn_BD.php similarity index 100% rename from lib/private/l10n/bn_BD.php rename to lib/l10n/bn_BD.php diff --git a/lib/private/l10n/bs.php b/lib/l10n/bs.php similarity index 100% rename from lib/private/l10n/bs.php rename to lib/l10n/bs.php diff --git a/lib/private/l10n/ca.php b/lib/l10n/ca.php similarity index 99% rename from lib/private/l10n/ca.php rename to lib/l10n/ca.php index a8769224705c72faad677e15f27c1b5004939d4b..fef5dc3cb22939e6dcb2f8c63e579c3586ca4cb4 100644 --- a/lib/private/l10n/ca.php +++ b/lib/l10n/ca.php @@ -56,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Establiu una contrasenya per l'administrador.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament.", "Please double check the <a href='%s'>installation guides</a>." => "Comproveu les <a href='%s'>guies d'instal·lació</a>.", +"Could not find category \"%s\"" => "No s'ha trobat la categoria \"%s\"", "seconds ago" => "segons enrere", "_%n minute ago_::_%n minutes ago_" => array("fa %n minut","fa %n minuts"), "_%n hour ago_::_%n hours ago_" => array("fa %n hora","fa %n hores"), @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("fa %n mes","fa %n mesos"), "last year" => "l'any passat", "years ago" => "anys enrere", -"Caused by:" => "Provocat per:", -"Could not find category \"%s\"" => "No s'ha trobat la categoria \"%s\"" +"Caused by:" => "Provocat per:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php similarity index 99% rename from lib/private/l10n/cs_CZ.php rename to lib/l10n/cs_CZ.php index ed31ae795298eed30cd0bbde520730dd46563862..145078c0bd268f2b531f1d3b608fc99b3b5d685a 100644 --- a/lib/private/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -56,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Zadejte heslo správce.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server není správně nastaven pro umožnění synchronizace, rozhraní WebDAV se zdá být rozbité.", "Please double check the <a href='%s'>installation guides</a>." => "Zkonzultujte, prosím, <a href='%s'>průvodce instalací</a>.", +"Could not find category \"%s\"" => "Nelze nalézt kategorii \"%s\"", "seconds ago" => "před pár sekundami", "_%n minute ago_::_%n minutes ago_" => array("před %n minutou","před %n minutami","před %n minutami"), "_%n hour ago_::_%n hours ago_" => array("před %n hodinou","před %n hodinami","před %n hodinami"), @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("před %n měsícem","před %n měsíci","před %n měsíci"), "last year" => "minulý rok", "years ago" => "před lety", -"Caused by:" => "Příčina:", -"Could not find category \"%s\"" => "Nelze nalézt kategorii \"%s\"" +"Caused by:" => "Příčina:" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/private/l10n/cy_GB.php b/lib/l10n/cy_GB.php similarity index 98% rename from lib/private/l10n/cy_GB.php rename to lib/l10n/cy_GB.php index 6973b51878f8074c506022c7876a423e48f0c45e..0a52f5df77698abc2953b8535d42507b118d4f7a 100644 --- a/lib/private/l10n/cy_GB.php +++ b/lib/l10n/cy_GB.php @@ -35,6 +35,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Gosod cyfrinair y gweinyddwr.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri.", "Please double check the <a href='%s'>installation guides</a>." => "Gwiriwch y <a href='%s'>canllawiau gosod</a> eto.", +"Could not find category \"%s\"" => "Methu canfod categori \"%s\"", "seconds ago" => "eiliad yn ôl", "_%n minute ago_::_%n minutes ago_" => array("","","",""), "_%n hour ago_::_%n hours ago_" => array("","","",""), @@ -44,7 +45,6 @@ $TRANSLATIONS = array( "last month" => "mis diwethaf", "_%n month ago_::_%n months ago_" => array("","","",""), "last year" => "y llynedd", -"years ago" => "blwyddyn yn ôl", -"Could not find category \"%s\"" => "Methu canfod categori \"%s\"" +"years ago" => "blwyddyn yn ôl" ); $PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/lib/private/l10n/da.php b/lib/l10n/da.php similarity index 99% rename from lib/private/l10n/da.php rename to lib/l10n/da.php index 05a43f42ed93a3aa4020263893f423ed07b5aaae..e4734755ae0b53d0eec9e7c527eb3ffc2cfe0fd7 100644 --- a/lib/private/l10n/da.php +++ b/lib/l10n/da.php @@ -56,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Angiv et admin kodeord.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt.", "Please double check the <a href='%s'>installation guides</a>." => "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>.", +"Could not find category \"%s\"" => "Kunne ikke finde kategorien \"%s\"", "seconds ago" => "sekunder siden", "_%n minute ago_::_%n minutes ago_" => array("%n minut siden","%n minutter siden"), "_%n hour ago_::_%n hours ago_" => array("%n time siden","%n timer siden"), @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("%n måned siden","%n måneder siden"), "last year" => "sidste år", "years ago" => "år siden", -"Caused by:" => "Forårsaget af:", -"Could not find category \"%s\"" => "Kunne ikke finde kategorien \"%s\"" +"Caused by:" => "Forårsaget af:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/de.php b/lib/l10n/de.php similarity index 98% rename from lib/private/l10n/de.php rename to lib/l10n/de.php index 87e7a67b47bc0ca5edeb7bff110d9175618e1cd1..136cdc6476fb5921aa262ff040e09b3e9acd0413 100644 --- a/lib/private/l10n/de.php +++ b/lib/l10n/de.php @@ -56,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Setze Administrator Passwort", "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 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"), @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("","Vor %n Monaten"), "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", -"Caused by:" => "Verursacht durch:", -"Could not find category \"%s\"" => "Die Kategorie \"%s\" konnte nicht gefunden werden." +"Caused by:" => "Verursacht durch:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/es_MX.php b/lib/l10n/de_AT.php similarity index 100% rename from lib/private/l10n/es_MX.php rename to lib/l10n/de_AT.php diff --git a/lib/private/l10n/de_CH.php b/lib/l10n/de_CH.php similarity index 98% rename from lib/private/l10n/de_CH.php rename to lib/l10n/de_CH.php index 33f3446a693192337a4ed70861f236509ac5c54c..c4f06520b50fbddeb5d6bb8a3c38d69addccf8ec 100644 --- a/lib/private/l10n/de_CH.php +++ b/lib/l10n/de_CH.php @@ -43,6 +43,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Setze Administrator Passwort", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the <a href='%s'>installation guides</a>." => "Bitte prüfen Sie 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"), @@ -53,7 +54,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("","Vor %n Monaten"), "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", -"Caused by:" => "Verursacht durch:", -"Could not find category \"%s\"" => "Die Kategorie «%s» konnte nicht gefunden werden." +"Caused by:" => "Verursacht durch:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/de_DE.php b/lib/l10n/de_DE.php similarity index 99% rename from lib/private/l10n/de_DE.php rename to lib/l10n/de_DE.php index 09be0eea22de34f7fb9a0cb64576de4442a6d322..76f0ee8457e7822952810779ffb733011a4bc359 100644 --- a/lib/private/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -56,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Setze Administrator Passwort", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the <a href='%s'>installation guides</a>." => "Bitte prüfen Sie 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 Minute","Vor %n Minuten"), "_%n hour ago_::_%n hours ago_" => array("Vor %n Stunde","Vor %n Stunden"), @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "_%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:", -"Could not find category \"%s\"" => "Die Kategorie \"%s\" konnte nicht gefunden werden." +"Caused by:" => "Verursacht durch:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/el.php b/lib/l10n/el.php similarity index 98% rename from lib/private/l10n/el.php rename to lib/l10n/el.php index dcbf82d4a4bccf3b231ce7c30bfb8d199b84f331..7f74dafca7494eb2457c686a9ccfd5b7d2c00f93 100644 --- a/lib/private/l10n/el.php +++ b/lib/l10n/el.php @@ -39,6 +39,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Εισάγετε συνθηματικό διαχειριστή.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη.", "Please double check the <a href='%s'>installation guides</a>." => "Ελέγξτε ξανά τις <a href='%s'>οδηγίες εγκατάστασης</a>.", +"Could not find category \"%s\"" => "Αδυναμία εύρεσης κατηγορίας \"%s\"", "seconds ago" => "δευτερόλεπτα πριν", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), @@ -49,7 +50,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("",""), "last year" => "τελευταίο χρόνο", "years ago" => "χρόνια πριν", -"Caused by:" => "Προκλήθηκε από:", -"Could not find category \"%s\"" => "Αδυναμία εύρεσης κατηγορίας \"%s\"" +"Caused by:" => "Προκλήθηκε από:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/en@pirate.php b/lib/l10n/en@pirate.php similarity index 100% rename from lib/private/l10n/en@pirate.php rename to lib/l10n/en@pirate.php diff --git a/lib/private/l10n/en_GB.php b/lib/l10n/en_GB.php similarity index 99% rename from lib/private/l10n/en_GB.php rename to lib/l10n/en_GB.php index d02f553eda8e08f415d4bcc499b89b5855517414..26d44f39893a12d650c7bc2ba22d1a4fdf77d83f 100644 --- a/lib/private/l10n/en_GB.php +++ b/lib/l10n/en_GB.php @@ -56,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Set an admin password.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Your web server is not yet properly setup to allow files synchronisation because the WebDAV interface seems to be broken.", "Please double check the <a href='%s'>installation guides</a>." => "Please double check the <a href='%s'>installation guides</a>.", +"Could not find category \"%s\"" => "Could not find category \"%s\"", "seconds ago" => "seconds ago", "_%n minute ago_::_%n minutes ago_" => array("%n minute ago","%n minutes ago"), "_%n hour ago_::_%n hours ago_" => array("%n hour ago","%n hours ago"), @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("%n month ago","%n months ago"), "last year" => "last year", "years ago" => "years ago", -"Caused by:" => "Caused by:", -"Could not find category \"%s\"" => "Could not find category \"%s\"" +"Caused by:" => "Caused by:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/eo.php b/lib/l10n/eo.php similarity index 98% rename from lib/private/l10n/eo.php rename to lib/l10n/eo.php index 5311dd6eb159722129f1b0c44c01cddc5344592c..53d1ec1854d2ed9f45b8a95e5fe05125943e5dfc 100644 --- a/lib/private/l10n/eo.php +++ b/lib/l10n/eo.php @@ -33,6 +33,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Starigi administran pasvorton.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita.", "Please double check the <a href='%s'>installation guides</a>." => "Bonvolu duoble kontroli la <a href='%s'>gvidilon por instalo</a>.", +"Could not find category \"%s\"" => "Ne troviĝis kategorio “%s”", "seconds ago" => "sekundoj antaŭe", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), @@ -42,7 +43,6 @@ $TRANSLATIONS = array( "last month" => "lastamonate", "_%n month ago_::_%n months ago_" => array("",""), "last year" => "lastajare", -"years ago" => "jaroj antaŭe", -"Could not find category \"%s\"" => "Ne troviĝis kategorio “%s”" +"years ago" => "jaroj antaŭe" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/es.php b/lib/l10n/es.php similarity index 95% rename from lib/private/l10n/es.php rename to lib/l10n/es.php index 047d5d955bb9adffefb77388b1f935aa59f0bfb8..289ef360d1c5ff8450305768211384cc83fa2219 100644 --- a/lib/private/l10n/es.php +++ b/lib/l10n/es.php @@ -8,6 +8,9 @@ $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", "cannot open \"%s\"" => "No se puede abrir \"%s\"", "ZIP download is turned off." => "La descarga en ZIP está desactivada.", @@ -53,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Configurar la contraseña del administrador.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", "Please double check the <a href='%s'>installation guides</a>." => "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>.", +"Could not find category \"%s\"" => "No puede encontrar la categoria \"%s\"", "seconds ago" => "hace segundos", "_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"), "_%n hour ago_::_%n hours ago_" => array("Hace %n hora","Hace %n horas"), @@ -63,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), "last year" => "año pasado", "years ago" => "hace años", -"Caused by:" => "Causado por:", -"Could not find category \"%s\"" => "No puede encontrar la categoria \"%s\"" +"Caused by:" => "Causado por:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/es_AR.php b/lib/l10n/es_AR.php similarity index 99% rename from lib/private/l10n/es_AR.php rename to lib/l10n/es_AR.php index f637eb403ed2113597517995ef7ecb8a3ed5036f..668c46b7b10af12ac9b186591328fb0c80cc4728 100644 --- a/lib/private/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -53,6 +53,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Configurar una contraseña de administrador.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar.", "Please double check the <a href='%s'>installation guides</a>." => "Por favor, comprobá nuevamente la <a href='%s'>guía de instalación</a>.", +"Could not find category \"%s\"" => "No fue posible encontrar la categoría \"%s\"", "seconds ago" => "segundos atrás", "_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"), "_%n hour ago_::_%n hours ago_" => array("Hace %n hora","Hace %n horas"), @@ -63,7 +64,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), "last year" => "el año pasado", "years ago" => "años atrás", -"Caused by:" => "Provocado por:", -"Could not find category \"%s\"" => "No fue posible encontrar la categoría \"%s\"" +"Caused by:" => "Provocado por:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/hy.php b/lib/l10n/es_MX.php similarity index 100% rename from lib/private/l10n/hy.php rename to lib/l10n/es_MX.php diff --git a/lib/private/l10n/et_EE.php b/lib/l10n/et_EE.php similarity index 99% rename from lib/private/l10n/et_EE.php rename to lib/l10n/et_EE.php index 85dfaeb52d57f3ba85f5714efd6bc1f0892bc030..c1881141636c110f0f4992521f3f38e2e1758d24 100644 --- a/lib/private/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -56,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Määra admini parool.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv.", "Please double check the <a href='%s'>installation guides</a>." => "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>.", +"Could not find category \"%s\"" => "Ei leia kategooriat \"%s\"", "seconds ago" => "sekundit tagasi", "_%n minute ago_::_%n minutes ago_" => array("","%n minutit tagasi"), "_%n hour ago_::_%n hours ago_" => array("","%n tundi tagasi"), @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("","%n kuud tagasi"), "last year" => "viimasel aastal", "years ago" => "aastat tagasi", -"Caused by:" => "Põhjustaja:", -"Could not find category \"%s\"" => "Ei leia kategooriat \"%s\"" +"Caused by:" => "Põhjustaja:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/eu.php b/lib/l10n/eu.php similarity index 98% rename from lib/private/l10n/eu.php rename to lib/l10n/eu.php index 413819f4f942b84e027034d9c18e8d5a353b1148..9758fdd1f32a024cc8b6f05b6ed7de29304379d3 100644 --- a/lib/private/l10n/eu.php +++ b/lib/l10n/eu.php @@ -39,6 +39,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Ezarri administraziorako pasahitza.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi.", "Please double check the <a href='%s'>installation guides</a>." => "Mesedez begiratu <a href='%s'>instalazio gidak</a>.", +"Could not find category \"%s\"" => "Ezin da \"%s\" kategoria aurkitu", "seconds ago" => "segundu", "_%n minute ago_::_%n minutes ago_" => array("orain dela minutu %n","orain dela %n minutu"), "_%n hour ago_::_%n hours ago_" => array("orain dela ordu %n","orain dela %n ordu"), @@ -49,7 +50,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("orain dela hilabete %n","orain dela %n hilabete"), "last year" => "joan den urtean", "years ago" => "urte", -"Caused by:" => "Honek eraginda:", -"Could not find category \"%s\"" => "Ezin da \"%s\" kategoria aurkitu" +"Caused by:" => "Honek eraginda:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/fa.php b/lib/l10n/fa.php similarity index 98% rename from lib/private/l10n/fa.php rename to lib/l10n/fa.php index e9cb695bade4d5778dd08a9b1e92c60c4d9fa931..788b37039669598487dd88711fe3abbd0883f717 100644 --- a/lib/private/l10n/fa.php +++ b/lib/l10n/fa.php @@ -36,6 +36,7 @@ $TRANSLATIONS = array( "Set an admin password." => "یک رمزعبور برای مدیر تنظیم نمایید.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است.", "Please double check the <a href='%s'>installation guides</a>." => "لطفاً دوباره <a href='%s'>راهنمای نصب</a>را بررسی کنید.", +"Could not find category \"%s\"" => "دسته بندی %s یافت نشد", "seconds ago" => "ثانیهها پیش", "_%n minute ago_::_%n minutes ago_" => array(""), "_%n hour ago_::_%n hours ago_" => array(""), @@ -45,7 +46,6 @@ $TRANSLATIONS = array( "last month" => "ماه قبل", "_%n month ago_::_%n months ago_" => array(""), "last year" => "سال قبل", -"years ago" => "سالهای قبل", -"Could not find category \"%s\"" => "دسته بندی %s یافت نشد" +"years ago" => "سالهای قبل" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/fi.php b/lib/l10n/fi.php similarity index 100% rename from lib/private/l10n/fi.php rename to lib/l10n/fi.php diff --git a/lib/private/l10n/fi_FI.php b/lib/l10n/fi_FI.php similarity index 99% rename from lib/private/l10n/fi_FI.php rename to lib/l10n/fi_FI.php index 1d2bdab749c829750fcd12b2e9b24884df30538e..5e9a9a1a1f3c156f4193d0e61a626cdd297eff33 100644 --- a/lib/private/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -46,6 +46,7 @@ $TRANSLATIONS = array( "Set an admin username." => "Aseta ylläpitäjän käyttäjätunnus.", "Set an admin password." => "Aseta ylläpitäjän salasana.", "Please double check the <a href='%s'>installation guides</a>." => "Lue tarkasti <a href='%s'>asennusohjeet</a>.", +"Could not find category \"%s\"" => "Luokkaa \"%s\" ei löytynyt", "seconds ago" => "sekuntia sitten", "_%n minute ago_::_%n minutes ago_" => array("%n minuutti sitten","%n minuuttia sitten"), "_%n hour ago_::_%n hours ago_" => array("%n tunti sitten","%n tuntia sitten"), @@ -56,7 +57,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("%n kuukausi sitten","%n kuukautta sitten"), "last year" => "viime vuonna", "years ago" => "vuotta sitten", -"Caused by:" => "Aiheuttaja:", -"Could not find category \"%s\"" => "Luokkaa \"%s\" ei löytynyt" +"Caused by:" => "Aiheuttaja:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/fr.php b/lib/l10n/fr.php similarity index 99% rename from lib/private/l10n/fr.php rename to lib/l10n/fr.php index ab3d618849e8a6aaa4f63aaa18b21b76202f4c7a..73cb724a58a0e61b1d6ef0e595ae6127aa6567fd 100644 --- a/lib/private/l10n/fr.php +++ b/lib/l10n/fr.php @@ -56,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Spécifiez un mot de passe administrateur.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut.", "Please double check the <a href='%s'>installation guides</a>." => "Veuillez vous référer au <a href='%s'>guide d'installation</a>.", +"Could not find category \"%s\"" => "Impossible de trouver la catégorie \"%s\"", "seconds ago" => "il y a quelques secondes", "_%n minute ago_::_%n minutes ago_" => array("","il y a %n minutes"), "_%n hour ago_::_%n hours ago_" => array("","Il y a %n heures"), @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("","Il y a %n mois"), "last year" => "l'année dernière", "years ago" => "il y a plusieurs années", -"Caused by:" => "Causé par :", -"Could not find category \"%s\"" => "Impossible de trouver la catégorie \"%s\"" +"Caused by:" => "Causé par :" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/private/l10n/gl.php b/lib/l10n/gl.php similarity index 99% rename from lib/private/l10n/gl.php rename to lib/l10n/gl.php index 406272d690fca4416d3aa5b0f771cdd49450a87e..ce3c7ecf488358ea5971bc8ef42193826c317ad3 100644 --- a/lib/private/l10n/gl.php +++ b/lib/l10n/gl.php @@ -56,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Estabeleza un contrasinal de administrador", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar.", "Please double check the <a href='%s'>installation guides</a>." => "Volva comprobar as <a href='%s'>guías de instalación</a>", +"Could not find category \"%s\"" => "Non foi posíbel atopar a categoría «%s»", "seconds ago" => "segundos atrás", "_%n minute ago_::_%n minutes ago_" => array("hai %n minuto","hai %n minutos"), "_%n hour ago_::_%n hours ago_" => array("hai %n hora","hai %n horas"), @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("hai %n mes","hai %n meses"), "last year" => "último ano", "years ago" => "anos atrás", -"Caused by:" => "Causado por:", -"Could not find category \"%s\"" => "Non foi posíbel atopar a categoría «%s»" +"Caused by:" => "Causado por:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/he.php b/lib/l10n/he.php similarity index 97% rename from lib/private/l10n/he.php rename to lib/l10n/he.php index ced6244ee918081cc201b71adbc8c65222148fde..5bbfffe9ae9ffa75c9fa90f92854b6c42046984f 100644 --- a/lib/private/l10n/he.php +++ b/lib/l10n/he.php @@ -18,6 +18,7 @@ $TRANSLATIONS = array( "Images" => "תמונות", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין.", "Please double check the <a href='%s'>installation guides</a>." => "נא לעיין שוב ב<a href='%s'>מדריכי ההתקנה</a>.", +"Could not find category \"%s\"" => "לא ניתן למצוא את הקטגוריה „%s“", "seconds ago" => "שניות", "_%n minute ago_::_%n minutes ago_" => array("","לפני %n דקות"), "_%n hour ago_::_%n hours ago_" => array("","לפני %n שעות"), @@ -27,7 +28,6 @@ $TRANSLATIONS = array( "last month" => "חודש שעבר", "_%n month ago_::_%n months ago_" => array("","לפני %n חודשים"), "last year" => "שנה שעברה", -"years ago" => "שנים", -"Could not find category \"%s\"" => "לא ניתן למצוא את הקטגוריה „%s“" +"years ago" => "שנים" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/hi.php b/lib/l10n/hi.php similarity index 100% rename from lib/private/l10n/hi.php rename to lib/l10n/hi.php diff --git a/lib/private/l10n/hr.php b/lib/l10n/hr.php similarity index 100% rename from lib/private/l10n/hr.php rename to lib/l10n/hr.php diff --git a/lib/private/l10n/hu_HU.php b/lib/l10n/hu_HU.php similarity index 100% rename from lib/private/l10n/hu_HU.php rename to lib/l10n/hu_HU.php diff --git a/lib/private/l10n/ml_IN.php b/lib/l10n/hy.php similarity index 100% rename from lib/private/l10n/ml_IN.php rename to lib/l10n/hy.php diff --git a/lib/private/l10n/ia.php b/lib/l10n/ia.php similarity index 100% rename from lib/private/l10n/ia.php rename to lib/l10n/ia.php diff --git a/lib/private/l10n/id.php b/lib/l10n/id.php similarity index 98% rename from lib/private/l10n/id.php rename to lib/l10n/id.php index 080faddb3218071baa1d2c4d7224ddaaca5e92db..0cbcddcc6dd042c13c491be139927ed63a9d8d9f 100644 --- a/lib/private/l10n/id.php +++ b/lib/l10n/id.php @@ -35,6 +35,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Setel sandi admin.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak.", "Please double check the <a href='%s'>installation guides</a>." => "Silakan periksa ulang <a href='%s'>panduan instalasi</a>.", +"Could not find category \"%s\"" => "Tidak dapat menemukan kategori \"%s\"", "seconds ago" => "beberapa detik yang lalu", "_%n minute ago_::_%n minutes ago_" => array(""), "_%n hour ago_::_%n hours ago_" => array(""), @@ -44,7 +45,6 @@ $TRANSLATIONS = array( "last month" => "bulan kemarin", "_%n month ago_::_%n months ago_" => array(""), "last year" => "tahun kemarin", -"years ago" => "beberapa tahun lalu", -"Could not find category \"%s\"" => "Tidak dapat menemukan kategori \"%s\"" +"years ago" => "beberapa tahun lalu" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/is.php b/lib/l10n/is.php similarity index 92% rename from lib/private/l10n/is.php rename to lib/l10n/is.php index 7512d278fb85f89daec1755772a04772a89a85a9..032289fd3040b7c0bdeb248b4bc6db4b53810433 100644 --- a/lib/private/l10n/is.php +++ b/lib/l10n/is.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files" => "Skrár", "Text" => "Texti", "Images" => "Myndir", +"Could not find category \"%s\"" => "Fann ekki flokkinn \"%s\"", "seconds ago" => "sek.", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), @@ -25,7 +26,6 @@ $TRANSLATIONS = array( "last month" => "síðasta mánuði", "_%n month ago_::_%n months ago_" => array("",""), "last year" => "síðasta ári", -"years ago" => "einhverjum árum", -"Could not find category \"%s\"" => "Fann ekki flokkinn \"%s\"" +"years ago" => "einhverjum árum" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/it.php b/lib/l10n/it.php similarity index 99% rename from lib/private/l10n/it.php rename to lib/l10n/it.php index b00789bc86f73bb1fb1d7a1de02ec7f8cc1811c3..91efcca7f492fa5d16b2a4e66913a5c4f1bdfbaa 100644 --- a/lib/private/l10n/it.php +++ b/lib/l10n/it.php @@ -56,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Imposta una password di amministrazione.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata.", "Please double check the <a href='%s'>installation guides</a>." => "Leggi attentamente le <a href='%s'>guide d'installazione</a>.", +"Could not find category \"%s\"" => "Impossibile trovare la categoria \"%s\"", "seconds ago" => "secondi fa", "_%n minute ago_::_%n minutes ago_" => array("%n minuto fa","%n minuti fa"), "_%n hour ago_::_%n hours ago_" => array("%n ora fa","%n ore fa"), @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("%n mese fa","%n mesi fa"), "last year" => "anno scorso", "years ago" => "anni fa", -"Caused by:" => "Causato da:", -"Could not find category \"%s\"" => "Impossibile trovare la categoria \"%s\"" +"Caused by:" => "Causato da:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/ja_JP.php b/lib/l10n/ja_JP.php similarity index 99% rename from lib/private/l10n/ja_JP.php rename to lib/l10n/ja_JP.php index b9e6a0e69248674747e93acdb6a1971c5b3a0e74..7023c829f8f4523c0143a3e607aef44149e2a44a 100644 --- a/lib/private/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -56,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "管理者のパスワードを設定。", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。", "Please double check the <a href='%s'>installation guides</a>." => "<a href='%s'>インストールガイド</a>をよく確認してください。", +"Could not find category \"%s\"" => "カテゴリ \"%s\" が見つかりませんでした", "seconds ago" => "数秒前", "_%n minute ago_::_%n minutes ago_" => array("%n 分前"), "_%n hour ago_::_%n hours ago_" => array("%n 時間後"), @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("%n カ月後"), "last year" => "一年前", "years ago" => "年前", -"Caused by:" => "原因は以下:", -"Could not find category \"%s\"" => "カテゴリ \"%s\" が見つかりませんでした" +"Caused by:" => "原因は以下:" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/ka.php b/lib/l10n/ka.php similarity index 100% rename from lib/private/l10n/ka.php rename to lib/l10n/ka.php diff --git a/lib/private/l10n/ka_GE.php b/lib/l10n/ka_GE.php similarity index 99% rename from lib/private/l10n/ka_GE.php rename to lib/l10n/ka_GE.php index 8fbe34e678635b0f63d2b26fe26cd4764881f91e..0cf6ab333e81dc5b24c487434a53debbf21ac117 100644 --- a/lib/private/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -35,6 +35,7 @@ $TRANSLATIONS = array( "Set an admin password." => "დააყენეთ ადმინისტრატორის პაროლი.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი.", "Please double check the <a href='%s'>installation guides</a>." => "გთხოვთ გადაათვალიეროთ <a href='%s'>ინსტალაციის გზამკვლევი</a>.", +"Could not find category \"%s\"" => "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა", "seconds ago" => "წამის წინ", "_%n minute ago_::_%n minutes ago_" => array(""), "_%n hour ago_::_%n hours ago_" => array(""), @@ -44,7 +45,6 @@ $TRANSLATIONS = array( "last month" => "გასულ თვეში", "_%n month ago_::_%n months ago_" => array(""), "last year" => "ბოლო წელს", -"years ago" => "წლის წინ", -"Could not find category \"%s\"" => "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" +"years ago" => "წლის წინ" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/km.php b/lib/l10n/km.php similarity index 100% rename from lib/private/l10n/km.php rename to lib/l10n/km.php diff --git a/lib/private/l10n/kn.php b/lib/l10n/kn.php similarity index 100% rename from lib/private/l10n/kn.php rename to lib/l10n/kn.php diff --git a/lib/private/l10n/ko.php b/lib/l10n/ko.php similarity index 100% rename from lib/private/l10n/ko.php rename to lib/l10n/ko.php diff --git a/lib/private/l10n/ku_IQ.php b/lib/l10n/ku_IQ.php similarity index 100% rename from lib/private/l10n/ku_IQ.php rename to lib/l10n/ku_IQ.php diff --git a/lib/private/l10n/lb.php b/lib/l10n/lb.php similarity index 100% rename from lib/private/l10n/lb.php rename to lib/l10n/lb.php diff --git a/lib/private/l10n/lt_LT.php b/lib/l10n/lt_LT.php similarity index 99% rename from lib/private/l10n/lt_LT.php rename to lib/l10n/lt_LT.php index db8d96c1018505e5310eecd47ac225938d84b9c6..72e84bc4b006a8650cc0c7c3e97bf3631ec3438e 100644 --- a/lib/private/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -56,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Nustatyti administratoriaus slaptažodį.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Jūsų serveris nėra tvarkingai nustatytas leisti failų sinchronizaciją, nes WebDAV sąsaja panašu, kad yra sugadinta.", "Please double check the <a href='%s'>installation guides</a>." => "Prašome pažiūrėkite dar kartą <a href='%s'>diegimo instrukcijas</a>.", +"Could not find category \"%s\"" => "Nepavyko rasti kategorijos „%s“", "seconds ago" => "prieš sekundę", "_%n minute ago_::_%n minutes ago_" => array("prieš %n min.","Prieš % minutes","Prieš %n minučių"), "_%n hour ago_::_%n hours ago_" => array("Prieš %n valandą","Prieš %n valandas","Prieš %n valandų"), @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("Prieš %n mėnesį","Prieš %n mėnesius","Prieš %n mėnesių"), "last year" => "praeitais metais", "years ago" => "prieš metus", -"Caused by:" => "Iššaukė:", -"Could not find category \"%s\"" => "Nepavyko rasti kategorijos „%s“" +"Caused by:" => "Iššaukė:" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/private/l10n/lv.php b/lib/l10n/lv.php similarity index 98% rename from lib/private/l10n/lv.php rename to lib/l10n/lv.php index 4090a36edcc6e8d5dc51a69c9423fbf4a4e88b12..cf96c4c4ab8cdaee05b4d28446c79585dec779ae 100644 --- a/lib/private/l10n/lv.php +++ b/lib/l10n/lv.php @@ -39,6 +39,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Iestatiet administratora paroli.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta.", "Please double check the <a href='%s'>installation guides</a>." => "Lūdzu, vēlreiz pārbaudiet <a href='%s'>instalēšanas palīdzību</a>.", +"Could not find category \"%s\"" => "Nevarēja atrast kategoriju “%s”", "seconds ago" => "sekundes atpakaļ", "_%n minute ago_::_%n minutes ago_" => array("","","Pirms %n minūtēm"), "_%n hour ago_::_%n hours ago_" => array("","","Pirms %n stundām"), @@ -49,7 +50,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("","","Pirms %n mēnešiem"), "last year" => "gājušajā gadā", "years ago" => "gadus atpakaļ", -"Caused by:" => "Cēlonis:", -"Could not find category \"%s\"" => "Nevarēja atrast kategoriju “%s”" +"Caused by:" => "Cēlonis:" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/lib/private/l10n/mk.php b/lib/l10n/mk.php similarity index 95% rename from lib/private/l10n/mk.php rename to lib/l10n/mk.php index 69d4a1cb6946947650c59036be7ae1ad9a2d06bf..285dfd682a4588de7fd9009af568ceb2274897e6 100644 --- a/lib/private/l10n/mk.php +++ b/lib/l10n/mk.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files" => "Датотеки", "Text" => "Текст", "Images" => "Слики", +"Could not find category \"%s\"" => "Не можам да најдам категорија „%s“", "seconds ago" => "пред секунди", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), @@ -25,7 +26,6 @@ $TRANSLATIONS = array( "last month" => "минатиот месец", "_%n month ago_::_%n months ago_" => array("",""), "last year" => "минатата година", -"years ago" => "пред години", -"Could not find category \"%s\"" => "Не можам да најдам категорија „%s“" +"years ago" => "пред години" ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/lib/private/l10n/ne.php b/lib/l10n/ml_IN.php similarity index 100% rename from lib/private/l10n/ne.php rename to lib/l10n/ml_IN.php diff --git a/lib/private/l10n/ms_MY.php b/lib/l10n/ms_MY.php similarity index 100% rename from lib/private/l10n/ms_MY.php rename to lib/l10n/ms_MY.php diff --git a/lib/private/l10n/my_MM.php b/lib/l10n/my_MM.php similarity index 94% rename from lib/private/l10n/my_MM.php rename to lib/l10n/my_MM.php index 5f4b6ddc820236f492a6af77b426901b7e2b0a3d..7fdf0d0285d9acd0b77e33248e6da69e378df73c 100644 --- a/lib/private/l10n/my_MM.php +++ b/lib/l10n/my_MM.php @@ -12,6 +12,7 @@ $TRANSLATIONS = array( "Files" => "ဖိုင်များ", "Text" => "စာသား", "Images" => "ပုံရိပ်များ", +"Could not find category \"%s\"" => "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ", "seconds ago" => "စက္ကန့်အနည်းငယ်က", "_%n minute ago_::_%n minutes ago_" => array(""), "_%n hour ago_::_%n hours ago_" => array(""), @@ -21,7 +22,6 @@ $TRANSLATIONS = array( "last month" => "ပြီးခဲ့သောလ", "_%n month ago_::_%n months ago_" => array(""), "last year" => "မနှစ်က", -"years ago" => "နှစ် အရင်က", -"Could not find category \"%s\"" => "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" +"years ago" => "နှစ် အရင်က" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/nb_NO.php b/lib/l10n/nb_NO.php similarity index 97% rename from lib/private/l10n/nb_NO.php rename to lib/l10n/nb_NO.php index 8e7d095d369b2efea37ae0710658e4a4adeb5b0c..eb5e8d766fd186410746b7f079c0d2f3704c3df1 100644 --- a/lib/private/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -18,6 +18,7 @@ $TRANSLATIONS = array( "Images" => "Bilder", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere.", "Please double check the <a href='%s'>installation guides</a>." => "Vennligst dobbelsjekk <a href='%s'>installasjonsguiden</a>.", +"Could not find category \"%s\"" => "Kunne ikke finne kategori \"%s\"", "seconds ago" => "sekunder siden", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), @@ -27,7 +28,6 @@ $TRANSLATIONS = array( "last month" => "forrige måned", "_%n month ago_::_%n months ago_" => array("",""), "last year" => "forrige år", -"years ago" => "år siden", -"Could not find category \"%s\"" => "Kunne ikke finne kategori \"%s\"" +"years ago" => "år siden" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/sw_KE.php b/lib/l10n/ne.php similarity index 100% rename from lib/private/l10n/sw_KE.php rename to lib/l10n/ne.php diff --git a/lib/private/l10n/nl.php b/lib/l10n/nl.php similarity index 99% rename from lib/private/l10n/nl.php rename to lib/l10n/nl.php index 20374f1f0f894598615c171f2e52c1d98bcc48c5..d6dc9845d583541ad408168ff429cc90bb9b1a15 100644 --- a/lib/private/l10n/nl.php +++ b/lib/l10n/nl.php @@ -56,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Stel een beheerderswachtwoord in.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt.", "Please double check the <a href='%s'>installation guides</a>." => "Controleer de <a href='%s'>installatiehandleiding</a> goed.", +"Could not find category \"%s\"" => "Kon categorie \"%s\" niet vinden", "seconds ago" => "seconden geleden", "_%n minute ago_::_%n minutes ago_" => array("%n minuut geleden","%n minuten geleden"), "_%n hour ago_::_%n hours ago_" => array("%n uur geleden","%n uur geleden"), @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("%n maand geleden","%n maanden geleden"), "last year" => "vorig jaar", "years ago" => "jaar geleden", -"Caused by:" => "Gekomen door:", -"Could not find category \"%s\"" => "Kon categorie \"%s\" niet vinden" +"Caused by:" => "Gekomen door:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/nn_NO.php b/lib/l10n/nn_NO.php similarity index 100% rename from lib/private/l10n/nn_NO.php rename to lib/l10n/nn_NO.php diff --git a/lib/private/l10n/nqo.php b/lib/l10n/nqo.php similarity index 100% rename from lib/private/l10n/nqo.php rename to lib/l10n/nqo.php diff --git a/lib/private/l10n/oc.php b/lib/l10n/oc.php similarity index 100% rename from lib/private/l10n/oc.php rename to lib/l10n/oc.php diff --git a/lib/private/l10n/pa.php b/lib/l10n/pa.php similarity index 100% rename from lib/private/l10n/pa.php rename to lib/l10n/pa.php diff --git a/lib/private/l10n/pl.php b/lib/l10n/pl.php similarity index 100% rename from lib/private/l10n/pl.php rename to lib/l10n/pl.php diff --git a/lib/private/l10n/pl_PL.php b/lib/l10n/pl_PL.php similarity index 100% rename from lib/private/l10n/pl_PL.php rename to lib/l10n/pl_PL.php diff --git a/lib/private/l10n/pt_BR.php b/lib/l10n/pt_BR.php similarity index 99% rename from lib/private/l10n/pt_BR.php rename to lib/l10n/pt_BR.php index 7a580799701095a1b80b401c366785cc0df0d329..59bc783161955eeb6726e51bbb7a167144d060d2 100644 --- a/lib/private/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -56,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Defina uma senha de administrador.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece estar quebrada.", "Please double check the <a href='%s'>installation guides</a>." => "Por favor, confira os <a href='%s'>guias de instalação</a>.", +"Could not find category \"%s\"" => "Impossível localizar categoria \"%s\"", "seconds ago" => "segundos atrás", "_%n minute ago_::_%n minutes ago_" => array("","ha %n minutos"), "_%n hour ago_::_%n hours ago_" => array("","ha %n horas"), @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("","ha %n meses"), "last year" => "último ano", "years ago" => "anos atrás", -"Caused by:" => "Causados por:", -"Could not find category \"%s\"" => "Impossível localizar categoria \"%s\"" +"Caused by:" => "Causados por:" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/private/l10n/pt_PT.php b/lib/l10n/pt_PT.php similarity index 98% rename from lib/private/l10n/pt_PT.php rename to lib/l10n/pt_PT.php index 6e2bcba7b10c43bbb11eace544e20ce94fba363d..bc298a3f33f51f5cf064ec3316fdbf7dcb21a535 100644 --- a/lib/private/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -41,6 +41,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Definiar uma password de administrador", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas.", "Please double check the <a href='%s'>installation guides</a>." => "Por favor verifique <a href='%s'>installation guides</a>.", +"Could not find category \"%s\"" => "Não foi encontrado a categoria \"%s\"", "seconds ago" => "Minutos atrás", "_%n minute ago_::_%n minutes ago_" => array("","%n minutos atrás"), "_%n hour ago_::_%n hours ago_" => array("","%n horas atrás"), @@ -51,7 +52,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("","%n meses atrás"), "last year" => "ano passado", "years ago" => "anos atrás", -"Caused by:" => "Causado por:", -"Could not find category \"%s\"" => "Não foi encontrado a categoria \"%s\"" +"Caused by:" => "Causado por:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/ro.php b/lib/l10n/ro.php similarity index 97% rename from lib/private/l10n/ro.php rename to lib/l10n/ro.php index 76dafcd03e05489e9f9d3ae1aff53fb4de3125bb..94ff7a4326af2874e9e672612836e43abdcbc7f7 100644 --- a/lib/private/l10n/ro.php +++ b/lib/l10n/ro.php @@ -20,6 +20,7 @@ $TRANSLATIONS = array( "Images" => "Imagini", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă.", "Please double check the <a href='%s'>installation guides</a>." => "Vă rugăm să verificați <a href='%s'>ghiduri de instalare</a>.", +"Could not find category \"%s\"" => "Cloud nu a gasit categoria \"%s\"", "seconds ago" => "secunde în urmă", "_%n minute ago_::_%n minutes ago_" => array("","","acum %n minute"), "_%n hour ago_::_%n hours ago_" => array("","","acum %n ore"), @@ -29,7 +30,6 @@ $TRANSLATIONS = array( "last month" => "ultima lună", "_%n month ago_::_%n months ago_" => array("","",""), "last year" => "ultimul an", -"years ago" => "ani în urmă", -"Could not find category \"%s\"" => "Cloud nu a gasit categoria \"%s\"" +"years ago" => "ani în urmă" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/lib/private/l10n/ru.php b/lib/l10n/ru.php similarity index 99% rename from lib/private/l10n/ru.php rename to lib/l10n/ru.php index 501065f8b5f391d40bf7195e46f0b20a97a00d55..c52248273a67da25e2eb1f77daf67336e70c2506 100644 --- a/lib/private/l10n/ru.php +++ b/lib/l10n/ru.php @@ -56,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "становит пароль для admin.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер до сих пор не настроен правильно для возможности синхронизации файлов, похоже что проблема в неисправности интерфейса WebDAV.", "Please double check the <a href='%s'>installation guides</a>." => "Пожалуйста, дважды просмотрите <a href='%s'>инструкции по установке</a>.", +"Could not find category \"%s\"" => "Категория \"%s\" не найдена", "seconds ago" => "несколько секунд назад", "_%n minute ago_::_%n minutes ago_" => array("%n минута назад","%n минуты назад","%n минут назад"), "_%n hour ago_::_%n hours ago_" => array("%n час назад","%n часа назад","%n часов назад"), @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("%n месяц назад","%n месяца назад","%n месяцев назад"), "last year" => "в прошлом году", "years ago" => "несколько лет назад", -"Caused by:" => "Вызвано:", -"Could not find category \"%s\"" => "Категория \"%s\" не найдена" +"Caused by:" => "Вызвано:" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/private/l10n/si_LK.php b/lib/l10n/si_LK.php similarity index 100% rename from lib/private/l10n/si_LK.php rename to lib/l10n/si_LK.php diff --git a/lib/private/l10n/sk.php b/lib/l10n/sk.php similarity index 100% rename from lib/private/l10n/sk.php rename to lib/l10n/sk.php diff --git a/lib/private/l10n/sk_SK.php b/lib/l10n/sk_SK.php similarity index 99% rename from lib/private/l10n/sk_SK.php rename to lib/l10n/sk_SK.php index 13487b039d68c79f660a825f883706c9155f2a0f..d2476c5a2bbcbb6ae243fb265ce1bcfa1c969cdd 100644 --- a/lib/private/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -53,6 +53,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Zadajte heslo administrátora.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené.", "Please double check the <a href='%s'>installation guides</a>." => "Prosím skontrolujte <a href='%s'>inštalačnú príručku</a>.", +"Could not find category \"%s\"" => "Nemožno nájsť danú kategóriu \"%s\"", "seconds ago" => "pred sekundami", "_%n minute ago_::_%n minutes ago_" => array("","","pred %n minútami"), "_%n hour ago_::_%n hours ago_" => array("","","pred %n hodinami"), @@ -63,7 +64,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("","","pred %n mesiacmi"), "last year" => "minulý rok", "years ago" => "pred rokmi", -"Caused by:" => "Príčina:", -"Could not find category \"%s\"" => "Nemožno nájsť danú kategóriu \"%s\"" +"Caused by:" => "Príčina:" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/private/l10n/sl.php b/lib/l10n/sl.php similarity index 98% rename from lib/private/l10n/sl.php rename to lib/l10n/sl.php index 5722191aedf9c240f2b4baaa437d0b6a8ff94e06..286ec733205d29812f0d59de48e79d4f67d7509f 100644 --- a/lib/private/l10n/sl.php +++ b/lib/l10n/sl.php @@ -36,6 +36,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Nastavi geslo skrbnika.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena.", "Please double check the <a href='%s'>installation guides</a>." => "Preverite <a href='%s'>navodila namestitve</a>.", +"Could not find category \"%s\"" => "Kategorije \"%s\" ni mogoče najti.", "seconds ago" => "pred nekaj sekundami", "_%n minute ago_::_%n minutes ago_" => array("","","",""), "_%n hour ago_::_%n hours ago_" => array("","","",""), @@ -45,7 +46,6 @@ $TRANSLATIONS = array( "last month" => "zadnji mesec", "_%n month ago_::_%n months ago_" => array("","","",""), "last year" => "lansko leto", -"years ago" => "let nazaj", -"Could not find category \"%s\"" => "Kategorije \"%s\" ni mogoče najti." +"years ago" => "let nazaj" ); $PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/lib/private/l10n/sq.php b/lib/l10n/sq.php similarity index 98% rename from lib/private/l10n/sq.php rename to lib/l10n/sq.php index edaa1df2b86b08b71afdb26cedca4bdfafe96f67..b36aa4ceefcc4b086d1bbf32d9d96804a7b06ade 100644 --- a/lib/private/l10n/sq.php +++ b/lib/l10n/sq.php @@ -35,6 +35,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Cakto kodin e administratorit.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar.", "Please double check the <a href='%s'>installation guides</a>." => "Ju lutemi kontrolloni mirë <a href='%s'>shoqëruesin e instalimit</a>.", +"Could not find category \"%s\"" => "Kategoria \"%s\" nuk u gjet", "seconds ago" => "sekonda më parë", "_%n minute ago_::_%n minutes ago_" => array("","%n minuta më parë"), "_%n hour ago_::_%n hours ago_" => array("","%n orë më parë"), @@ -44,7 +45,6 @@ $TRANSLATIONS = array( "last month" => "muajin e shkuar", "_%n month ago_::_%n months ago_" => array("","%n muaj më parë"), "last year" => "vitin e shkuar", -"years ago" => "vite më parë", -"Could not find category \"%s\"" => "Kategoria \"%s\" nuk u gjet" +"years ago" => "vite më parë" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/sr.php b/lib/l10n/sr.php similarity index 96% rename from lib/private/l10n/sr.php rename to lib/l10n/sr.php index 9441d0578fcb2d7343b0910c637495448b3ff3ae..47a84803683055c7b347d82c5434ccee92373cd4 100644 --- a/lib/private/l10n/sr.php +++ b/lib/l10n/sr.php @@ -18,6 +18,7 @@ $TRANSLATIONS = array( "Images" => "Слике", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно.", "Please double check the <a href='%s'>installation guides</a>." => "Погледајте <a href='%s'>водиче за инсталацију</a>.", +"Could not find category \"%s\"" => "Не могу да пронађем категорију „%s“.", "seconds ago" => "пре неколико секунди", "_%n minute ago_::_%n minutes ago_" => array("","",""), "_%n hour ago_::_%n hours ago_" => array("","",""), @@ -27,7 +28,6 @@ $TRANSLATIONS = array( "last month" => "прошлог месеца", "_%n month ago_::_%n months ago_" => array("","",""), "last year" => "прошле године", -"years ago" => "година раније", -"Could not find category \"%s\"" => "Не могу да пронађем категорију „%s“." +"years ago" => "година раније" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/private/l10n/sr@latin.php b/lib/l10n/sr@latin.php similarity index 100% rename from lib/private/l10n/sr@latin.php rename to lib/l10n/sr@latin.php diff --git a/lib/private/l10n/sv.php b/lib/l10n/sv.php similarity index 99% rename from lib/private/l10n/sv.php rename to lib/l10n/sv.php index e7c3420a85ba9ee9a4f9a822444862d6ad2478d7..37f2e1d8c08737968cf9f21babf20c714407cbe1 100644 --- a/lib/private/l10n/sv.php +++ b/lib/l10n/sv.php @@ -53,6 +53,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Ange ett administratörslösenord.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera.", "Please double check the <a href='%s'>installation guides</a>." => "Var god kontrollera <a href='%s'>installationsguiden</a>.", +"Could not find category \"%s\"" => "Kunde inte hitta kategorin \"%s\"", "seconds ago" => "sekunder sedan", "_%n minute ago_::_%n minutes ago_" => array("%n minut sedan","%n minuter sedan"), "_%n hour ago_::_%n hours ago_" => array("%n timme sedan","%n timmar sedan"), @@ -63,7 +64,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("%n månad sedan","%n månader sedan"), "last year" => "förra året", "years ago" => "år sedan", -"Caused by:" => "Orsakad av:", -"Could not find category \"%s\"" => "Kunde inte hitta kategorin \"%s\"" +"Caused by:" => "Orsakad av:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/sw_KE.php b/lib/l10n/sw_KE.php new file mode 100644 index 0000000000000000000000000000000000000000..15f78e0bce6d7e36688d2913f6affa4c17472a65 --- /dev/null +++ b/lib/l10n/sw_KE.php @@ -0,0 +1,8 @@ +<?php +$TRANSLATIONS = array( +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/ta_LK.php b/lib/l10n/ta_LK.php similarity index 98% rename from lib/private/l10n/ta_LK.php rename to lib/l10n/ta_LK.php index e70e65845bea2d65fda8ec396c7ff99aeb01508b..f761ccab0e25757fff27b32e03f8bf7e6f6d1de4 100644 --- a/lib/private/l10n/ta_LK.php +++ b/lib/l10n/ta_LK.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files" => "கோப்புகள்", "Text" => "உரை", "Images" => "படங்கள்", +"Could not find category \"%s\"" => "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை", "seconds ago" => "செக்கன்களுக்கு முன்", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), @@ -25,7 +26,6 @@ $TRANSLATIONS = array( "last month" => "கடந்த மாதம்", "_%n month ago_::_%n months ago_" => array("",""), "last year" => "கடந்த வருடம்", -"years ago" => "வருடங்களுக்கு முன்", -"Could not find category \"%s\"" => "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை" +"years ago" => "வருடங்களுக்கு முன்" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/private/l10n/te.php b/lib/l10n/te.php similarity index 100% rename from lib/private/l10n/te.php rename to lib/l10n/te.php diff --git a/lib/private/l10n/th_TH.php b/lib/l10n/th_TH.php similarity index 96% rename from lib/private/l10n/th_TH.php rename to lib/l10n/th_TH.php index 3344d0bb18e98ad4b8549760b06c37f6e8b60654..173d0f2856b85f33fb3c5d67d5ddeeaec1dfa44a 100644 --- a/lib/private/l10n/th_TH.php +++ b/lib/l10n/th_TH.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files" => "ไฟล์", "Text" => "ข้อความ", "Images" => "รูปภาพ", +"Could not find category \"%s\"" => "ไม่พบหมวดหมู่ \"%s\"", "seconds ago" => "วินาที ก่อนหน้านี้", "_%n minute ago_::_%n minutes ago_" => array(""), "_%n hour ago_::_%n hours ago_" => array(""), @@ -25,7 +26,6 @@ $TRANSLATIONS = array( "last month" => "เดือนที่แล้ว", "_%n month ago_::_%n months ago_" => array(""), "last year" => "ปีที่แล้ว", -"years ago" => "ปี ที่ผ่านมา", -"Could not find category \"%s\"" => "ไม่พบหมวดหมู่ \"%s\"" +"years ago" => "ปี ที่ผ่านมา" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/tr.php b/lib/l10n/tr.php similarity index 99% rename from lib/private/l10n/tr.php rename to lib/l10n/tr.php index b63c37c724077d5dbd826c5671e21d94387e280a..01f48517aeca3edb3942212e38948d2d0a2192c9 100644 --- a/lib/private/l10n/tr.php +++ b/lib/l10n/tr.php @@ -53,6 +53,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Parola yonetici birlemek. ", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor.", "Please double check the <a href='%s'>installation guides</a>." => "Lütfen <a href='%s'>kurulum kılavuzlarını</a> iki kez kontrol edin.", +"Could not find category \"%s\"" => "\"%s\" kategorisi bulunamadı", "seconds ago" => "saniye önce", "_%n minute ago_::_%n minutes ago_" => array("","%n dakika önce"), "_%n hour ago_::_%n hours ago_" => array("","%n saat önce"), @@ -63,7 +64,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("","%n ay önce"), "last year" => "geçen yıl", "years ago" => "yıl önce", -"Caused by:" => "Neden olan:", -"Could not find category \"%s\"" => "\"%s\" kategorisi bulunamadı" +"Caused by:" => "Neden olan:" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/private/l10n/ug.php b/lib/l10n/ug.php similarity index 100% rename from lib/private/l10n/ug.php rename to lib/l10n/ug.php diff --git a/lib/private/l10n/uk.php b/lib/l10n/uk.php similarity index 98% rename from lib/private/l10n/uk.php rename to lib/l10n/uk.php index c1513c5bb7973b8bd04df5f05aac77a40885ddf9..906c93b567ab5eebe299c26cf7aa1a9c06740334 100644 --- a/lib/private/l10n/uk.php +++ b/lib/l10n/uk.php @@ -35,6 +35,7 @@ $TRANSLATIONS = array( "Set an admin password." => "Встановіть пароль адміністратора.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний.", "Please double check the <a href='%s'>installation guides</a>." => "Будь ласка, перевірте <a href='%s'>інструкції по встановленню</a>.", +"Could not find category \"%s\"" => "Не вдалося знайти категорію \"%s\"", "seconds ago" => "секунди тому", "_%n minute ago_::_%n minutes ago_" => array("","",""), "_%n hour ago_::_%n hours ago_" => array("","",""), @@ -44,7 +45,6 @@ $TRANSLATIONS = array( "last month" => "минулого місяця", "_%n month ago_::_%n months ago_" => array("","",""), "last year" => "минулого року", -"years ago" => "роки тому", -"Could not find category \"%s\"" => "Не вдалося знайти категорію \"%s\"" +"years ago" => "роки тому" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/private/l10n/ur_PK.php b/lib/l10n/ur_PK.php similarity index 100% rename from lib/private/l10n/ur_PK.php rename to lib/l10n/ur_PK.php diff --git a/lib/private/l10n/vi.php b/lib/l10n/vi.php similarity index 96% rename from lib/private/l10n/vi.php rename to lib/l10n/vi.php index dc0045c35ca75906d9c0560b2df00e02fbffb314..5840283110e0ce608aff60efe72e3dd9acebdd0d 100644 --- a/lib/private/l10n/vi.php +++ b/lib/l10n/vi.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files" => "Tập tin", "Text" => "Văn bản", "Images" => "Hình ảnh", +"Could not find category \"%s\"" => "không thể tìm thấy mục \"%s\"", "seconds ago" => "vài giây trước", "_%n minute ago_::_%n minutes ago_" => array(""), "_%n hour ago_::_%n hours ago_" => array(""), @@ -25,7 +26,6 @@ $TRANSLATIONS = array( "last month" => "tháng trước", "_%n month ago_::_%n months ago_" => array(""), "last year" => "năm trước", -"years ago" => "năm trước", -"Could not find category \"%s\"" => "không thể tìm thấy mục \"%s\"" +"years ago" => "năm trước" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/zh_CN.php b/lib/l10n/zh_CN.php similarity index 97% rename from lib/private/l10n/zh_CN.php rename to lib/l10n/zh_CN.php index 2c34356ea10a00e137591d75b551f5e0e756e4ff..e3f2c949175471e9c978d16fab374aae7bda98b9 100644 --- a/lib/private/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -37,6 +37,7 @@ $TRANSLATIONS = array( "Set an admin password." => "请设置一个管理员密码。", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏.", "Please double check the <a href='%s'>installation guides</a>." => "请认真检查<a href='%s'>安装指南</a>.", +"Could not find category \"%s\"" => "无法找到分类 \"%s\"", "seconds ago" => "秒前", "_%n minute ago_::_%n minutes ago_" => array("%n 分钟前"), "_%n hour ago_::_%n hours ago_" => array("%n 小时前"), @@ -46,7 +47,6 @@ $TRANSLATIONS = array( "last month" => "上月", "_%n month ago_::_%n months ago_" => array("%n 月前"), "last year" => "去年", -"years ago" => "年前", -"Could not find category \"%s\"" => "无法找到分类 \"%s\"" +"years ago" => "年前" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/l10n/zh_HK.php b/lib/l10n/zh_HK.php similarity index 100% rename from lib/private/l10n/zh_HK.php rename to lib/l10n/zh_HK.php diff --git a/lib/private/l10n/zh_TW.php b/lib/l10n/zh_TW.php similarity index 94% rename from lib/private/l10n/zh_TW.php rename to lib/l10n/zh_TW.php index 210c766aa59b36f4b56801e04f9837d7a8a1b36a..e56a451f8a944a6a5aad51da3c20c6e9c1442079 100644 --- a/lib/private/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -8,6 +8,9 @@ $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" => "由您控制的網路服務", "cannot open \"%s\"" => "無法開啓 %s", "ZIP download is turned off." => "ZIP 下載已關閉。", @@ -53,6 +56,7 @@ $TRANSLATIONS = array( "Set an admin password." => "設定管理員密碼。", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。", "Please double check the <a href='%s'>installation guides</a>." => "請參考<a href='%s'>安裝指南</a>。", +"Could not find category \"%s\"" => "找不到分類:\"%s\"", "seconds ago" => "幾秒前", "_%n minute ago_::_%n minutes ago_" => array("%n 分鐘前"), "_%n hour ago_::_%n hours ago_" => array("%n 小時前"), @@ -63,7 +67,6 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("%n 個月前"), "last year" => "去年", "years ago" => "幾年前", -"Caused by:" => "原因:", -"Could not find category \"%s\"" => "找不到分類:\"%s\"" +"Caused by:" => "原因:" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/private/connector/sabre/auth.php b/lib/private/connector/sabre/auth.php index bf3a49593cbc23419ed2dd404f589bb5b1dd24e8..d2fd74c44f9f2a00f53610ad316d2ecc28379a6f 100644 --- a/lib/private/connector/sabre/auth.php +++ b/lib/private/connector/sabre/auth.php @@ -72,6 +72,11 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic { * @return bool */ public function authenticate(Sabre_DAV_Server $server, $realm) { + + if (OC_User::handleApacheAuth()) { + return true; + } + if (OC_User::isLoggedIn()) { $user = OC_User::getUser(); OC_Util::setupFS($user); diff --git a/lib/private/connector/sabre/directory.php b/lib/private/connector/sabre/directory.php index 382bdf06df1f272e311e5fd2e0fca8f30f539860..af0dfd70f08e32670285c5e5ba5544de5091beda 100644 --- a/lib/private/connector/sabre/directory.php +++ b/lib/private/connector/sabre/directory.php @@ -54,47 +54,10 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa throw new \Sabre_DAV_Exception_Forbidden(); } - if (isset($_SERVER['HTTP_OC_CHUNKED'])) { - $info = OC_FileChunking::decodeName($name); - if (empty($info)) { - throw new Sabre_DAV_Exception_NotImplemented(); - } - $chunk_handler = new OC_FileChunking($info); - $chunk_handler->store($info['index'], $data); - if ($chunk_handler->isComplete()) { - $newPath = $this->path . '/' . $info['name']; - $chunk_handler->file_assemble($newPath); - return OC_Connector_Sabre_Node::getETagPropertyForPath($newPath); - } - } else { - $newPath = $this->path . '/' . $name; - - // mark file as partial while uploading (ignored by the scanner) - $partpath = $newPath . '.part'; - - \OC\Files\Filesystem::file_put_contents($partpath, $data); - - // rename to correct path - $renameOkay = \OC\Files\Filesystem::rename($partpath, $newPath); - $fileExists = \OC\Files\Filesystem::file_exists($newPath); - if ($renameOkay === false || $fileExists === false) { - \OC_Log::write('webdav', '\OC\Files\Filesystem::rename() failed', \OC_Log::ERROR); - \OC\Files\Filesystem::unlink($partpath); - throw new Sabre_DAV_Exception(); - } - - // allow sync clients to send the mtime along in a header - $mtime = OC_Request::hasModificationTime(); - if ($mtime !== false) { - if(\OC\Files\Filesystem::touch($newPath, $mtime)) { - header('X-OC-MTime: accepted'); - } - } - - return OC_Connector_Sabre_Node::getETagPropertyForPath($newPath); - } + $path = $this->path . '/' . $name; + $node = new OC_Connector_Sabre_File($path); + return $node->put($data); - return null; } /** @@ -243,13 +206,12 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa * If the array is empty, all properties should be returned * * @param array $properties - * @return void + * @return array */ public function getProperties($properties) { $props = parent::getProperties($properties); if (in_array(self::GETETAG_PROPERTYNAME, $properties) && !isset($props[self::GETETAG_PROPERTYNAME])) { - $props[self::GETETAG_PROPERTYNAME] - = OC_Connector_Sabre_Node::getETagPropertyForPath($this->path); + $props[self::GETETAG_PROPERTYNAME] = $this->getETagPropertyForPath($this->path); } return $props; } diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index 433b11485523f786851d20a9c8e9292f94379af3..12d7585884ede391cd75e63e2f13ba8d7ecbefee 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -28,7 +28,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * * The data argument is a readable stream resource. * - * After a succesful put operation, you may choose to return an ETag. The + * After a successful put operation, you may choose to return an ETag. The * etag must always be surrounded by double-quotes. These quotes must * appear in the actual string you're returning. * @@ -45,8 +45,9 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * @return string|null */ public function put($data) { - - if (!\OC\Files\Filesystem::isUpdatable($this->path)) { + $fs = $this->getFS(); + if ($fs->file_exists($this->path) && + !$fs->isUpdatable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } @@ -54,44 +55,59 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D if (\OC_Util::encryptedFiles()) { throw new \Sabre_DAV_Exception_ServiceUnavailable(); } - + + // chunked handling + if (isset($_SERVER['HTTP_OC_CHUNKED'])) { + list($path, $name) = \Sabre_DAV_URLUtil::splitPath($this->path); + + $info = OC_FileChunking::decodeName($name); + if (empty($info)) { + throw new Sabre_DAV_Exception_NotImplemented(); + } + $chunk_handler = new OC_FileChunking($info); + $chunk_handler->store($info['index'], $data); + if ($chunk_handler->isComplete()) { + $newPath = $path . '/' . $info['name']; + $chunk_handler->file_assemble($newPath); + return $this->getETagPropertyForPath($newPath); + } + + return null; + } + // mark file as partial while uploading (ignored by the scanner) $partpath = $this->path . '.part'; - \OC\Files\Filesystem::file_put_contents($partpath, $data); - - //detect aborted upload - if (isset ($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'PUT') { - if (isset($_SERVER['CONTENT_LENGTH'])) { - $expected = $_SERVER['CONTENT_LENGTH']; - $actual = \OC\Files\Filesystem::filesize($partpath); - if ($actual != $expected) { - \OC\Files\Filesystem::unlink($partpath); - throw new Sabre_DAV_Exception_BadRequest( - 'expected filesize ' . $expected . ' got ' . $actual); - } + try { + $putOkay = $fs->file_put_contents($partpath, $data); + if ($putOkay === false) { + \OC_Log::write('webdav', '\OC\Files\Filesystem::file_put_contents() failed', \OC_Log::ERROR); + $fs->unlink($partpath); + // because we have no clue about the cause we can only throw back a 500/Internal Server Error + throw new Sabre_DAV_Exception(); } + } catch (\OCP\Files\NotPermittedException $e) { + throw new Sabre_DAV_Exception_Forbidden(); } // rename to correct path - $renameOkay = \OC\Files\Filesystem::rename($partpath, $this->path); - $fileExists = \OC\Files\Filesystem::file_exists($this->path); + $renameOkay = $fs->rename($partpath, $this->path); + $fileExists = $fs->file_exists($this->path); if ($renameOkay === false || $fileExists === false) { \OC_Log::write('webdav', '\OC\Files\Filesystem::rename() failed', \OC_Log::ERROR); - \OC\Files\Filesystem::unlink($partpath); + $fs->unlink($partpath); throw new Sabre_DAV_Exception(); } - - //allow sync clients to send the mtime along in a header + // allow sync clients to send the mtime along in a header $mtime = OC_Request::hasModificationTime(); if ($mtime !== false) { - if (\OC\Files\Filesystem::touch($this->path, $mtime)) { + if($fs->touch($this->path, $mtime)) { header('X-OC-MTime: accepted'); } } - return OC_Connector_Sabre_Node::getETagPropertyForPath($this->path); + return $this->getETagPropertyForPath($this->path); } /** @@ -101,7 +117,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D */ public function get() { - //throw execption if encryption is disabled but files are still encrypted + //throw exception if encryption is disabled but files are still encrypted if (\OC_Util::encryptedFiles()) { throw new \Sabre_DAV_Exception_ServiceUnavailable(); } else { @@ -144,7 +160,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * * An ETag is a unique identifier representing the current version of the * file. If the file changes, the ETag MUST change. The ETag is an - * arbritrary string, but MUST be surrounded by double-quotes. + * arbitrary string, but MUST be surrounded by double-quotes. * * Return null if the ETag can not effectively be determined * diff --git a/lib/private/connector/sabre/node.php b/lib/private/connector/sabre/node.php index e65ad7b8bef6d643f5c17bacbd814260203b784f..fa27abb381ab48297b65dcaae36a33537afdad14 100644 --- a/lib/private/connector/sabre/node.php +++ b/lib/private/connector/sabre/node.php @@ -32,6 +32,13 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr */ public static $ETagFunction = null; + /** + * is kept public to allow overwrite for unit testing + * + * @var \OC\Files\View + */ + public $fileView; + /** * The path to the current node * @@ -234,12 +241,18 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr * @param string $path Path of the file * @return string|null Returns null if the ETag can not effectively be determined */ - static public function getETagPropertyForPath($path) { - $data = \OC\Files\Filesystem::getFileInfo($path); + protected function getETagPropertyForPath($path) { + $data = $this->getFS()->getFileInfo($path); if (isset($data['etag'])) { return '"'.$data['etag'].'"'; } return null; } + protected function getFS() { + if (is_null($this->fileView)) { + $this->fileView = \OC\Files\Filesystem::getView(); + } + return $this->fileView; + } } diff --git a/lib/private/legacy/cache/fileglobalgc.php b/lib/private/legacy/cache/fileglobalgc.php new file mode 100644 index 0000000000000000000000000000000000000000..385f6406673f5d89a6a017012751bfe8c9755f26 --- /dev/null +++ b/lib/private/legacy/cache/fileglobalgc.php @@ -0,0 +1,4 @@ +<?php + +class OC_Cache_FileGlobalGC extends OC\Cache\FileGlobalGC{ +} diff --git a/lib/private/legacy/config.php b/lib/private/legacy/config.php index 7e4980137377baadc8959bd1fe2a8326a753b752..c457979113e9ccd25d13f11560520273b9e0444f 100644 --- a/lib/private/legacy/config.php +++ b/lib/private/legacy/config.php @@ -83,11 +83,7 @@ class OC_Config { * */ public static function setValue($key, $value) { - try { - self::$object->setValue($key, $value); - } catch (\OC\HintException $e) { - \OC_Template::printErrorPage($e->getMessage(), $e->getHint()); - } + self::$object->setValue($key, $value); } /** @@ -98,10 +94,6 @@ class OC_Config { * */ public static function deleteKey($key) { - try { - self::$object->deleteKey($key); - } catch (\OC\HintException $e) { - \OC_Template::printErrorPage($e->getMessage(), $e->getHint()); - } + self::$object->deleteKey($key); } } diff --git a/lib/private/user.php b/lib/private/user.php index 15e807088b4c8e731116d978f94f74ee4217c65a..04cd06b08bd18f17b6960b209804daa9c4338351 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -213,6 +213,55 @@ class OC_User { return self::getUserSession()->login($uid, $password); } + /** + * @brief Try to login a user, assuming authentication + * has already happened (e.g. via Single Sign On). + * + * Log in a user and regenerate a new session. + * + * @param \OCP\Authentication\IApacheBackend $backend + * @return bool + */ + public static function loginWithApache(\OCP\Authentication\IApacheBackend $backend) { + + $uid = $backend->getCurrentUserId(); + $run = true; + OC_Hook::emit( "OC_User", "pre_login", array( "run" => &$run, "uid" => $uid )); + + if($uid) { + session_regenerate_id(true); + self::setUserId($uid); + self::setDisplayName($uid); + OC_Hook::emit( "OC_User", "post_login", array( "uid" => $uid, 'password'=>'' )); + return true; + } + return false; + } + + /** + * @brief Verify with Apache whether user is authenticated. + * + * @return boolean|null + * true: authenticated + * false: not authenticated + * null: not handled / no backend available + */ + public static function handleApacheAuth() { + $backend = self::findFirstActiveUsedBackend(); + if ($backend) { + OC_App::loadApps(); + + //setup extra user backends + self::setupBackends(); + self::unsetMagicInCookie(); + + return self::loginWithApache($backend); + } + + return null; + } + + /** * @brief Sets user id for session and triggers emit */ @@ -259,6 +308,22 @@ class OC_User { return false; } + /** + * Supplies an attribute to the logout hyperlink. The default behaviour + * is to return an href with '?logout=true' appended. However, it can + * supply any attribute(s) which are valid for <a>. + * + * @return string with one or more HTML attributes. + */ + public static function getLogoutAttribute() { + $backend = self::findFirstActiveUsedBackend(); + if ($backend) { + return $backend->getLogoutAttribute(); + } + + return "href=" . link_to('', 'index.php') . "?logout=true"; + } + /** * @brief Check if the user is an admin user * @param string $uid uid of the admin @@ -497,4 +562,20 @@ class OC_User { public static function unsetMagicInCookie() { self::getUserSession()->unsetMagicInCookie(); } + + /** + * @brief Returns the first active backend from self::$_usedBackends. + * @return null if no backend active, otherwise OCP\Authentication\IApacheBackend + */ + private static function findFirstActiveUsedBackend() { + foreach (self::$_usedBackends as $backend) { + if ($backend instanceof OCP\Authentication\IApacheBackend) { + if ($backend->isSessionActive()) { + return $backend; + } + } + } + + return null; + } } diff --git a/lib/private/util.php b/lib/private/util.php index c5b4d2ae93e4b169ecebc92db6bfe725ae3049e8..6c0a8d7bab51948f73b15394470458ab6bb025ea 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -182,9 +182,12 @@ class OC_Util { * @description load the version.php into the session as cache */ private static function loadVersion() { - if(!\OC::$server->getSession()->exists('OC_Version')) { + $timestamp = filemtime(OC::$SERVERROOT.'/version.php'); + if(!\OC::$server->getSession()->exists('OC_Version') or OC::$server->getSession()->get('OC_Version_Timestamp') != $timestamp) { require 'version.php'; $session = \OC::$server->getSession(); + /** @var $timestamp int */ + $session->set('OC_Version_Timestamp', $timestamp); /** @var $OC_Version string */ $session->set('OC_Version', $OC_Version); /** @var $OC_VersionString string */ diff --git a/lib/public/authentication/iapachebackend.php b/lib/public/authentication/iapachebackend.php new file mode 100644 index 0000000000000000000000000000000000000000..5376baf525c8a7fd3c03ee453199653ebb3f0e8b --- /dev/null +++ b/lib/public/authentication/iapachebackend.php @@ -0,0 +1,49 @@ +<?php + +/** + * ownCloud - Apache backend + * + * @author Karl Beecher + * @copyright 2013 Karl Beecher - karl@endocode.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 OCP\Authentication; + +interface IApacheBackend { + + /** + * In case the user has been authenticated by Apache true is returned. + * + * @return boolean whether Apache reports a user as currently logged in. + */ + public function isSessionActive(); + + /** + * Creates an attribute which is added to the logout hyperlink. It can + * supply any attribute(s) which are valid for <a>. + * + * @return string with one or more HTML attributes. + */ + public function getLogoutAttribute(); + + /** + * Return the id of the current user + * @return string + */ + public function getCurrentUserId(); + +} diff --git a/settings/js/users.js b/settings/js/users.js index 48c4529527ba93913e1de425797a5dfd546a6a8d..5b7802c1e362a25d38ade8759ef28191631c6eca 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -85,6 +85,9 @@ var UserList = { add: function (username, displayname, groups, subadmin, quota, sort) { var tr = $('tbody tr').first().clone(); + if (tr.find('div.avatardiv')){ + $('div.avatardiv', tr).avatar(username, 32); + } tr.attr('data-uid', username); tr.attr('data-displayName', displayname); tr.find('td.name').text(username); @@ -404,6 +407,9 @@ $(document).ready(function () { OC.filePath('settings', 'ajax', 'changedisplayname.php'), {username: uid, displayName: $(this).val()}, function (result) { + if (result && result.status==='success'){ + img.parent().parent().find('div.avatardiv').avatar(result.data.username, 32); + } } ); input.blur(); diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 378bd8dd91fc7748a27a49c2dc370dfda75112f6..9842242fd924096690d5a774ad43016a616333a8 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -86,6 +86,7 @@ $TRANSLATIONS = array( "Email" => "البريد الإلكترونى", "Your email address" => "عنوانك البريدي", "Fill in an email address to enable password recovery" => "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور", +"Abort" => "إلغاء.", "Language" => "اللغة", "Help translate" => "ساعد في الترجمه", "WebDAV" => "WebDAV", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index c4c61c0354af5814dc27df9f71a1a325a200aa2f..de3be7c3571b8f40da751d9577bcb45e30c27968 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Permet als usuaris compartir de nou elements ja compartits amb ells", "Allow users to share with anyone" => "Permet compartir amb qualsevol", "Allow users to only share with users in their groups" => "Permet als usuaris compartir només amb els usuaris del seu grup", +"Allow mail notification" => "Permet notificacions per correu electrónic", +"Allow user to send mail notification for shared files" => "Permet a l'usuari enviar notificacions de fitxers compartits per correu ", "Security" => "Seguretat", "Enforce HTTPS" => "Força HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Força la connexió dels clients a %s a través d'una connexió encriptada.", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index f86559d6752b121d3cff35b75eb7cdad7cd37da7..fbf8b6337caf874f40f512aa34cf8751cdedc9f6 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Tillad brugere at dele elementer delt med dem igen", "Allow users to share with anyone" => "Tillad brugere at dele med alle", "Allow users to only share with users in their groups" => "Tillad brugere at kun dele med brugerne i deres grupper", +"Allow mail notification" => "Tillad mail underretninger", +"Allow user to send mail notification for shared files" => "Tillad brugere at sende mail underretninger for delte filer", "Security" => "Sikkerhed", "Enforce HTTPS" => "Gennemtving HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tving klienten til at forbinde til %s via en kryptetet forbindelse.", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index ae2165873ea9b2256b3e9465dfde8af2dfe8423d..d7e26e482c9039eb8c67c8439cd07f6ae858ea8d 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen", "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen", +"Allow mail notification" => "Mail-Benachrichtigung erlauben", +"Allow user to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "Erzwinge HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden.", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 924792aa62b720ca6156b23fd674e8c74d5d7811..80230e365c88bdac36b236cc6705117b3c6fde2e 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen", "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen", +"Allow mail notification" => "Mail-Benachrichtigung erlauben", +"Allow user to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "HTTPS erzwingen", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden.", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index a4876d854df9fb2bcf299c346d0b1ba5ca7aafd6..069ba4032b30fb7d957d4c42e8b857abf5f986fa 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -16,15 +16,20 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Αδυναμία προσθήκη χρήστη στην ομάδα %s", "Unable to remove user from group %s" => "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s", "Couldn't update app." => "Αδυναμία ενημέρωσης εφαρμογής", +"Wrong password" => "Εσφαλμένο συνθηματικό", +"Unable to change password" => "Αδυναμία αλλαγής συνθηματικού", "Update to {appversion}" => "Ενημέρωση σε {appversion}", "Disable" => "Απενεργοποίηση", "Enable" => "Ενεργοποίηση", "Please wait...." => "Παρακαλώ περιμένετε...", +"Error while disabling app" => "Σφάλμα κατά την απενεργοποίηση εισόδου", +"Error while enabling app" => "Σφάλμα κατά την ενεργοποίηση της εφαρμογής", "Updating...." => "Ενημέρωση...", "Error while updating app" => "Σφάλμα κατά την ενημέρωση της εφαρμογής", "Error" => "Σφάλμα", "Update" => "Ενημέρωση", "Updated" => "Ενημερώθηκε", +"Select a profile picture" => "Επιλογή εικόνας προφίλ", "Saving..." => "Γίνεται αποθήκευση...", "deleted" => "διαγράφηκε", "undo" => "αναίρεση", @@ -40,6 +45,7 @@ $TRANSLATIONS = array( "Security Warning" => "Προειδοποίηση Ασφαλείας", "Setup Warning" => "Ρύθμιση Προειδοποίησης", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη.", +"Please double check the <a href=\"%s\">installation guides</a>." => "Ελέγξτε ξανά τις <a href=\"%s\">οδηγίες εγκατάστασης</a>.", "Module 'fileinfo' missing" => "Η ενοτητα 'fileinfo' λειπει", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. ", "Locale not working" => "Η μετάφραση δεν δουλεύει", @@ -88,11 +94,16 @@ $TRANSLATIONS = array( "Your email address" => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας", "Fill in an email address to enable password recovery" => "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού", "Profile picture" => "Φωτογραφία προφίλ", +"Select new from Files" => "Επιλογή νέου από τα Αρχεία", +"Remove image" => "Αφαίρεση εικόνας", +"Abort" => "Ματαίωση", +"Choose as profile image" => "Επιλογή εικόνας προφίλ", "Language" => "Γλώσσα", "Help translate" => "Βοηθήστε στη μετάφραση", "WebDAV" => "WebDAV", "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Χρήση αυτής της διεύθυνσης για <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">πρόσβαση των αρχείων σας μέσω WebDAV</a>", "Encryption" => "Κρυπτογράφηση", +"Log-in password" => "Συνθηματικό εισόδου", "Login Name" => "Όνομα Σύνδεσης", "Create" => "Δημιουργία", "Admin Recovery Password" => "Κωδικός Επαναφοράς Διαχειριστή ", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index b20a4acb29971c1696fb55df5d6228ae33060b3a..ed23ecc077c7047471e5649793643399c215050b 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -16,8 +16,11 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "No se pudo añadir el usuario al grupo %s", "Unable to remove user from group %s" => "No se pudo eliminar al usuario del grupo %s", "Couldn't update app." => "No se pudo actualizar la aplicacion.", +"Wrong password" => "Contraseña incorrecta", +"No user supplied" => "No se especificó un usuari", "Please provide an admin recovery password, otherwise all user data will be lost" => "Por favor facilite una contraseña de recuperación de administrador, sino se perderán todos los datos de usuario", "Wrong admin recovery password. Please check the password and try again." => "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente.", "Unable to change password" => "No se ha podido cambiar la contraseña", "Update to {appversion}" => "Actualizado a {appversion}", "Disable" => "Desactivar", @@ -108,6 +111,7 @@ $TRANSLATIONS = array( "Upload new" => "Subir nuevo", "Select new from Files" => "Seleccionar nuevo desde Ficheros", "Remove image" => "Borrar imagen", +"Either png or jpg. Ideally square but you will be able to crop it." => "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo.", "Abort" => "Abortar", "Choose as profile image" => "Seleccionar como imagen de perfil", "Language" => "Idioma", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index a93ea8174224e3837705ecdf4f0b56027915a248..ca407a730bb5803726defdd04075fe60c34bfb4e 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud", "Allow users to share with anyone" => "Luba kasutajatel kõigiga jagada", "Allow users to only share with users in their groups" => "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad", +"Allow mail notification" => "Luba teavitused e-postiga", +"Allow user to send mail notification for shared files" => "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi", "Security" => "Turvalisus", "Enforce HTTPS" => "Sunni peale HTTPS-i kasutamine", "Forces the clients to connect to %s via an encrypted connection." => "Sunnib kliente %s ühenduma krüpteeritult.", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index d50dc87e0144dfdd43162e10371f68cec5ef5891..3213e504d6a200916bdf80e6f83ac73e81a98baf 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -46,6 +46,7 @@ $TRANSLATIONS = array( "Security Warning" => "Turvallisuusvaroitus", "Please double check the <a href=\"%s\">installation guides</a>." => "Lue <a href=\"%s\">asennusohjeet</a> tarkasti.", "Module 'fileinfo' missing" => "Moduuli 'fileinfo' puuttuu", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltavaa, jotta MIME-tyypin havaitseminen onnistuu parhaalla mahdollisella tavalla.", "Internet connection not working" => "Internet-yhteys ei toimi", "Cron" => "Cron", "Sharing" => "Jakaminen", @@ -57,6 +58,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Mahdollistaa käyttäjien jakavan uudelleen heidän kanssaan jaettuja kohteita", "Allow users to share with anyone" => "Salli käyttäjien jakaa kenen tahansa kanssa", "Allow users to only share with users in their groups" => "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken", +"Allow mail notification" => "Salli sähköposti-ilmoitukset", +"Allow user to send mail notification for shared files" => "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", "Security" => "Tietoturva", "Enforce HTTPS" => "Pakota HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta.", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 62a2f7b8739225469f3773c4f333bd8a0c8f3e52..d480dd08e126637ae2755a88cd982bbd0de6deab 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Permitir que os usuarios compartan de novo os elementos compartidos con eles", "Allow users to share with anyone" => "Permitir que os usuarios compartan con calquera", "Allow users to only share with users in their groups" => "Permitir que os usuarios compartan só cos usuarios dos seus grupos", +"Allow mail notification" => "Permitir o envío de notificacións por correo", +"Allow user to send mail notification for shared files" => "Permitir que os usuarios envíen notificacións por correo dos ficheiros compartidos", "Security" => "Seguranza", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar que os clientes se conecten a %s empregando unha conexión cifrada.", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index fc91bc5f170f506fa834959ec918f334fc442c57..c90a1a80859f90b6588098fbd5200303348c5c7e 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Consenti agli utenti di condividere a loro volta elementi condivisi da altri", "Allow users to share with anyone" => "Consenti agli utenti di condividere con chiunque", "Allow users to only share with users in their groups" => "Consenti agli utenti di condividere solo con utenti dei loro gruppi", +"Allow mail notification" => "Consenti le notifiche tramite posta elettronica", +"Allow user to send mail notification for shared files" => "Consenti all'utente di inviare notifiche tramite posta elettronica per i file condivisi", "Security" => "Protezione", "Enforce HTTPS" => "Forza HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forza i client a connettersi a %s tramite una connessione cifrata.", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index cbf693d71267ae1c561f56cffcb3196b5ee635d6..395b8889e45c691496ddc9e3b5dbf9783feb7d24 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -88,6 +88,7 @@ $TRANSLATIONS = array( "Your email address" => "이메일 주소", "Fill in an email address to enable password recovery" => "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오", "Profile picture" => "프로필 사진", +"Abort" => "대하여", "Language" => "언어", "Help translate" => "번역 돕기", "WebDAV" => "WebDAV", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index df0247fc27e3511d1400054899cd38abe7cb4fdd..6e75f61a682a34eb62abf0dc116425fb45dae410 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Leisti naudotojams toliau dalintis elementais pasidalintais su jais", "Allow users to share with anyone" => "Leisti naudotojams dalintis su bet kuo", "Allow users to only share with users in their groups" => "Leisti naudotojams dalintis tik su naudotojais savo grupėje", +"Allow mail notification" => "Leisti el. pašto perspėjimą", +"Allow user to send mail notification for shared files" => "Leisti naudotojui siųsti perspėjimą el. laišku dėl bendrinamų failų", "Security" => "Saugumas", "Enforce HTTPS" => "Reikalauti HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Verčia klientus jungtis prie %s per šifruotą ryšį.", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 6f3312fa78bc7f67fbe683339696c08d38bcd081..c4042cc6ec1b2dc93b1b49eaaa6d0d76077be646 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -73,6 +73,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Permitir que usuários compartilhem novamente itens compartilhados com eles", "Allow users to share with anyone" => "Permitir que usuários compartilhem com qualquer um", "Allow users to only share with users in their groups" => "Permitir que usuários compartilhem somente com usuários em seus grupos", +"Allow mail notification" => "Permitir notificação por email", +"Allow user to send mail notification for shared files" => "Permitir usuários enviar notificação por email de arquivos compartilhados", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Obrigar os clientes que se conectem a %s através de uma conexão criptografada.", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index add2f1fe0029836d392f7cb8d9d8d3f20a9c37a7..bb53ab307983defc06ecace2e55ff1ad40a59c46 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -16,6 +16,12 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "使用者加入群組 %s 錯誤", "Unable to remove user from group %s" => "使用者移出群組 %s 錯誤", "Couldn't update app." => "無法更新應用程式", +"Wrong password" => "密碼錯誤", +"No user supplied" => "未提供使用者", +"Please provide an admin recovery password, otherwise all user data will be lost" => "請提供管理者還原密碼,否則會遺失所有使用者資料", +"Wrong admin recovery password. Please check the password and try again." => "錯誤的管理者還原密碼", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "後端不支援變更密碼,但成功更新使用者的加密金鑰", +"Unable to change password" => "無法修改密碼", "Update to {appversion}" => "更新至 {appversion}", "Disable" => "停用", "Enable" => "啟用", @@ -27,6 +33,7 @@ $TRANSLATIONS = array( "Error" => "錯誤", "Update" => "更新", "Updated" => "已更新", +"Select a profile picture" => "選擇大頭貼", "Decrypting files... Please wait, this can take some time." => "檔案解密中,請稍候。", "Saving..." => "儲存中...", "deleted" => "已刪除", @@ -66,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", @@ -101,6 +110,12 @@ $TRANSLATIONS = array( "Your email address" => "您的電子郵件信箱", "Fill in an email address to enable password recovery" => "請填入電子郵件信箱以便回復密碼", "Profile picture" => "個人資料照片", +"Upload new" => "上傳新的", +"Select new from Files" => "從已上傳的檔案中選一個", +"Remove image" => "移除圖片", +"Either png or jpg. Ideally square but you will be able to crop it." => "可以使用 png 或 jpg 格式,最好是方形的,但是您之後也可以裁剪它", +"Abort" => "中斷", +"Choose as profile image" => "設定為大頭貼", "Language" => "語言", "Help translate" => "幫助翻譯", "WebDAV" => "WebDAV", diff --git a/tests/lib/connector/sabre/file.php b/tests/lib/connector/sabre/file.php new file mode 100644 index 0000000000000000000000000000000000000000..a1dade3d63de37a58c2f2b121acb6ecf261e097d --- /dev/null +++ b/tests/lib/connector/sabre/file.php @@ -0,0 +1,38 @@ +<?php +/** + * Copyright (c) 2013 Thomas Müller <thomas.mueller@tmit.eu> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_OC_Connector_Sabre_File extends PHPUnit_Framework_TestCase { + + /** + * @expectedException Sabre_DAV_Exception + */ + public function testSimplePutFails() { + // setup + $file = new OC_Connector_Sabre_File('/test.txt'); + $file->fileView = $this->getMock('\OC\Files\View', array('file_put_contents'), array(), '', FALSE); + $file->fileView->expects($this->any())->method('file_put_contents')->withAnyParameters()->will($this->returnValue(false)); + + // action + $etag = $file->put('test data'); + } + + /** + * @expectedException Sabre_DAV_Exception + */ + public function testSimplePutFailsOnRename() { + // setup + $file = new OC_Connector_Sabre_File('/test.txt'); + $file->fileView = $this->getMock('\OC\Files\View', array('file_put_contents', 'rename'), array(), '', FALSE); + $file->fileView->expects($this->any())->method('file_put_contents')->withAnyParameters()->will($this->returnValue(true)); + $file->fileView->expects($this->any())->method('rename')->withAnyParameters()->will($this->returnValue(false)); + + // action + $etag = $file->put('test data'); + } + +}