diff --git a/apps/files/css/files.css b/apps/files/css/files.css index e26c1a89b7..cbf34279f5 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 b52221ac1f..f1ef485fc3 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 67d3d5ead8..e14e52eb6c 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 3c99e3876c..a929799677 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 899bc6469e..37b6685884 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 0000000000..0157af093e --- /dev/null +++ b/apps/files/l10n/ady.php @@ -0,0 +1,7 @@ + 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 67a3414819..b5bfa6c0bb 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 c2a20931ba..027747c6cc 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 143a5efc3d..8c5f4634b4 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 c58cb4bbe3..ff9420703f 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 90d760587d..bfed4b2227 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 9f674b27e6..cb637d849b 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 33ea47d5f0..ca6d909364 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 2766478650..1779d04151 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 44b4e34195..213bfddb80 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 d064b0c652..c7cf14d023 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 cd96020856..7b3f742369 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 214812d7ad..4d792c32ae 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 7067b854f5..5e7ad41b0f 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -19,8 +19,6 @@ - @@ -29,9 +27,7 @@ -
> - t('Deleted files'));?> -
+ >
diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index 14d7992ad5..d55c5f6d30 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 89f63cc1cd..3264532263 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 1b7069b678..53c31a7219 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 4c36d31ed6..93a715d341 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 aa867645c8..e385960f27 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 200001e6eb..79fdbe995e 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 c220a4bdf0..d2bfdfa9ea 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 2d644708c5..138d51b09b 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 666ea59687..1dc4521f3d 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 3edb7299c2..0c9234d3a5 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 e750c85068..f7d4bd1150 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 461ec2b92c..89ac3bba42 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 358937441e..b222aa10e4 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 abf12d73d5..5a1d8ec750 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 f9534d7eca..f45dbe7c73 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 d1f8303bda..fa536dca9b 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 4ededb716f..ae57cb1c56 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 e37ccf54d6..511120856a 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 ca4502ff6a..4eb1ca00dd 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 5b8a68657b..c6abb1952d 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 e0d52399c7..41ddc7e069 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 a80eb3e652..ae600e7153 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 8b2f264c62..9290295940 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 88ba6b4715..d425111cf0 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 c4c52f4ac2..6c5b4caf06 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 f7f329b899..fb1ecd5463 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 48e41e9304..bc33dd4043 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 87a0871112..448a0fa11c 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 a43ab2e2a0..08aaa62e25 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 c164b3ea2b..e53887c359 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -2,6 +2,7 @@
+ diff --git a/apps/files_trashbin/l10n/ady.php b/apps/files_trashbin/l10n/ady.php new file mode 100644 index 0000000000..0acad00e8b --- /dev/null +++ b/apps/files_trashbin/l10n/ady.php @@ -0,0 +1,6 @@ + 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 710a9d1419..0af6972af5 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 45527805ce..39e1ac8614 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 3dd88eb265..c9d9949f50 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 26d46b81b9..e81b63143f 100644 --- a/apps/user_ldap/l10n/eo.php +++ b/apps/user_ldap/l10n/eo.php @@ -1,8 +1,15 @@ "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 34b07c654a..2727cc98dc 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 2d2c4d70e7..19565f2852 100644 --- a/apps/user_webdavauth/l10n/ko.php +++ b/apps/user_webdavauth/l10n/ko.php @@ -1,5 +1,7 @@ "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 ac37b109e7..e5e9f6dbb7 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 8d14520cd7..b472797b3c 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -350,7 +350,7 @@ OC.Share={ if (mailSend === '1') { checked = 'checked'; } - html += ''+t('core', 'notify user by email')+''; + html += ''; } 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 0000000000..ffcdde48d4 --- /dev/null +++ b/core/l10n/ady.php @@ -0,0 +1,9 @@ + 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 f61014e19e..cb8a506c4a 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 ownCloud community." => "حصل خطأ في عملية التحديث, يرجى ارسال تقرير بهذه المشكلة الى ownCloud community.", "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 4f5ae5993f..3b7fd4633a 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 3b4b990ac2..dfcd2f509a 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 938d668b36..d85da45b5d 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 ownCloud community." => "L'actualització ha estat incorrecte. Comuniqueu aquest error a la comunitat ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "L'actualització ha estat correcte. Ara us redirigim a ownCloud.", "%s password reset" => "restableix la contrasenya %s", @@ -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,

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

Cheers!" => "Ei,

només fer-te saber que %s ha compartit %s amb tu.
Mira-ho:

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 8b63079c87..4bd8bd07b7 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 ownCloud community." => "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do evidence chyb ownCloud", "The update was successful. Redirecting you to ownCloud now." => "Aktualizace byla úspěšná. Přesměrovávám na ownCloud.", "%s password reset" => "reset hesla %s", @@ -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,

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

Cheers!" => "Ahoj,

jenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete
zde.

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 78eb6ba969..920fcad3d6 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 ownCloud community." => "Methodd y diweddariad. Adroddwch y mater hwn i gymuned ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Roedd y diweddariad yn llwyddiannus. Cewch eich ailgyfeirio i ownCloud nawr.", "Use the following link to reset your password: {link}" => "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}", diff --git a/core/l10n/da.php b/core/l10n/da.php index 8938f2107f..b28e8a969b 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 ownCloud community." => "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til ownClouds community.", "The update was successful. Redirecting you to ownCloud now." => "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud.", "%s password reset" => "%s adgangskode nulstillet", @@ -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,

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

Cheers!" => "Hallo,

dette blot for at lade dig vide, at %s har delt \"%s\" med dig.
Se det!

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 b5ff8826ad..7e292adcf3 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,6 +1,7 @@ "%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 ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melde dieses Problem an die ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Du wirst nun zu ownCloud weitergeleitet.", "%s password reset" => "%s-Passwort zurücksetzen", @@ -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,

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

Cheers!" => "Hallo,

wollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.
Schau es dir an.

Gruß!", +"Hey there,

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

" => "Hallo,

wollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.
Schau es dir an.

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

" => "Die Freigabe wird ablaufen am %s.

", "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 1fc6f6b7e1..1f79e977cc 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 ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.", "%s password reset" => "%s-Passwort zurücksetzen", @@ -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,

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

Cheers!" => "Hallo,

ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.
Schauen Sie es sich an!

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 5b9b199f41..95519c7d41 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -1,6 +1,7 @@ "%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 ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.", "%s password reset" => "%s-Passwort zurücksetzen", @@ -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,

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

Cheers!" => "Hallo,

ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.
Schauen Sie es sich an!

Viele Grüße!", +"Hey there,

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

" => "Hallo,

ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.
Schauen Sie es sich an!

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

" => "Die Freigabe wird ablaufen am %s.

", "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 7fc58ca352..fd5987d02a 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 ownCloud community." => "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ στείλτε αναφορά στην κοινότητα ownCloud.", "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,

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

Cheers!" => "Γεια σας,

σας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το »%s«.
Δείτε το!

Γεια χαρά!", "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 bb26f1469d..c69cf59f38 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 ownCloud community." => "The update was unsuccessful. Please report this issue to the ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "The update was successful. Redirecting you to ownCloud now.", "%s password reset" => "%s password reset", @@ -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,

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

Cheers!" => "Hey there,

just letting you know that %s shared \"%s\" with you.
View it!

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 712f97538f..2b416db470 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 ownCloud community." => "La ĝisdatigo estis malsukcese. Bonvolu raporti tiun problemon al la ownClouda komunumo.", "The update was successful. Redirecting you to ownCloud now." => "La ĝisdatigo estis sukcesa. Alidirektante nun al ownCloud.", "Use the following link to reset your password: {link}" => "Uzu la jenan ligilon por restarigi vian pasvorton: {link}", @@ -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,

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

Cheers!" => "Saluton:

Ni nur sciigas vin, ke %s kunhavigis “%s” kun vi.
Vidu ĝin

Ĝ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 3aa0c3f732..29eea2dbf4 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 ownCloud community." => "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora.", "%s password reset" => "%s restablecer contraseña", @@ -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,

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

Cheers!" => "Hey,

sólo te hago saber que %s ha compartido %s contigo.
¡Echa un ojo!

¡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 6dce47f760..7d7e29c8ff 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 ownCloud community." => "La actualización no pudo ser completada. Por favor, reportá el inconveniente a la comunidad ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La actualización fue exitosa. Estás siendo redirigido a ownCloud.", "%s password reset" => "%s restablecer contraseña", @@ -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,

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

Cheers!" => "Hola,

Simplemente te informo que %s compartió %s con vos.
Miralo acá:

¡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 17ce89543a..7b26850166 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -1,6 +1,7 @@ "%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 ownCloud community." => "Uuendus ebaõnnestus. Palun teavita probleemidest ownCloud kogukonda.", "The update was successful. Redirecting you to ownCloud now." => "Uuendus oli edukas. Kohe suunatakse Sind ownCloudi.", "%s password reset" => "%s parooli lähtestus", @@ -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,

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

Cheers!" => "Hei,

lihtsalt annan sulle teada, et %s jagas sinuga »%s«.
Vaata seda!

Tervitades!", +"Hey there,

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

" => "Hei,

lihtsalt annan sulle teada, et %s jagas sulle välja »%s«.
Vaata seda!

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

" => "Jagamine aegub %s.

", "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 1e6594adf6..2bf1b06079 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 ownCloud community." => "Eguneraketa ez da ongi egin. Mesedez egin arazoaren txosten bat ownCloud komunitatearentzako.", "The update was successful. Redirecting you to ownCloud now." => "Eguneraketa ongi egin da. Orain zure ownClouderea berbideratua izango zara.", "%s password reset" => "%s pasahitza berrezarri", @@ -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,

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

Cheers!" => "Kaixo

%s-ek %s zurekin partekatu duela jakin dezazun.
\nIkusi ezazu

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 930a5b0dcb..e173d628f5 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 ownCloud community." => "به روز رسانی ناموفق بود. لطفا این خطا را به جامعه ی OwnCloud گزارش نمایید.", "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,

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

Cheers!" => "اینجا

فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده»%s« توسط شما.
مشاهده آن!

به سلامتی!", "Updating ownCloud to version %s, this may take a while." => "به روز رسانی OwnCloud به نسخه ی %s، این عملیات ممکن است زمان بر باشد." ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index cf215159c3..c6c9f09e1d 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -1,6 +1,7 @@ "%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 ownCloud community." => "Päivitys epäonnistui. Ilmoita ongelmasta ownCloud-yhteisölle.", "The update was successful. Redirecting you to ownCloud now." => "Päivitys onnistui. Selain ohjautuu nyt ownCloudiisi.", "%s password reset" => "%s salasanan nollaus", @@ -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,

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

