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 @@
-
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 @@
+
-
+ >
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