Cheers!" => "Hei!

%s jakoi kohteen »%s« kanssasi.
Katso se tästä!

Näkemiin!", +"Hey there,

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

" => "Hei sinä!

%s jakoi kohteen »%s« kanssasi.
Tutustu siihen!

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

" => "Jakaminen päättyy %s.

", "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 e7cb75e53f..83460f4334 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 ownCloud community." => "La mise à jour a échoué. Veuillez signaler ce problème à la communauté ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La mise à jour a réussi. Vous êtes redirigé maintenant vers ownCloud.", "%s password reset" => "Réinitialisation de votre mot de passe %s", @@ -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,

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

Cheers!" => "Salut,

je veux juste vous signaler %s partagé »%s« avec vous.
Voyez-le!

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 e3be94537e..3325a894f4 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -1,6 +1,7 @@ "%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 ownCloud community." => "A actualización non foi satisfactoria, informe deste problema á comunidade de ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "A actualización realizouse correctamente. Redirixíndoo agora á ownCloud.", "%s password reset" => "Restabelecer o contrasinal %s", @@ -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,

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

Cheers!" => "Ola,

só facerlle saber que %s compartiu «%s» con vostede.
Véxao!

Saúdos!", +"Hey there,

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

" => "Ola,

Só facerlle saber que %s compartiu «%s» con vostede.
Véxao!

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

" => "Esta compartición caduca o %s.

", "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 704755da07..30ef27664e 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 ownCloud community." => "תהליך העדכון לא הושלם בהצלחה. נא דווח את הבעיה בקהילת ownCloud.", "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,

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

Cheers!" => "שלום,

רצינו לעדכן כי %s שיתף/שיתפה איתך את »%s«.
לצפיה

יום טוב!", "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 e783ec88d1..ec9381c787 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 107a5f04c0..2cc473a9c0 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 ownCloud community." => "A frissítés nem sikerült. Kérem értesítse erről a problémáról az ownCloud közösséget.", "The update was successful. Redirecting you to ownCloud now." => "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz.", "%s password reset" => "%s jelszó visszaállítás", @@ -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,

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

Cheers!" => "Üdv!

Új hír: %s megosztotta Önnel ezt: »%s«.
Itt nézhető meg!

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 69993d4405..2b987eecd8 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 ownCloud community." => "Pembaruan gagal. Silakan laporkan masalah ini ke komunitas ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Pembaruan sukses. Anda akan diarahkan ulang ke ownCloud.", "Use the following link to reset your password: {link}" => "Gunakan tautan berikut untuk menyetel ulang sandi Anda: {link}", diff --git a/core/l10n/is.php b/core/l10n/is.php index 729aaa4c9e..f72b7290b8 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 bd2fad79c8..0b2d3768b0 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -1,6 +1,7 @@ "%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 ownCloud community." => "L'aggiornamento non è riuscito. Segnala il problema alla comunità di ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "L'aggiornamento è stato effettuato correttamente. Stai per essere reindirizzato a ownCloud.", "%s password reset" => "Ripristino password di %s", @@ -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,

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

Cheers!" => "Ehilà,

volevo solamente farti sapere che %s ha condiviso «%s» con te.
Guarda!

Saluti!", +"Hey there,

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

" => "Ciao,

volevo informarti che %s ha condiviso %s con te.
Vedi!

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

" => "La condivisione scadrà il %s.

", "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 110e5b2120..bf8313f717 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 ownCloud community." => "更新に成功しました。この問題を ownCloud community にレポートしてください。", "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,

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

Cheers!" => "こんにちは、

%sがあなたと »%s« を共有したことをお知らせします。
それを表示

それでは。", "Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index e051f9ce1d..a32960e1a2 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 ownCloud community." => "განახლება ვერ განხორციელდა. გთხოვთ შეგვატყობინოთ ამ პრობლემის შესახებ აქ: ownCloud community.", "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 947f5e9ee2..92c7b96f01 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 ownCloud community." => "업데이트가 실패하였습니다. 이 문제를 ownCloud 커뮤니티에 보고해 주십시오.", "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 2feb6db272..e11cf0b5a9 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 9e127d867c..17e4345ad5 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 ownCloud community." => "Den Update war net erfollegräich. Mell dëse Problem w.e.gl derownCloud-Community.", "The update was successful. Redirecting you to ownCloud now." => "Den Update war erfollegräich. Du gëss elo bei d'ownCloud ëmgeleet.", "Use the following link to reset your password: {link}" => "Benotz folgende Link fir däi Passwuert zréckzesetzen: {link}", @@ -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,

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

Cheers!" => "Hallo,

ech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.
Kucken!

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 610e7aeade..f25b8ab762 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -1,6 +1,7 @@ "%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 ownCloud community." => "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the ownCloud bendruomenei.", "The update was successful. Redirecting you to ownCloud now." => "Atnaujinimas buvo sėkmingas. Nukreipiame į jūsų ownCloud.", "%s password reset" => "%s slaptažodžio atnaujinimas", @@ -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,

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

Cheers!" => "Labas,

tik informuojame, kad %s pasidalino su Jumis »%s«.
Peržiūrėk!

Linkėjimai!", +"Hey there,

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

" => "Labas,

tik informuojame, kad %s pasidalino su Jumis »%s«.
Peržiūrėk!

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

" => "Bendrinimo laikas baigsis %s.

", "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 6bdbeaf5e2..998a03c5dd 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 ownCloud community." => "Atjaunināšana beidzās nesekmīgi. Lūdzu, ziņojiet par šo problēmu ownCloud kopienai.", "The update was successful. Redirecting you to ownCloud now." => "Atjaunināšana beidzās sekmīgi. Tagad pārsūta jūs uz ownCloud.", "%s password reset" => "%s paroles maiņa", @@ -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,

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

Cheers!" => "Sveiks,

Tikai daru tev zināmu ka %s dalās %s ar tevi.
Apskati to!

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 1c998bb636..dffd20ab3b 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 5aea25a3fd..cac2dbff2a 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 01dec88557..a252642678 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 3dcdeaedec..fe8ec482e3 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 ownCloud community." => "De update is niet geslaagd. Meld dit probleem aan bij de ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "De update is geslaagd. Je wordt teruggeleid naar je eigen ownCloud.", "%s password reset" => "%s wachtwoord reset", @@ -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,

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

Cheers!" => "Hallo daar,

%s deelde »%s« met jou.
Bekijk!

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 d596605dbc..6dff2e6374 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 ownCloud community." => "Oppdateringa feila. Ver venleg og rapporter feilen til ownCloud-fellesskapet.", "The update was successful. Redirecting you to ownCloud now." => "Oppdateringa er fullført. Sender deg vidare til ownCloud no.", "%s password reset" => "%s passordnullstilling", @@ -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,

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

Cheers!" => "Hei der,

nemner berre at %s delte «%s» med deg.
Sjå det!

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 c8078d06c7..156c6dbac1 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 ad467fe100..5d60f5d3aa 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 ownCloud community." => "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem spoleczności ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Aktualizacji zakończyła się powodzeniem. Przekierowuję do ownCloud.", "%s password reset" => "%s reset hasła", @@ -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,

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

Cheers!" => "Cześć,

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

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 5f8903a8ff..fc43814ae0 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -1,6 +1,7 @@ "%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 ownCloud community." => "A atualização falhou. Por favor, relate este problema para a comunidade ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "A atualização teve êxito. Você será redirecionado ao ownCloud agora.", "%s password reset" => "%s redefinir senha", @@ -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,

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

Cheers!" => "Olá,

apenas para você saber que %s compartilhou %s com você.
Veja:

Abraços!", +"Hey there,

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

" => "Olá,

só gostaria que você soubesse que %s compartilhou »%s« com você.
Veja isto!

" => "O compartilhamento irá expirar em %s.

", "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 977d8e38cb..fd50442119 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 ownCloud community." => "A actualização falhou. Por favor reporte este incidente seguindo este link ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora.", "%s password reset" => "%s reposição da password", @@ -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,

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

Cheers!" => "Olá,

Apenas para lhe informar que %s partilhou »%s« consigo.
Consulte-o aqui!

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 12fbfa5f0c..73350011f1 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 ownCloud community." => "Actualizarea a eșuat! Raportați problema către comunitatea ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Actualizare reușită. Ești redirecționat către ownCloud.", "Use the following link to reset your password: {link}" => "Folosește următorul link pentru a reseta parola: {link}", @@ -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,

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

Cheers!" => "Salutare,

Vă aduc la cunoștință că %s a partajat %s cu tine.
Accesează-l!

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 1b3133a1a6..5cfd013850 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 ownCloud community." => "При обновлении произошла ошибка. Пожалуйста сообщите об этом в ownCloud сообщество.", "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,

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

Cheers!" => "Приветствую,

просто даю знать, что %s поделился »%s« с вами.
Посмотреть!

Удачи!", "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 2d922657ea..065604425b 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 ac45947459..b4bcaac8ae 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 ownCloud community." => "Aktualizácia nebola úspešná. Problém nahláste na ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "Aktualizácia bola úspešná. Presmerovávam na prihlasovaciu stránku.", "%s password reset" => "reset hesla %s", @@ -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,

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

Cheers!" => "Ahoj,

chcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu:
zde.

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 84cd83fa2f..e858284de5 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 ownCloud community." => "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownCloud.", "Use the following link to reset your password: {link}" => "Za ponastavitev gesla uporabite povezavo: {link}", @@ -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,

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

Cheers!" => "Pozdravljen/a,

sporočam, da je %s delil »%s« s teboj.
Poglej vsebine!

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 e0fde3f129..2d9649a648 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,

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

Cheers!" => "Tungjatjeta,

duam t'ju njoftojmë që %s ka ndarë »%s« me ju.
Shikojeni!

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 064984cca5..666223c6cb 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 0ea3259df6..2993653741 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 ownCloud community." => "Uppdateringen misslyckades. Rapportera detta problem till ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Uppdateringen lyckades. Du omdirigeras nu till OwnCloud.", "%s password reset" => "%s återställ lösenord", @@ -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,

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

Cheers!" => "Hej där,

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

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 43c7f451e4..1756d22c78 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 8eab771822..c6c0e94a32 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 ownCloud community." => "การอัพเดทไม่เป็นผลสำเร็จ กรุณาแจ้งปัญหาที่เกิดขึ้นไปยัง คอมมูนิตี้ผู้ใช้งาน ownCloud", "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 d8d9709949..57603895c9 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 ownCloud community." => "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "Güncelleme başarılı. ownCloud'a yönlendiriliyor.", "%s password reset" => "%s parola sıfırlama", @@ -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,

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

Cheers!" => "Merhaba,

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

İ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 36023cb165..621c45d4d0 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 2320765473..6bd6901815 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 ownCloud community." => "Оновлення виконалось неуспішно. Будь ласка, повідомте про цю проблему в спільноті ownCloud.", "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 1c99aad9a4..2e3d956935 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 ownCloud community." => "Cập nhật không thành công . Vui lòng thông báo đến Cộng đồng ownCloud .", "The update was successful. Redirecting you to ownCloud now." => "Cập nhật thành công .Hệ thống sẽ đưa bạn tới ownCloud.", "Use the following link to reset your password: {link}" => "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 04c4630b22..6a5dcb50a9 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 ownCloud community." => "更新不成功。请汇报将此问题汇报给 ownCloud 社区。", "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,

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

Cheers!" => "您好,

%s 向您分享了 »%s«。
查看", "Updating ownCloud to version %s, this may take a while." => "更新 ownCloud 到版本 %s,这可能需要一些时间。" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 759a4fdc35..1483329bbf 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -1,6 +1,7 @@ "%s 與您分享了 %s", +"Couldn't send mail to following users: %s " => "無法寄送郵件給這些使用者:%s", "group" => "群組", "Turned on maintenance mode" => "已啓用維護模式", "Turned off maintenance mode" => "已停用維護模式", @@ -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 ownCloud community." => "升級失敗,請將此問題回報 ownCloud 社群。", "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,

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

Cheers!" => "嗨,

通知您一聲,%s 與您分享了 %s ,
看一下吧", +"Hey there,

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

" => "嗨,

%s 和你分享了 %s ,到這裡看它

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

" => "分享將於 %s 過期

", "Updating ownCloud to version %s, this may take a while." => "正在將 ownCloud 升級至版本 %s ,這可能需要一點時間。" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 71bec11d21..fcca43624f 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -64,7 +64,7 @@
  • - + > t('Log out'));?> diff --git a/core/templates/login.php b/core/templates/login.php index 06f64d41e3..aca42c8438 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -12,6 +12,12 @@ t('Please change your password to secure your account again.')); ?> + +
    + t('Server side authentication failed!')); ?>
    + t('Please contact your administrator.')); ?> +
    +

    diff --git a/l10n/ach/core.po b/l10n/ach/core.po index 070293766e..701d593aca 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/ach/files.po b/l10n/ach/files.po index b8a81660f4..f161e0fb93 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 \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 bc509f34dc..5dfafa4f3b 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 591268ad38..8d64cea553 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 \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 ownCloud community, the \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 ownCloud " +"community." +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.
    If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
    If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:12 +msgid "Request failed!
    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 documentation." +msgstr "" + +#: templates/installation.php:47 +msgid "Create an admin account" +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,

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

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

    " +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 0000000000..aff7006c56 --- /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 \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 0000000000..25ef44da33 --- /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 \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 0000000000..9715fc2bc0 --- /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 \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 "" +"Warning: \"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 "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:460 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"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 0000000000..aa1df900ca --- /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 \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 0000000000..1b92cb7f60 --- /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 \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 0000000000..5e9e0e8f2a --- /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 \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 0000000000..94fa2ed8df --- /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 \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 true 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 installation guides." +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 0000000000..6a7e861752 --- /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 \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 installation guides." +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 ownCloud community, the source code is " +"licensed under the AGPL." +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 "-licensed by " +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 %s of the available %s" +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 access your Files via WebDAV" +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 0000000000..de9ce044f3 --- /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 \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 "" +"Warning: 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 "" +"Warning: 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 0000000000..d20828e05e --- /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 \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 ba46eb4cfa..b5188e5a89 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 \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 admin account" msgstr "Skep `n admin-rekening" -#: 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 1a0f6c3fbf..581b4b711a 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 \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 6e1898259c..69d909b76a 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 39af322044..f9ccab1475 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 \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 true 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 installation guides." 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 1a474f8b03..70d13a3eb9 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 \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 ownCloud community, the \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 56e2c293e4..296a28042f 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 \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 admin account" 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." @@ -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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 5e431360f9..21d3340aca 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -4,13 +4,14 @@ # # Translators: # ibrahim_9090 , 2013 +# Meesh , 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 19:30+0000\n" +"Last-Translator: Meesh \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -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] "" +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:582 +#: 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 9732c95e1a..ead512918b 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 598bb2d827..b931dc9eae 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index f07045eb58..9edd1eb64d 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 \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 0cc9b5b1c8..3e6132a904 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 \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 true 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 installation guides." 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] "" @@ -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 42761603ac..3f8379851c 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 \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 ownCloud community, the \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 9b8d51d257..4af6a1a1c6 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 \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 admin account
    " 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/be/files.po b/l10n/be/files.po index ebc97c0f97..6576e0bcf1 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 \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 4f5399874b..ea3a5a1813 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 28e5d3884c..4379174799 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 \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 ownCloud community, the \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 58667fa74a..cafce81465 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 \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 3149c9a989..8d27a845f1 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 0bf82bd4a4..9909177f6f 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 1b16c5b409..4808f7ca75 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 \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 6ee938f5ab..9dd30883bc 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 \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 true 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 installation guides." 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/bg_BG/settings.po b/l10n/bg_BG/settings.po index 215c006717..c5b133ff9b 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 \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 ownCloud community, the \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 36e98dacda..0896829247 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 10ce6739f1..180a499d4b 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 \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 229e29bf4e..e29f584dbb 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 296d25d0bd..d063009d63 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index eba36ccfd6..380a02ad7c 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 \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 40a6b3b747..ddbd1f7327 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 \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 true 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 installation guides." 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 b36011a8a5..3646451dad 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 \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 ownCloud community, the \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 5b4df12a3c..c468a2de53 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/bs/files.po b/l10n/bs/files.po index f825923a72..09d48d49e3 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 \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 8e55996135..e7930cc014 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 87fe921d45..6522993367 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 \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 ownCloud community, the \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 admin account" msgstr "Crea un compte d'administrador" -#: 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,

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

    Cheers!" -msgstr "Ei,

    només fer-te saber que %s ha compartit %s amb tu.
    Mira-ho:

    Salut!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 82091cf75b..bfbedf31ec 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 \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 695090cfef..e03c0ada38 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 \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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 6e08a5ad52..3f33f7d649 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 \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 c82e5efacb..54df775184 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 true tag " "which is not allowed for non shipped apps" msgstr "L'aplicació no es pot instal·lar perquè conté l'etiqueta vertader 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 installation guides." msgstr "Comproveu les guies d'instal·lació." -#: 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 1053dcb243..738583e7b6 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 ownCloud community, the \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 admin account" msgstr "Vytvořit účet správce" -#: 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,

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

    Cheers!" -msgstr "Ahoj,

    jenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete
    zde.

    Díky" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 5cff84e574..631ace328f 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 ffbcfd3941..7f6ac78f5a 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 a9e29ba28e..dc83c75b23 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 \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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varování: 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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Varování: 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 9294025f67..3b54400bc0 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 \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 ef75336427..56adeee475 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "Aplikace nemůže být nainstalována, protože obsahuje značku\n\n\ntrue\n\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 installation guides." msgstr "Zkonzultujte, prosím, průvodce instalací." -#: 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 b979460916..b488beb455 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 \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 ownCloud community, the \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 1e0692c377..c9b8cd1fa7 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 \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 admin account" msgstr "Crewch gyfrif gweinyddol" -#: 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index e2d27216bb..c743255483 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 \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 9a63fede82..77fedfc65e 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 c9721c7493..6433a79bed 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index b9b366cf63..69f8f97c37 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 \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 63e302b319..40e5844db9 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 \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 true 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 installation guides." msgstr "Gwiriwch y canllawiau gosod 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 6a1d7704d0..9c37751137 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 \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 ownCloud community, the \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 89530e0745..4cada3338a 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 \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 admin account" msgstr "Opret en administratorkonto" -#: 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,

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

    Cheers!" -msgstr "Hallo,

    dette blot for at lade dig vide, at %s har delt \"%s\" med dig.
    Se det!

    Hej" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/da/files.po b/l10n/da/files.po index b6cf95c8d9..1bb759e43d 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 \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 aef21e07ad..403f3a3aa6 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 3f0098ca86..0e92e10c11 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 \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 7d01d7a969..14c6ec889b 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 true tag " "which is not allowed for non shipped apps" msgstr "Appen kan ikke installeres, da den indeholder taget\n\n\ntrue\n\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 installation guides." msgstr "Dobbelttjek venligst installations vejledningerne." -#: 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 e5f2b57e88..9a2698240f 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 ownCloud community, the \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "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 admin account" msgstr "Administrator-Konto 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,

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

    Cheers!" -msgstr "Hallo,

    wollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.
    Schau es dir an.

    Gruß!" +"href=\"%s\">View it!

    " +msgstr "Hallo,

    wollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.
    Schau es dir an.

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

    " +msgstr "Die Freigabe wird ablaufen am %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/de/files.po b/l10n/de/files.po index 06bce64463..542b1e6b71 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 \n" "Language-Team: German \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 fbe536c708..3599eb69e5 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 4d78f4aabd..f1cfe7ba75 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 \n" "Language-Team: German \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 c054df799c..cef3adec63 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 \n" "Language-Team: German \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 true tag " "which is not allowed for non shipped apps" msgstr "Die Applikation konnte nicht installiert werden, da diese das true 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 installation guides." msgstr "Bitte prüfe die Installationsanleitungen." -#: 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 4cf53d6658..9ba08c0545 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 \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 \n" "Language-Team: German \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 ownCloud community, the \n" "Language-Team: German \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 0c8f3a25ae..c095d3a7f6 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index 7c47140c84..f437a4aa3b 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 \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 59daa54bea..a256dd9d3e 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 c39c070ed5..a14686b0ec 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 \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 ownCloud community, the \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 admin account" msgstr "Administrator-Konto 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,

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

    Cheers!" -msgstr "Hallo,

    ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.
    Schauen Sie es sich an!

    Viele Grüsse!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 0d4817bb29..b625a8b5e4 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 \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 774a241051..80f813910e 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 8d124a52de..f9b2141702 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 \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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: «smbclient» ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." -#: lib/config.php:451 +#: lib/config.php:457 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." -#: lib/config.php:454 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index 5061816a4d..2682be087d 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 \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 ff7512d924..0125f27f4f 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 \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 true 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 installation guides." msgstr "Bitte prüfen Sie die Installationsanleitungen." -#: 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 745b7eec82..cbd581f01c 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 \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 ownCloud community, the \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 cfdcd67997..edd750f391 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 \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "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 admin account" msgstr "Administrator-Konto 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,

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

    Cheers!" -msgstr "Hallo,

    ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.
    Schauen Sie es sich an!

    Viele Grüße!" +"href=\"%s\">View it!

    " +msgstr "Hallo,

    ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.
    Schauen Sie es sich an!

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

    " +msgstr "Die Freigabe wird ablaufen am %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index ce852eb583..9990d48285 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 \n" "Language-Team: German (Germany) \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 1571956a4c..d5577daf92 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 1875dbf8bf..0f2bea5612 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 \n" "Language-Team: German (Germany) \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 e70bc08de2..18a5ff6232 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 \n" "Language-Team: German (Germany) \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 true tag " "which is not allowed for non shipped apps" msgstr "Die Applikation konnte nicht installiert werden, da diese das true 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 installation guides." msgstr "Bitte prüfen Sie die Installationsanleitungen." -#: 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 3a889bcbca..31925d001a 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 \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 \n" "Language-Team: German (Germany) \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 ownCloud community, the \n" "Language-Team: German (Germany) \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 9b88a333be..6743619794 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 \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 admin account" 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." @@ -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,

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

    Cheers!" -msgstr "Γεια σας,

    σας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το »%s«.
    Δείτε το!

    Γεια χαρά!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/el/files.po b/l10n/el/files.po index 87c112acc6..8794c5a9de 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 8cb29d7864..c960ab2c37 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 fd0a919e9f..dc88fc6766 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Προσοχή: Η υποστήριξη FTP στην PHP δεν ενεργοποιήθηκε ή εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση FTP. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index d1043567c1..e70d238939 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 \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 e26684eae7..21de2bf03b 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 \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 true 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 installation guides." 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/el/settings.po b/l10n/el/settings.po index 1e84a673d3..550b8adf00 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 \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 installation guides." -msgstr "" +msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης." #: 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 ownCloud community, the \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 8f786dfe21..61cc1f0e63 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index ea57ff8382..9601c8a74d 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 \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 00358fec52..8aec124f55 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 df5539ce0c..d3de565023 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 \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 ownCloud community, the \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 admin account" msgstr "Create an admin account" -#: 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,

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

    Cheers!" -msgstr "Hey there,

    just letting you know that %s shared \"%s\" with you.
    View it!

    Cheers!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index bf8e937434..e65d6cb248 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 b81a0ff62a..1354eff62b 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 6190c95852..1f4b3dec4d 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 \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 6b87c1ddd4..d32064c181 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 \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 14e6d1c7a8..ec48646159 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "App can't be installed because it contains the true 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 installation guides." msgstr "Please double check the installation guides." -#: 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 bcc1f4f64a..2afc895a38 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 \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 ownCloud community, the \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 1ea5a60749..6ff322fbfa 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 \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 admin account" msgstr "Krei administran konton" -#: 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,

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

    Cheers!" -msgstr "Saluton:

    Ni nur sciigas vin, ke %s kunhavigis “%s” kun vi.
    Vidu ĝin

    Ĝis!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 0f9a143e22..e87b33f99b 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 \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 10dcc993da..e607bf9172 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 a97c1db9c0..236aa1811e 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index def217fe08..cb45265ca8 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 \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 355fcf7398..3c339b239c 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 \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 true 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 installation guides." msgstr "Bonvolu duoble kontroli la gvidilon por instalo." -#: 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 d049887b7b..69adadb164 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 \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 ownCloud community, the , 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 12:22+0000\n" +"Last-Translator: Mariano \n" "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 5e96058e82..93b7aa4475 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 \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 admin account" msgstr "Crear una cuenta de administrador" -#: 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,

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

    Cheers!" -msgstr "Hey,

    sólo te hago saber que %s ha compartido %s contigo.
    ¡Echa un ojo!

    ¡Un saludo!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/es/files.po b/l10n/es/files.po index a4058e8958..14e84c9373 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 \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 e32866e301..7638a18810 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 , 2013 # asaez , 2013 # gmoriello , 2013 # mikelanabitarte , 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 \n" +"POT-Creation-Date: 2013-10-07 12:14-0400\n" +"PO-Revision-Date: 2013-10-07 16:10+0000\n" +"Last-Translator: Art O. Pal \n" "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 2f439a315f..375095a68b 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 \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 319d9f9f13..c4da9c540a 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-03 16:30+0000\n" +"Last-Translator: Korrosivo \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 true tag " "which is not allowed for non shipped apps" msgstr "La aplicación no se puede instalar porque contiene la etiqueta\n\ntrue\n\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 installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: 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 f11743ea95..a6d1816d4c 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 \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 ownCloud community, the \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 6c72e8a9b0..19341075ae 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 \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 admin account" msgstr "Crear una cuenta de administrador" -#: 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,

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

    Cheers!" -msgstr "Hola,

    Simplemente te informo que %s compartió %s con vos.
    Miralo acá:

    ¡Chau!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index f502ba7168..622c0d6766 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 \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 c01c38b834..7084c3602f 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 \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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 91783cd365..1dfe9a4ee1 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 \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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb \"smbclient\" no 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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Advertencia: El soporte de FTP en PHP no 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index cf833c421a..abcc1f3e13 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 \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 17cc36ca73..066f0111fa 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "La app no se puede instalar porque contiene la etiqueta true 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 installation guides." msgstr "Por favor, comprobá nuevamente la guía de instalación." -#: 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 faf86eb460..303428b341 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 \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 ownCloud community, the \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 d351beb1b7..5e77ae7441 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index 7405f7a77b..e8d08c5732 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 \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 0aa9dac648..27fa48061c 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 7b7e92dc23..9c26ed69ed 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 \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 ownCloud community, the \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 admin account" msgstr "Loo admini konto" -#: 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,

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

    Cheers!" -msgstr "Hei,

    lihtsalt annan sulle teada, et %s jagas sinuga »%s«.
    Vaata seda!

    Tervitades!" +"href=\"%s\">View it!

    " +msgstr "Hei,

    lihtsalt annan sulle teada, et %s jagas sulle välja »%s«.
    Vaata seda!

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

    " +msgstr "Jagamine aegub %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 52bcf2de8f..c0e88cd6cb 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 \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 317dc437d5..7d195812ab 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 b371afd127..19d868dd02 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 \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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Hoiatus: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Hoiatus: 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 438e1fb60a..358fc25d35 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 \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 \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 c40a301274..7029036801 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 17:46+0000\n" +"Last-Translator: Rivo Zängov \n" "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 cfb0bfca4a..b44937bc61 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 \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 \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 70416438c1..282b728218 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "Rakendit ei saa paigaldada, kuna see sisaldab \n\n\ntrue\n\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 installation guides." msgstr "Palun tutvu veelkord paigalduse juhenditega." -#: 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 72d666a7d0..1d42da7efa 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 \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 \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 ownCloud community, the \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 575c051d6a..1b5c151316 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 \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 \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 456f415e68..e4d54a357a 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 \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 admin account" msgstr "Sortu kudeatzaile kontu 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,

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

    Cheers!" -msgstr "Kaixo

    %s-ek %s zurekin partekatu duela jakin dezazun.
    \nIkusi ezazu

    Ongi jarraitu!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 46b992abc3..0de4715c44 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 11:40+0000\n" +"Last-Translator: asieriko \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 456db338ac..5c6eb3d83d 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 \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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 fbe14c6446..2acc8341c1 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 \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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Abisua: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Abisua: 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index bdb27c8c6d..1daada3771 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 \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 017ba3930f..7a64a4d3f4 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 \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 true 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 installation guides." msgstr "Mesedez begiratu instalazio gidak." -#: 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 fc5007d857..44fe562161 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 \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 ownCloud community, the \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 971a51aa87..4854035993 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 \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 admin account
    " 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." @@ -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,

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

    Cheers!" -msgstr "اینجا

    فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده»%s« توسط شما.
    مشاهده آن!

    به سلامتی!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/fa/files.po b/l10n/fa/files.po index b6b078cb36..2117e92f80 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 \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 4e22a4b067..4ec1a7fd3d 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 \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:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 28f6d3cb82..1b71738f67 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "خطا: پشتیبانی FTP در PHP فعال نمی باشد یا نصب نشده است. نصب و راه اندازی از سهم های FTP امکان پذیر نمی باشد. لطفا از مدیر سیستم خود برای راه اندازی آن درخواست\nکنید." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index b7425ae04b..28c2687c75 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 \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 e395df54b9..c324c0ab23 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 \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 true 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 installation guides." 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/fa/settings.po b/l10n/fa/settings.po index 7a3f31a719..f153db6b6a 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 \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 ownCloud community, the \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 2a2872e255..ba49002c8a 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 \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 admin account
    " msgstr "Luo ylläpitäjän tunnus" -#: 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,

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

    Cheers!" -msgstr "Hei!

    %s jakoi kohteen »%s« kanssasi.
    Katso se tästä!

    Näkemiin!" +"href=\"%s\">View it!

    " +msgstr "Hei sinä!

    %s jakoi kohteen »%s« kanssasi.
    Tutustu siihen!

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

    " +msgstr "Jakaminen päättyy %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 3e4e67e31d..345dc6cacd 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 b3dea67b92..4262f5e872 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 717af8af88..38def67d24 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 \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 41e7241ad3..054b3f1156 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 \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 true 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 installation guides." msgstr "Lue tarkasti asennusohjeet." -#: 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 2b9b270367..528192e96a 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 \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 \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 ownCloud community, the \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 bce932689a..911dcd114d 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 \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 admin account" msgstr "Créer un compte administrateur" -#: 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,

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

    Cheers!" -msgstr "Salut,

    je veux juste vous signaler %s partagé »%s« avec vous.
    Voyez-le!

    Bonne continuation!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 72963e3573..c76c180c26 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 6616ed6227..c9033cf761 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 c9b74a2e27..3e69326d28 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 \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 5223811451..599cfe1a8e 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 \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 792ec31010..a0467819d8 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "L'application ne peut être installée car elle contient la balise true 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 installation guides." msgstr "Veuillez vous référer au guide d'installation." -#: 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 21918cf68d..685dbd3e18 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 ownCloud community, the \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 b8bcfd4eea..bf4f91c64b 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 \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 admin account" msgstr "Crear unha contra de administrador" -#: 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,

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

    Cheers!" -msgstr "Ola,

    só facerlle saber que %s compartiu «%s» con vostede.
    Véxao!

    Saúdos!" +"href=\"%s\">View it!

    " +msgstr "Ola,

    Só facerlle saber que %s compartiu «%s» con vostede.
    Véxao!

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

    " +msgstr "Esta compartición caduca o %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 33e76e8487..99b866a9ad 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 \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 bdd69c8404..128417f5c6 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 \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:8 +msgid "Go directly to your " +msgstr "Vaia directamente ao seu" -#: 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: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 ad7adc59d7..7250668c4f 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 \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 9cb8c43c36..53df3e297f 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "Non é posíbel instalar o aplicativo por conter a etiqueta\n\n\ntrue\n\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 installation guides." msgstr "Volva comprobar as guías de instalación" -#: 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 8533d9c17c..513443ae5b 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 08:41+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "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 ownCloud community, the \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 c8ae1beb1e..35f8887185 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 \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 admin account" 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,8 +739,13 @@ msgstr "כניסות אלטרנטיביות" #, php-format msgid "" "Hey there,

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

    Cheers!" -msgstr "שלום,

    רצינו לעדכן כי %s שיתף/שיתפה איתך את »%s«.
    לצפיה

    יום טוב!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/he/files.po b/l10n/he/files.po index 15a0138955..d37f03036a 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 \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 200c580192..a113b684cf 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 42013789e8..7c7f1a22e1 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index b938a87bca..ebdf6f4150 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 \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 d5ee81ab17..8449860624 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 \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 true 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 installation guides." 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] "לפני %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 25d1901bcc..4a00de7bd3 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 \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 ownCloud community, the \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 834b2c48eb..20124d63a3 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/hi/files.po b/l10n/hi/files.po index f6fcb10b39..9a0a85d390 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 \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 ac181cbae0..30e76f8feb 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 6ebcc05414..a67189f46b 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 \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 e930c1b888..2828479f62 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 \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 true 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 installation guides." 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 fc8e5837c9..d4ee230efd 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 \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 ownCloud community, the \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 59f10907b0..f1e702ed34 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 \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 admin account" msgstr "Stvori administratorski račun" -#: 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 3eab0bfde8..039422202d 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 \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 db272d0927..12a6998030 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 a7a8e13f53..af43094b32 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 76a24e0c67..09cacae10d 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 \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 4450ee5f5d..b3008a4540 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 \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 true 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 installation guides." 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 aec94bb5df..03c222ac5e 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 \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 ownCloud community, the \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 9a7a4428b5..4b2a51eaf5 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 \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 admin account" msgstr "Rendszergazdai belépés 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,

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

    Cheers!" -msgstr "Üdv!

    Új hír: %s megosztotta Önnel ezt: »%s«.
    Itt nézhető meg!

    Minden jót!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index e61d77e5cb..78fb764ef2 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 b21350959c..a2a1a319f8 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 9a1567b54e..438523b0f6 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 \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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Figyelem: 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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Figyelem: 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index d0d6f3bc51..c669e0e026 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 \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 57212087ee..1d76c54380 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 \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 true 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 installation guides." msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót." -#: 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 f1bb5c03cf..0b90253f00 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 ownCloud community, the \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 cfc83cf773..5b7573876f 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 46e6544393..3f0ab24763 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 \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 e9b9f2afbe..60b4e5ae2b 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 ac97dda544..d2cadb69d0 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index b1c3d30842..b86cee6006 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 \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 ecc4b3e278..e86ef50944 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 \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 ownCloud community, the \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 admin account" msgstr "Crear un conto de administration" -#: 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 5244ffda62..8a79152c0b 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 \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 04eb7d8960..d74401d383 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 37018f9460..9b2e205ccc 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 0ac362ef50..41a8965d2d 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 \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 3f1800a5b6..1ef496076d 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 \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 true 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 installation guides." 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 3097b240fc..1b6113bff3 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 \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 ownCloud community, the \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 2a8ac8b61c..e745d2e9e0 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 \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 admin account" msgstr "Buat sebuah akun admin" -#: 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/id/files.po b/l10n/id/files.po index dc0c2272b6..10376eabb1 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 \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 a6c250dbb0..62ec821102 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 fc20f2c014..b58802d157 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 \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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Peringatan: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Peringatan: 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 4c5ff88001..2daa40bb0c 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 \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 5f5941b22a..7e21000976 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 \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 8aa1ab9b7c..d4e1979c03 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 \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 true 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 installation guides." msgstr "Silakan periksa ulang panduan instalasi." -#: 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 7f2ef31f55..17de98e788 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 \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 ownCloud community, the \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 f2fe78f0c1..feb1caadd1 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 \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 admin account" msgstr "Útbúa vefstjóra aðgang" -#: 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 "Skrá inn" -#: templates/login.php:45 +#: templates/login.php:52 msgid "Alternative Logins" msgstr "" @@ -703,7 +738,12 @@ msgstr "" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/is/files.po b/l10n/is/files.po index e53fa55a72..23bff8d67e 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 \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 db4f65b88d..2934c51ed1 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 2d436f7d7e..45381cc3b7 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 \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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aðvörun: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Aðvörun: 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index c28f1236b6..6088471926 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 \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 c814613bdc..4042e96b85 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 \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 true 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 installation guides." 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 928b148001..e920436c9c 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 \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 ownCloud community, the \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 a5586707e4..ac90b3bdd2 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 \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 admin account" msgstr "Crea un account amministratore" -#: 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,

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

    Cheers!" -msgstr "Ehilà,

    volevo solamente farti sapere che %s ha condiviso «%s» con te.
    Guarda!

    Saluti!" +"href=\"%s\">View it!

    " +msgstr "Ciao,

    volevo informarti che %s ha condiviso %s con te.
    Vedi!

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

    " +msgstr "La condivisione scadrà il %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/it/files.po b/l10n/it/files.po index 3b8b0f6539..d06b23a9a2 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 \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 eac60e403b..9648bdc7e3 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 323adf9021..b6c4e7090d 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 \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 27b7c76e85..634898776d 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "L'applicazione non può essere installata poiché contiene il tag true 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 installation guides." msgstr "Leggi attentamente le guide d'installazione." -#: 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 8248b45ef2..305ae7af50 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 \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 ownCloud community, the \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 73ad535aee..3484f6f4dd 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 \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 admin account" 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." @@ -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,

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

    Cheers!" -msgstr "こんにちは、

    %sがあなたと »%s« を共有したことをお知らせします。
    それを表示

    それでは。" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 23062b0596..1f6469f9e0 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 ba39e53621..abaa14b511 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 63c2ad22a0..1dfe940826 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "警告: PHPのFTPサポートは無効もしくはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールをお願いして下さい。" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index a52a506736..b865b55bdc 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 \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 6b0484f521..6607afad7b 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "非shippedアプリには許可されないtrueタグが含まれているためにアプリをインストール出来ません。" -#: 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 installation guides." 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] "%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 9414aa1720..1ffa3d1aac 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 ownCloud community, the \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 e6a62126cc..4aec55bfb1 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 84143c9cd2..d5402ad66a 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 \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 581f6b0300..6352ac2194 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 13336d9871..c9960a69da 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 \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 true 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 installation guides." 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 86e902ed4f..a250fb8167 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 \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 ownCloud community, the \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 5c70d01e3e..afae9b51b8 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 \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 admin account" 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 "ალტერნატიული Login–ი" @@ -697,7 +732,12 @@ msgstr "ალტერნატიული Login–ი" #, php-format msgid "" "Hey there,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index a9e38b7176..aa39ed90af 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 \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 7fde56cdb7..aabac59780 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 e5d0ff158b..8735fd9f60 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "გაფრთხილება: FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index b41813f0a6..e7d9fa72e7 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 \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 b2793d66c7..98d50447b3 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 \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 true 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 installation guides." 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/ka_GE/settings.po b/l10n/ka_GE/settings.po index fc613d4b9e..2c22f22b5b 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 \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 ownCloud community, the \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 437612ba9d..108e8db082 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/km/files.po b/l10n/km/files.po index a6b9b1775e..3985173407 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 \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 95e07fb955..2900ce6964 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 c46c22d8be..982f2e2df6 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 \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 ownCloud community, the \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 3297285e0e..bd86ef2748 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 \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 be1a9ea38c..979036dc70 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 21659f91a5..0e5b6aee50 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 \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 ownCloud community, the \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 admin account" 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." @@ -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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/ko/files.po b/l10n/ko/files.po index d3f72518cc..477d53371a 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 96c4ba6231..b994394ff1 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 54e54ee8da..f07a5ddee4 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "경고: PHP FTP 지원이 비활성화되어 있거나 설치되지 않았습니다. FTP 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 4d39e2d9ac..4d9bdc7e48 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 \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 ca05c5e133..f664342bf1 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "출하되지 않은 앱에 허용되지 않는 true 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다." -#: 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 installation guides." msgstr "설치 가이드를 다시 한 번 확인하십시오." -#: 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 8b3678ceec..af3cbd9f45 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 \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 ownCloud community, the \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 fbf66dad31..3f4b8bc0bb 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -9,13 +9,14 @@ # 남자사람 , 2012 # Shinjo Park , 2013 # Shinjo Park , 2013 +# smallsnail , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-02 14:50+0000\n" +"Last-Translator: smallsnail \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 e29ae2d875..860c4a7824 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 9bb3b4faa5..48f018b26b 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 \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 4df94a238d..e4a8591cc0 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 1addb81ba4..c20783bf32 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 \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 448dd82374..5fb0e36ab7 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 \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 true 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 installation guides." 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 6ea9fd128b..73178b91e6 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 \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 ownCloud community, the \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 851be8f7cc..1b25722aa4 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 0ee9039e60..3bbf3073f2 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 \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 admin account" msgstr "En Admin-Account 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,

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

    Cheers!" -msgstr "Hallo,

    ech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.
    Kucken!

    E schéine Bonjour!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 40727c4472..e22efd6d0a 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 \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 15dacc9dc1..4d829596ae 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 faf8429b4e..d92692e179 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 6e89845dc2..85486bdbf4 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 \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 bd8ee7af79..a7ee0bf6a6 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 \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 true 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 installation guides." 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 d09ca81058..3ef1c2e142 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 \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 ownCloud community, the \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 4a22a7c948..4f1a1ad327 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 \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 admin account" msgstr "Sukurti administratoriaus paskyrą" -#: 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,

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

    Cheers!" -msgstr "Labas,

    tik informuojame, kad %s pasidalino su Jumis »%s«.
    Peržiūrėk!

    Linkėjimai!" +"href=\"%s\">View it!

    " +msgstr "Labas,

    tik informuojame, kad %s pasidalino su Jumis »%s«.
    Peržiūrėk!

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

    " +msgstr "Bendrinimo laikas baigsis %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 829d61188a..dd86da6356 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 \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 b37c78e711..6bb0be274b 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 \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:8 +msgid "Go directly to your " +msgstr "Eiti tiesiai į Jū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: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 4347ca073d..8bb8c45ea9 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 \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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Įspėjimas: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Įspėjimas: 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 5e630911f6..3f4887ea23 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 \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 811ca96268..a2fd457438 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "Programa negali būti įdiegta, nes turi true ž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 installation guides." msgstr "Prašome pažiūrėkite dar kartą diegimo instrukcijas." -#: 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 ff719fb19f..29e03ac1c9 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 \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 ownCloud community, the \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 813a554583..b132f8f044 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 \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 admin account" msgstr "Izveidot administratora kontu" -#: 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,

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

    Cheers!" -msgstr "Sveiks,

    Tikai daru tev zināmu ka %s dalās %s ar tevi.
    Apskati to!

    Jaukiņi Labiņi!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/lv/files.po b/l10n/lv/files.po index c2bec93c45..97b5ad5942 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 \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 2f583edb1c..3e83a2065c 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 87322e13a6..01dbef9b6e 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 \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 06237b847d..8409f8c920 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 \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 1c2c3f45c5..dad77f7dc4 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 \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 true 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 installation guides." msgstr "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību." -#: 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 68f2e3c4db..cfb2581a7f 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 \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 ownCloud community, the \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 c1f6fdbed9..9cc2a9ee06 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/mk/files.po b/l10n/mk/files.po index a075f4d8f8..afd9ab3b46 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 \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 23d0a82d93..cc367d9bbf 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 fc33716519..1199ac0352 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Внимание: Не е овозможена или инсталирани FTP подршка во PHP. Не е можно монтирање на FTP дискови. Замолете го Вашиот систем администратор да го инсталира." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index b92b21c1c4..7e028cbe6f 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 \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 f87e0ecc90..8b7a7df882 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 \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 true 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 installation guides." 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 d8573ecf00..17598ec848 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 \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 ownCloud community, the \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 8e7523af26..dc3821669e 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po index 5a25ca3910..6adf28c9ee 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 \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 7638787638..3339f6b3cd 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 127decca79..79d0ac8662 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 \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 ownCloud community, the \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 admin account" msgstr "buat akaun admin" -#: 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 05de8db4dc..e938191475 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 \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 8b66830466..419dc03f39 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 cf3fca34a5..6e6ba55ae7 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index cb56fbd774..f65679fc8e 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 \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 2d0d010262..0a4794dc14 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 \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 true 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 installation guides." 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 c144cf2096..508a73832a 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 \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 ownCloud community, the \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 f2f4b06658..5c25e31a1b 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 \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 admin account" 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 "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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index a143e19659..710c84749d 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 \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 9aedac17d4..f51e1ab1da 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 a5faefbbdd..b69db8273f 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 \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 true 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 installation guides." 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 144af1c421..e8cdf5d21e 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 \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 ownCloud community, the \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 b9a4a85d03..0710f65509 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 \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 admin account" msgstr "opprett en administrator-konto" -#: 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index e5f3ebc6c8..9cc4f00ab4 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 \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 1aea5d92ad..3cc1c898bf 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 b9d4ea69c8..7dfb2d030b 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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advarsel: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Advarsel: FTP 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 8a0267ad7c..a46fbd4272 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 \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 1fa0543983..8c88dd2d0b 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 \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 true 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 installation guides." msgstr "Vennligst dobbelsjekk installasjonsguiden." -#: 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 fe0d19856a..16c200dffe 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 \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 ownCloud community, the \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 52425ae2ab..7fa6ab1c0b 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/ne/files.po b/l10n/ne/files.po index 99b4c54221..71cb0f8a59 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 \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 a30502e5bb..51452a957a 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 855bab38ba..f416609884 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 \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 ownCloud community, the \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 documentatie voor Informa msgid "Create an admin account" msgstr "Maak een beheerdersaccount 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,

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

    Cheers!" -msgstr "Hallo daar,

    %s deelde »%s« met jou.
    Bekijk!

    Veel plezier!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 68d1ce8e06..6e300827bb 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 \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 b72cecc504..cf8ef83024 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 605a5e2ce9..13bbe8de98 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 \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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Waarschuwing: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Waarschuwing: 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index ba5a867135..83e0e68db8 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 \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 918f3b09a7..2885c0a2fb 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "De app kan niet worden geïnstallerd omdat het de true 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 installation guides." msgstr "Controleer de installatiehandleiding 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 68edba7080..e80090a74f 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 \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 ownCloud community, the \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 e16776a098..bc6f9b3cc8 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 \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 dokumentasjonen f msgid "Create an admin account" msgstr "Lag ein admin-konto" -#: 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,

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

    Cheers!" -msgstr "Hei der,

    nemner berre at %s delte «%s» med deg.
    Sjå det!

    Me talast!<" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index dc82bdca1b..4204e676cf 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 112217447c..70e3dcdd71 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 729a501481..f8aa9c9233 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 8a6b4412c2..66efc5fddc 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 \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 9e73f6fe6a..e08ae3f05f 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 \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 true 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 installation guides." msgstr "Ver venleg og dobbeltsjekk installasjonsrettleiinga." -#: 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 761b9f4627..5d6356c385 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 ownCloud community, the \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 e50801d30b..7eec2a16a1 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/nqo/files.po b/l10n/nqo/files.po index 4749e89f26..c2d5bfab1c 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 \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 3c4beade2a..f920009def 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 aafbac399b..4fa8f0b826 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 \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 ownCloud community, the \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 admin account" msgstr "Crea un compte admin" -#: 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/oc/files.po b/l10n/oc/files.po index df81825fe3..4aade026f6 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 \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 eba3e13368..bd86a56e3b 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 b899bcf9b7..92b8705326 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 1f47311fec..6ac8f8fe28 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 \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 a1e7d21d33..9cb5f58d45 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 \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 true 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 installation guides." 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 bd0c36692d..96dcb1d5e0 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 \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 ownCloud community, the \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 184ac05da0..fb84b14f27 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/pa/files.po b/l10n/pa/files.po index 93b8cdfacd..bb2ae62295 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 \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 c49ed353a6..05e365c81e 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 95660c84db..9e513d0cc4 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 \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 b6c92523c5..2d8b4c38b7 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 \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 8095ea1076..54ca3537c3 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 \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 ownCloud community, the \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 d3f781b0e4..fe247fbe19 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 \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 admin account" msgstr "Utwórz konta administratora" -#: 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,

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

    Cheers!" -msgstr "Cześć,

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

    Pozdrawiam!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/pl/files.po b/l10n/pl/files.po index a88ee97ad7..7249cd9900 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 a232ad3913..ccb7d03ca2 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 d06393b1c8..7a774c7b78 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 \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 9e29c51c5a..02b7e90fae 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "Aplikacja nie może być zainstalowana ponieważ true tag nie jest true , 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 installation guides." msgstr "Sprawdź ponownie przewodniki instalacji." -#: 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 830b2045a3..057209ec7d 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 ownCloud community, the \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 281471b1b9..50ddb1288b 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 \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 admin account" msgstr "Criar uma conta de administrador" -#: 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,

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

    Cheers!" -msgstr "Olá,

    apenas para você saber que %s compartilhou %s com você.
    Veja:

    Abraços!" +"href=\"%s\">View it!

    " +msgstr "Olá,

    só gostaria que você soubesse que %s compartilhou »%s« com você.
    Veja isto!

    " +msgstr "O compartilhamento irá expirar em %s.

    " #: templates/update.php:3 #, php-format diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 1b491703bd..b888c01d4b 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 \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 43542c8f6f..58972c4590 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 \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:8 +msgid "Go directly to your " +msgstr "Ir diretamente para o seu" -#: 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: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 3b2ef25c15..52e3fe9e13 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 \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 3159799494..e8b2c2b05d 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "O aplicativo não pode ser instalado porque ele contém a marca verdadeiro 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 installation guides." msgstr "Por favor, confira os guias de instalação." -#: 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 c8608696d6..4945009eba 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 \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 \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 ownCloud community, the \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 974950a164..f0d8523639 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 , 2013 +# Bruno Martins , 2013 # bmgmatias , 2013 # Mouxy , 2013 # Gontxi , 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 \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 admin account" msgstr "Criar uma conta administrativa" -#: 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,

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

    Cheers!" -msgstr "Olá,

    Apenas para lhe informar que %s partilhou »%s« consigo.
    Consulte-o aqui!

    Cumprimentos!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 7a35987288..c666456742 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 \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 dd0f5f9b92..d3d1dddf32 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 33b1d070b5..4c13e6b315 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 \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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenção: 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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Aviso: O suporte 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 64a86f404c..8b46018dda 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 \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 937940f957..a33b04b63e 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 \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 true 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 installation guides." msgstr "Por favor verifique installation guides." -#: 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 f171929bbc..c2dd657006 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 \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 ownCloud community, the , 2013 +# Bruno Martins , 2013 # Mouxy , 2013 # Helder Meneses , 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 \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 5e6a50773f..2ec3d7e662 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 \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 admin account" msgstr "Crează un cont de administrator" -#: 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,

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

    Cheers!" -msgstr "Salutare,

    Vă aduc la cunoștință că %s a partajat %s cu tine.
    Accesează-l!

    Numai bine!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 85ce986ea0..7e5f1c083b 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 65bcf49b44..6b54b6bee8 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 3d7a2b5f8c..cd50fa140d 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 \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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenție: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Atenție: 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 916fba8a41..e8bdca36ee 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 \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 8f288b515e..65695821eb 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 \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 true 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 installation guides." msgstr "Vă rugăm să verificați ghiduri de instalare." -#: 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 6f79f4b1e0..2cf33497ee 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 ownCloud community, the \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 f5720110be..321b632ae0 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -8,6 +8,7 @@ # lord93 , 2013 # foool , 2013 # jekader , 2013 +# stushev , 2013 # eurekafag , 2013 # sk.avenger , 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 \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 admin account" 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." @@ -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,

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

    Cheers!" -msgstr "Приветствую,

    просто даю знать, что %s поделился »%s« с вами.
    Посмотреть!

    Удачи!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 114807f530..9c2d7f4428 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 b3f6c241cf..a991edf467 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 bad6e0f930..33d50b6b3f 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Внимание: Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить." -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index da4605cba1..093a2f1502 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 \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 35f3070840..4d5a6d252c 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "Приложение невозможно установить. Оно содержит параметр true который не допустим для приложений, не входящих в поставку." -#: 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 installation guides." 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] "%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 94e073154d..48ee583afd 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 ownCloud community, the \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 e0d22e9b2b..97b9ea909e 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 6a62c6c1ea..b58a44be1f 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 \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 380ffe03e8..2e754e8ef1 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 84135df646..741ba55b3e 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index ef616c5a54..8ad799d100 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 \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 befb81f4fa..e09474f770 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 \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 true 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 installation guides." 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 dede6a46ee..1bba29ef04 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 \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 ownCloud community, the \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 6970d1b3c7..caf14391ec 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 070448f726..828614242a 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 \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 796557674c..b09eb6f9b8 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 864614817b..8cea4a3223 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 \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 ownCloud community, the \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 admin account" msgstr "Vytvoriť administrátorský účet" -#: 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,

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

    Cheers!" -msgstr "Ahoj,

    chcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu:
    zde.

    Vďaka" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index fd554f6c97..b30caa9536 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 \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 7353664590..e0728ac23f 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 \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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 5f990176d0..33c04c2518 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 \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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Upozornenie: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Upozornenie: 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 488bcade2e..ba114deddf 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 \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 8d4dc2dc89..e85df073fc 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "Aplikácia nemôže byť inštalovaná pretože obsahuje pravý š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 installation guides." msgstr "Prosím skontrolujte inštalačnú príručku." -#: 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 961d19a242..b44a743834 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 \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 ownCloud community, the \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 admin account" msgstr "Ustvari skrbniški račun" -#: 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,

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

    Cheers!" -msgstr "Pozdravljen/a,

    sporočam, da je %s delil »%s« s teboj.
    Poglej vsebine!

    Lep pozdrav!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/sl/files.po b/l10n/sl/files.po index d8dee234cc..388b2dedf3 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 \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 dce60f89a0..bd85156b74 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 90cc598ec8..14fecb56ea 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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Opozorilo: paket \"smbclient\" ni nameščen. Priklapljanje pogonov CIFS/SMB ne bo mogoče." -#: lib/config.php:450 +#: lib/config.php:457 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Opozorilo: 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 866885ca0c..284bba9884 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 \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 871f862996..5719658689 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 \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 true 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 installation guides." msgstr "Preverite navodila namestitve." -#: 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 dd0437a4bd..cb7d56aab6 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 \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 ownCloud community, the \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 c2395b2d0b..194c8b6eb0 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 \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 admin account" msgstr "Krijo një llogari administruesi" -#: 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,

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

    Cheers!" -msgstr "Tungjatjeta,

    duam t'ju njoftojmë që %s ka ndarë »%s« me ju.
    Shikojeni!

    Përshëndetje!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/sq/files.po b/l10n/sq/files.po index a5b9a669e2..02ed948241 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 \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 ccb7cbaa92..1df9139a98 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 c8c772a9bd..93df581882 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index a359590d57..ba9832da5b 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 \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 e10fb8cdfd..8d7f5344cb 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 \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 true 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 installation guides." msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." -#: 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 033a815c20..04795ca25d 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 \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 ownCloud community, the \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 b0063f1a94..5981837809 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 58518b339b..a3df05d5cd 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 \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 04b3da34cc..1740a985aa 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 3ae0a9272f..fef547c2b9 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 9fed460b7d..3d3a324b2b 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 \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 60393d5c2a..7e3ecdf193 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 \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 true 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 installation guides." 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] "" 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 ee77f11fb6..4920132355 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 \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 ownCloud community, the \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 da5af6328b..4ed4e7b987 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 \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 admin account" msgstr "Napravi administrativni nalog" -#: 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 72c25ecb2e..4c630d0622 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 \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 2f15da5caa..591d38389c 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 cf5df4bfa8..438ab9f198 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 0c52072bba..f4cf46e9bc 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 \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 afa426b476..322d7d6299 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 \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 true 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 installation guides." 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 eaddf7af11..dbcfe05243 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 \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 ownCloud community, the \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 3d94872f70..4a8fddec11 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 \n" +"POT-Creation-Date: 2013-10-07 12:16-0400\n" +"PO-Revision-Date: 2013-10-07 16:17+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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 admin account" msgstr "Skapa ett administratörskonto" -#: 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,

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

    Cheers!" -msgstr "Hej där,

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

    Hörs!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 3fe12b46d5..39cd256c86 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 \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 c5524af844..cda8bdec22 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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:8 +msgid "Go directly to your " +msgstr "" -#: 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: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 af1c578869..8cb6128460 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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Varning: 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index eafab03a7d..7116eb647a 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 8865b3f1d8..ba933c67ff 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "Appen kan inte installeras eftersom att den innehåller etiketten true 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 installation guides." msgstr "Var god kontrollera installationsguiden." -#: 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 a0a193043a..8f2dedc9d5 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 ownCloud community, the \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 7b0e710548..dceb4c8691 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index b12e3fb13d..8298ab48ec 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 \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 44bd37d47a..62bebc15d4 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 da40717273..008c8256e5 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 \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 ownCloud community, the \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index dd4a7dcf14..963a52c9a7 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 \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 6c36776c8a..5bdd47956c 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 510a8d15dc..42e8617601 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 6cf36b94cd..937d88eaa1 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 \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 13095e3d78..4fd7401275 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 \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 true 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 installation guides." 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 cafed635ec..2777ae60f0 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 \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 ownCloud community, the \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 fa997fc7fc..28a4577388 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/te/files.po b/l10n/te/files.po index 6c0c87d218..882a13053f 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 \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 c592c5b12d..f6bffff306 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: -# వీవెన్ , 2013 +# వీవెన్ వీరపనేని , 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 91be85d763..050d9359e3 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index b4d02b2255..a96a83e98d 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 \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 6bea113344..843489a11c 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 \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 true 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 installation guides." 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 b9bb6933e6..be0dfd5ad0 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 \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 ownCloud community, the \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 687b168209..541877435d 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 \n" "Language-Team: LANGUAGE \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 5a5cf056be..aac13557b5 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 \n" "Language-Team: LANGUAGE \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 312f7f29bb..9c0e1c7acd 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 \n" "Language-Team: LANGUAGE \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 0ec2c07091..ccd2902034 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 \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 77c296c9a7..89ca241853 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 \n" "Language-Team: LANGUAGE \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 b379edf9e9..71a310eaf0 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 \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 4d7bff6e8b..c9d3851c6b 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 \n" "Language-Team: LANGUAGE \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 cdaf465ab3..43d1f696e2 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 \n" "Language-Team: LANGUAGE \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 true 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 installation guides." 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 0000000000..9eb4e47d7c --- /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 , 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 \n" +"Language-Team: LANGUAGE \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 true 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 installation guides." +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 af2b723680..6403c9cc46 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 \n" "Language-Team: LANGUAGE \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 ownCloud community, the \n" "Language-Team: LANGUAGE \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 d3a899a1fe..3d3aa1e694 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 \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 8700d149b0..ba1a5c7ddb 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 \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 admin account" 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 "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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index c6f5933318..877917c0b5 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 \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 84ab71bdb0..a9e0be2e60 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 3036782c91..4bdc5618a2 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "คำเตือน: การสนับสนุนการใช้งาน FTP ในภาษา PHP ยังไม่ได้ถูกเปิดใช้งานหรือถูกติดตั้ง. การชี้ FTP เพื่อแชร์ข้อมูลไม่สามารถดำเนินการได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index d4723ca5dc..c54132eb76 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 \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 0866886c95..cd3e90c37a 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 \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 true 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 installation guides." 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 1b369b9b75..ee691f79fb 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 \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 ownCloud community, the \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 286f827c66..6ba5e5d6be 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 \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 admin account" msgstr "Bir yönetici hesabı 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,

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

    Cheers!" -msgstr "Merhaba,

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

    İyi günler!" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 05c4ef5679..397ed7bd96 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 \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 9bd94afdb8..90a55700ef 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 c2e5f4c341..90d4fe2ca5 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 \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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Uyari.''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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr ". 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index f46712fc9f..431d26bfe7 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 7eadae253b..6a247032c2 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 \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 true tag " "which is not allowed for non shipped apps" msgstr "Uygulama kurulamıyor. Çünkü \"non shipped\" uygulamalar için true 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 installation guides." msgstr "Lütfen kurulum kılavuzlarını 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 8d168dd065..7f1ee5060c 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 \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 ownCloud community, the \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 2550b6d4ad..75bc1a3a1f 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 \n" "Language-Team: Uighur \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/ug/files.po b/l10n/ug/files.po index c029562d86..7f3c7d5612 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 \n" "Language-Team: Uighur \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 d2941695a8..529b8ab659 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 \n" "Language-Team: Uighur \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 ed4e95513c..aa20879784 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 \n" "Language-Team: Uighur \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index df0057cd76..103286687b 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 \n" "Language-Team: Uighur \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 27e9f375db..58fd4e0c96 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 \n" "Language-Team: Uighur \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 true 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 installation guides." 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 84bd5ebb2a..95ccc43e5f 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 \n" "Language-Team: Uighur \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 ownCloud community, the \n" "Language-Team: Uighur \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 2deda9a93d..90400bb72e 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/uk/files.po b/l10n/uk/files.po index d269f620d9..cbae1aabd0 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 \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 \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 6957679f93..24aa22b936 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: 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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 e5332acadb..a6bc125a32 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 \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 "" "Warning: \"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:451 +#: lib/config.php:457 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Попередження: Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її." -#: lib/config.php:454 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 617e1276bf..ce817bd5a2 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 \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 af53a22d88..c5b93ce899 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 \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 true 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 installation guides." 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] "" 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 912467cac9..9eb33b3246 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:12+0000\n" +"Last-Translator: I Robot \n" "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 ownCloud community, the \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 ab9aac58cf..9f41f5bb7e 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 2efc8cf747..08d2cebd46 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 \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 9bf9cd875c..627123bd44 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 7ccb9117fb..3056d8fb95 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 \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 a5cf0b44cd..bdc24e477e 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 \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 true 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 installation guides." 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 2893f05869..13f090d58c 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 \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 ownCloud community, the \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 d2f455e39e..0304dc8ded 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 \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 admin account" msgstr "Tạo một tài khoản quản trị" -#: 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/vi/files.po b/l10n/vi/files.po index df0a42f78e..74b8446e5b 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 \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 aeea77799a..acda5db65a 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 66d06e79b2..0d5260e98e 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 \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 "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Cảnh báo: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Cảnh báo: 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 "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index c0a3d67ec4..6abf104c6a 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 \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 7ad119bbb6..e17c35b1e7 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 \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 true 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 installation guides." 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 a349959561..16e90c1a64 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 \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 ownCloud community, the \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 f321e4cfc4..ea7c79d482 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 \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 admin account" 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." @@ -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,

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

    Cheers!" -msgstr "您好,

    %s 向您分享了 »%s«。
    查看" +"href=\"%s\">View it!

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

    " +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 26678e7a45..555d270359 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 \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 fd619e23d5..e61f96811e 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 \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:8 +msgid "Go directly to your " +msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 10f2bcf69e..3a5df5a89f 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "警告:PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 3b1a2c8206..b4b860b976 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 \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 6d3267bb03..f79a9210b9 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 \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 true 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 installation guides." 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] "%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 fc3228827b..d24fe6ee6d 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 \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 ownCloud community, the \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 b4aef3cc56..9c319138ec 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 \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 admin account" 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,

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

    Cheers!" +"href=\"%s\">View it!

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

    " msgstr "" #: templates/update.php:3 diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 20aca3cb37..f7e5e4000a 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 \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 f1049dc1eb..eb5e995665 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 075e0e7753..a0ce717aa2 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 31ad547f9b..ad4303aa9e 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 \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 22b7a3e57b..0b9662277b 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 \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 true 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 installation guides." 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 079b4a52dd..1f4b86c3bb 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 \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 ownCloud community, the \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 4db9d316b8..060ef0108c 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 \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 說明文件以瞭解如 msgid "Create an admin account" 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 "資料庫 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,

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

    Cheers!" -msgstr "嗨,

    通知您一聲,%s 與您分享了 %s ,
    看一下吧" +"href=\"%s\">View it!

    " +msgstr "嗨,

    %s 和你分享了 %s ,到這裡看它

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

    " +msgstr "分享將於 %s 過期

    " #: templates/update.php:3 #, php-format diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 60f8fdf7a0..f75d7a8e4c 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 15:40+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "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 2adbae532d..021e5775dc 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 \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." +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " msgstr "" -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in 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 8296c419b9..0bd4012e4a 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 \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 "" "Warning: \"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 "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "警告:PHP 並未啓用 FTP 的支援,因此無法掛載 FTP 分享,請洽您的系統管理員將其安裝並啓用。" -#: lib/config.php:453 +#: lib/config.php:460 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 57f79d287d..645968ec0b 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 \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 93ad380dec..bc8ee7c2a2 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 16:00+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "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 true tag " "which is not allowed for non shipped apps" msgstr "無法安裝應用程式,因為它包含了 true 標籤,在未發行的應用程式當中這是不允許的" -#: 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 installation guides." 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] "%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 5c24961e5c..e7728f4604 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 \n" +"POT-Creation-Date: 2013-10-06 19:07-0400\n" +"PO-Revision-Date: 2013-10-05 16:10+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "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 ownCloud community, the \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 bf2c51f0ad..7299a012da 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 f626dcdfda..6870c54994 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 installation guides." => "الرجاء التحقق من دليل التنصيب.", +"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 b6cc949eb8..c9de3d64d8 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 installation guides." => "Моля направете повторна справка с ръководството за инсталиране.", +"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 a876922470..fef5dc3cb2 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 installation guides." => "Comproveu les guies d'instal·lació.", +"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 ed31ae7952..145078c0bd 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 installation guides." => "Zkonzultujte, prosím, průvodce instalací.", +"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 6973b51878..0a52f5df77 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 installation guides." => "Gwiriwch y canllawiau gosod 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 05a43f42ed..e4734755ae 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 installation guides." => "Dobbelttjek venligst installations vejledningerne.", +"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 87e7a67b47..136cdc6476 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 installation guides." => "Bitte prüfe die Installationsanleitungen.", +"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 33f3446a69..c4f06520b5 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 installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", +"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 09be0eea22..76f0ee8457 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 installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", +"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 dcbf82d4a4..7f74dafca7 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 installation guides." => "Ελέγξτε ξανά τις οδηγίες εγκατάστασης.", +"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 d02f553eda..26d44f3989 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 installation guides." => "Please double check the installation guides.", +"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 5311dd6eb1..53d1ec1854 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 installation guides." => "Bonvolu duoble kontroli la gvidilon por instalo.", +"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 047d5d955b..289ef360d1 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 installation guides." => "Por favor, vuelva a comprobar las guías de instalación.", +"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 f637eb403e..668c46b7b1 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 installation guides." => "Por favor, comprobá nuevamente la guía de instalación.", +"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 85dfaeb52d..c188114163 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 installation guides." => "Palun tutvu veelkord paigalduse juhenditega.", +"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 413819f4f9..9758fdd1f3 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 installation guides." => "Mesedez begiratu instalazio gidak.", +"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 e9cb695bad..788b370396 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 installation guides." => "لطفاً دوباره راهنمای نصبرا بررسی کنید.", +"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 1d2bdab749..5e9a9a1a1f 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 installation guides." => "Lue tarkasti asennusohjeet.", +"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 ab3d618849..73cb724a58 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 installation guides." => "Veuillez vous référer au guide d'installation.", +"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 406272d690..ce3c7ecf48 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 installation guides." => "Volva comprobar as guías de instalación", +"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 ced6244ee9..5bbfffe9ae 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 installation guides." => "נא לעיין שוב במדריכי ההתקנה.", +"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 080faddb32..0cbcddcc6d 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 installation guides." => "Silakan periksa ulang panduan instalasi.", +"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 7512d278fb..032289fd30 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 b00789bc86..91efcca7f4 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 installation guides." => "Leggi attentamente le guide d'installazione.", +"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 b9e6a0e692..7023c829f8 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 installation guides." => "インストールガイドをよく確認してください。", +"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 8fbe34e678..0cf6ab333e 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 installation guides." => "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი.", +"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 db8d96c101..72e84bc4b0 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 installation guides." => "Prašome pažiūrėkite dar kartą diegimo instrukcijas.", +"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 4090a36edc..cf96c4c4ab 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 installation guides." => "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību.", +"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 69d4a1cb69..285dfd682a 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 5f4b6ddc82..7fdf0d0285 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 8e7d095d36..eb5e8d766f 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 installation guides." => "Vennligst dobbelsjekk installasjonsguiden.", +"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 20374f1f0f..d6dc9845d5 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 installation guides." => "Controleer de installatiehandleiding 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 7a58079970..59bc783161 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 installation guides." => "Por favor, confira os guias de instalação.", +"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 6e2bcba7b1..bc298a3f33 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 installation guides." => "Por favor verifique installation guides.", +"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 76dafcd03e..94ff7a4326 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 installation guides." => "Vă rugăm să verificați ghiduri de instalare.", +"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 501065f8b5..c52248273a 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 installation guides." => "Пожалуйста, дважды просмотрите инструкции по установке.", +"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 13487b039d..d2476c5a2b 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 installation guides." => "Prosím skontrolujte inštalačnú príručku.", +"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 5722191aed..286ec73320 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 installation guides." => "Preverite navodila namestitve.", +"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 edaa1df2b8..b36aa4ceef 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 installation guides." => "Ju lutemi kontrolloni mirë shoqëruesin e instalimit.", +"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 9441d0578f..47a8480368 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 installation guides." => "Погледајте водиче за инсталацију.", +"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 e7c3420a85..37f2e1d8c0 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 installation guides." => "Var god kontrollera installationsguiden.", +"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 0000000000..15f78e0bce --- /dev/null +++ b/lib/l10n/sw_KE.php @@ -0,0 +1,8 @@ + 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 e70e65845b..f761ccab0e 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 3344d0bb18..173d0f2856 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 b63c37c724..01f48517ae 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 installation guides." => "Lütfen kurulum kılavuzlarını 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 c1513c5bb7..906c93b567 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 installation guides." => "Будь ласка, перевірте інструкції по встановленню.", +"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 dc0045c35c..5840283110 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 2c34356ea1..e3f2c94917 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 installation guides." => "请认真检查安装指南.", +"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 210c766aa5..e56a451f8a 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 installation guides." => "請參考安裝指南。", +"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 bf3a49593c..d2fd74c44f 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 382bdf06df..af0dfd70f0 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; + $path = $this->path . '/' . $name; + $node = new OC_Connector_Sabre_File($path); + return $node->put($data); - // 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); - } - - 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 433b114855..12d7585884 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 e65ad7b8be..fa27abb381 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 0000000000..385f640667 --- /dev/null +++ b/lib/private/legacy/cache/fileglobalgc.php @@ -0,0 +1,4 @@ +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 15e807088b..04cd06b08b 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 . + * + * @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 c5b4d2ae93..6c0a8d7bab 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 0000000000..5376baf525 --- /dev/null +++ b/lib/public/authentication/iapachebackend.php @@ -0,0 +1,49 @@ +. + * + */ + +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 . + * + * @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 48c4529527..5b7802c1e3 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 378bd8dd91..9842242fd9 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 c4c61c0354..de3be7c357 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 f86559d675..fbf8b6337c 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 ae2165873e..d7e26e482c 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 924792aa62..80230e365c 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 a4876d854d..069ba4032b 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 installation guides." => "Ελέγξτε ξανά τις οδηγίες εγκατάστασης.", "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 access your Files via WebDAV" => "Χρήση αυτής της διεύθυνσης για πρόσβαση των αρχείων σας μέσω WebDAV", "Encryption" => "Κρυπτογράφηση", +"Log-in password" => "Συνθηματικό εισόδου", "Login Name" => "Όνομα Σύνδεσης", "Create" => "Δημιουργία", "Admin Recovery Password" => "Κωδικός Επαναφοράς Διαχειριστή ", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index b20a4acb29..ed23ecc077 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 a93ea81742..ca407a730b 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 d50dc87e01..3213e504d6 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 installation guides." => "Lue asennusohjeet 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 62a2f7b873..d480dd08e1 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 fc91bc5f17..c90a1a8085 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 cbf693d712..395b8889e4 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 df0247fc27..6e75f61a68 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 6f3312fa78..c4042cc6ec 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 add2f1fe00..bb53ab3079 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 0000000000..a1dade3d63 --- /dev/null +++ b/tests/lib/connector/sabre/file.php @@ -0,0 +1,38 @@ + + * 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'); + } + +}