';
html += '
'+t('core', 'Set expiration date')+' ';
@@ -349,13 +353,17 @@ OC.Share={
$('#linkPassText').attr('placeholder', t('core', 'Password protected'));
}
$('#expiration').show();
+ $('#emailPrivateLink #email').show();
+ $('#emailPrivateLink #emailButton').show();
},
hideLink:function() {
$('#linkText').hide('blind');
$('#showPassword').hide();
$('#linkPass').hide();
- },
- dirname:function(path) {
+ $('#emailPrivateLink #email').hide();
+ $('#emailPrivateLink #emailButton').hide();
+ },
+ dirname:function(path) {
return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, '');
},
showExpirationDate:function(date) {
@@ -547,4 +555,34 @@ $(document).ready(function() {
});
});
+
+ $('#emailPrivateLink').live('submit', function(event) {
+ event.preventDefault();
+ var link = $('#linkText').val();
+ var itemType = $('#dropdown').data('item-type');
+ var itemSource = $('#dropdown').data('item-source');
+ var file = $('tr').filterAttr('data-id', String(itemSource)).data('file');
+ var email = $('#email').val();
+ if (email != '') {
+ $('#email').attr('disabled', "disabled");
+ $('#email').val(t('core', 'Sending ...'));
+ $('#emailButton').attr('disabled', "disabled");
+
+ $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'email', toaddress: email, link: link, itemType: itemType, itemSource: itemSource, file: file},
+ function(result) {
+ $('#email').attr('disabled', "false");
+ $('#emailButton').attr('disabled', "false");
+ if (result && result.status == 'success') {
+ $('#email').css('font-weight', 'bold');
+ $('#email').animate({ fontWeight: 'normal' }, 2000, function() {
+ $(this).val('');
+ }).val(t('core','Email sent'));
+ } else {
+ OC.dialogs.alert(result.data.message, t('core', 'Error while sharing'));
+ }
+ });
+ }
+ });
+
+
});
diff --git a/core/l10n/ca.php b/core/l10n/ca.php
index 5e5605aa5b..cf7cdfb7c9 100644
--- a/core/l10n/ca.php
+++ b/core/l10n/ca.php
@@ -1,4 +1,8 @@
"L'usuari %s ha compartit un fitxer amb vós",
+"User %s shared a folder with you" => "L'usuari %s ha compartit una carpeta amb vós",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'usuari %s ha compartit el fitxer \"%s\" amb vós. Està disponible per a la descàrrega a: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'usuari %s ha compartit la carpeta \"%s\" amb vós. Està disponible per a la descàrrega a: %s",
"Category type not provided." => "No s'ha especificat el tipus de categoria.",
"No category to add?" => "No voleu afegir cap categoria?",
"This category already exists: " => "Aquesta categoria ja existeix:",
@@ -39,6 +43,8 @@
"Share with link" => "Comparteix amb enllaç",
"Password protect" => "Protegir amb contrasenya",
"Password" => "Contrasenya",
+"Email link to person" => "Enllaç per correu electrónic amb la persona",
+"Send" => "Envia",
"Set expiration date" => "Estableix la data d'expiració",
"Expiration date" => "Data d'expiració",
"Share via email:" => "Comparteix per correu electrònic",
@@ -55,6 +61,8 @@
"Password protected" => "Protegeix amb contrasenya",
"Error unsetting expiration date" => "Error en eliminar la data d'expiració",
"Error setting expiration date" => "Error en establir la data d'expiració",
+"Sending ..." => "Enviant...",
+"Email sent" => "El correu electrónic s'ha enviat",
"ownCloud password reset" => "estableix de nou la contrasenya Owncloud",
"Use the following link to reset your password: {link}" => "Useu l'enllaç següent per restablir la contrasenya: {link}",
"You will receive a link to reset your password via Email." => "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya.",
diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php
index f0977f060d..96252ea8bb 100644
--- a/core/l10n/cs_CZ.php
+++ b/core/l10n/cs_CZ.php
@@ -1,4 +1,8 @@
"Uživatel %s s vámi sdílí soubor",
+"User %s shared a folder with you" => "Uživatel %s s vámi sdílí složku",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Uživatel %s s vámi sdílí soubor \"%s\". Můžete jej stáhnout zde: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uživatel %s s vámi sdílí složku \"%s\". Můžete ji stáhnout zde: %s",
"Category type not provided." => "Nezadán typ kategorie.",
"No category to add?" => "Žádná kategorie k přidání?",
"This category already exists: " => "Tato kategorie již existuje: ",
@@ -39,6 +43,8 @@
"Share with link" => "Sdílet s odkazem",
"Password protect" => "Chránit heslem",
"Password" => "Heslo",
+"Email link to person" => "Odeslat osobě odkaz e-mailem",
+"Send" => "Odeslat",
"Set expiration date" => "Nastavit datum vypršení platnosti",
"Expiration date" => "Datum vypršení platnosti",
"Share via email:" => "Sdílet e-mailem:",
@@ -55,6 +61,8 @@
"Password protected" => "Chráněno heslem",
"Error unsetting expiration date" => "Chyba při odstraňování data vypršení platnosti",
"Error setting expiration date" => "Chyba při nastavení data vypršení platnosti",
+"Sending ..." => "Odesílám...",
+"Email sent" => "E-mail odeslán",
"ownCloud password reset" => "Obnovení hesla pro ownCloud",
"Use the following link to reset your password: {link}" => "Heslo obnovíte použitím následujícího odkazu: {link}",
"You will receive a link to reset your password via Email." => "Bude Vám e-mailem zaslán odkaz pro obnovu hesla.",
diff --git a/core/l10n/de.php b/core/l10n/de.php
index 50c17ed46a..5ad16273fb 100644
--- a/core/l10n/de.php
+++ b/core/l10n/de.php
@@ -39,6 +39,8 @@
"Share with link" => "Über einen Link freigeben",
"Password protect" => "Passwortschutz",
"Password" => "Passwort",
+"Email link to person" => "Link per E-Mail verschicken",
+"Send" => "Senden",
"Set expiration date" => "Setze ein Ablaufdatum",
"Expiration date" => "Ablaufdatum",
"Share via email:" => "Über eine E-Mail freigeben:",
@@ -55,6 +57,8 @@
"Password protected" => "Durch ein Passwort geschützt",
"Error unsetting expiration date" => "Fehler beim entfernen des Ablaufdatums",
"Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums",
+"Sending ..." => "Sende ...",
+"Email sent" => "E-Mail wurde verschickt",
"ownCloud password reset" => "ownCloud-Passwort zurücksetzen",
"Use the following link to reset your password: {link}" => "Nutze den nachfolgenden Link, um Dein Passwort zurückzusetzen: {link}",
"You will receive a link to reset your password via Email." => "Du erhältst einen Link per E-Mail, um Dein Passwort zurückzusetzen.",
diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php
index 51c0eaaf0f..e32068f6db 100644
--- a/core/l10n/de_DE.php
+++ b/core/l10n/de_DE.php
@@ -1,4 +1,8 @@
"Der Nutzer %s teilt eine Datei mit dir",
+"User %s shared a folder with you" => "Der Nutzer %s teilt einen Ordner mit dir",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Der Nutzer %s teilt die Datei \"%s\" mit dir. Du kannst diese hier herunterladen: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Der Nutzer %s teilt den Ornder \"%s\" mit dir. Du kannst diesen hier herunterladen: %s",
"Category type not provided." => "Kategorie nicht angegeben.",
"No category to add?" => "Keine Kategorie hinzuzufügen?",
"This category already exists: " => "Kategorie existiert bereits:",
@@ -39,6 +43,8 @@
"Share with link" => "Über einen Link freigeben",
"Password protect" => "Passwortschutz",
"Password" => "Passwort",
+"Email link to person" => "Link per Mail an Person schicken",
+"Send" => "Senden",
"Set expiration date" => "Setze ein Ablaufdatum",
"Expiration date" => "Ablaufdatum",
"Share via email:" => "Mittels einer E-Mail freigeben:",
@@ -55,6 +61,8 @@
"Password protected" => "Durch ein Passwort geschützt",
"Error unsetting expiration date" => "Fehler beim Entfernen des Ablaufdatums",
"Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums",
+"Sending ..." => "Sende ...",
+"Email sent" => "Email gesendet",
"ownCloud password reset" => "ownCloud-Passwort zurücksetzen",
"Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}",
"You will receive a link to reset your password via Email." => "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen.",
diff --git a/core/l10n/es.php b/core/l10n/es.php
index 58693eda8b..2a9f5682df 100644
--- a/core/l10n/es.php
+++ b/core/l10n/es.php
@@ -1,4 +1,8 @@
"El usuario %s ha compartido un archivo contigo",
+"User %s shared a folder with you" => "El usuario %s ha compartido una carpeta contigo",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido el archivo \"%s\" contigo. Puedes descargarlo aquí: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquí: %s",
"Category type not provided." => "Tipo de categoria no proporcionado.",
"No category to add?" => "¿Ninguna categoría para añadir?",
"This category already exists: " => "Esta categoría ya existe: ",
@@ -39,6 +43,8 @@
"Share with link" => "Compartir con enlace",
"Password protect" => "Protegido por contraseña",
"Password" => "Contraseña",
+"Email link to person" => "Enviar un enlace por correo electrónico a una persona",
+"Send" => "Enviar",
"Set expiration date" => "Establecer fecha de caducidad",
"Expiration date" => "Fecha de caducidad",
"Share via email:" => "compartido via e-mail:",
@@ -55,6 +61,8 @@
"Password protected" => "Protegido por contraseña",
"Error unsetting expiration date" => "Error al eliminar la fecha de caducidad",
"Error setting expiration date" => "Error estableciendo fecha de caducidad",
+"Sending ..." => "Enviando...",
+"Email sent" => "Correo electrónico enviado",
"ownCloud password reset" => "Reiniciar contraseña de ownCloud",
"Use the following link to reset your password: {link}" => "Utiliza el siguiente enlace para restablecer tu contraseña: {link}",
"You will receive a link to reset your password via Email." => "Recibirás un enlace por correo electrónico para restablecer tu contraseña",
diff --git a/core/l10n/eu.php b/core/l10n/eu.php
index 0dbf3d4169..1a21ca3470 100644
--- a/core/l10n/eu.php
+++ b/core/l10n/eu.php
@@ -1,4 +1,8 @@
"%s erabiltzaileak zurekin fitxategi bat partekatu du ",
+"User %s shared a folder with you" => "%s erabiltzaileak zurekin karpeta bat partekatu du ",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s erabiltzaileak \"%s\" fitxategia zurekin partekatu du. Hemen duzu eskuragarri: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s erabiltzaileak \"%s\" karpeta zurekin partekatu du. Hemen duzu eskuragarri: %s",
"Category type not provided." => "Kategoria mota ez da zehaztu.",
"No category to add?" => "Ez dago gehitzeko kategoriarik?",
"This category already exists: " => "Kategoria hau dagoeneko existitzen da:",
@@ -39,6 +43,8 @@
"Share with link" => "Elkarbanatu lotura batekin",
"Password protect" => "Babestu pasahitzarekin",
"Password" => "Pasahitza",
+"Email link to person" => "Postaz bidali lotura ",
+"Send" => "Bidali",
"Set expiration date" => "Ezarri muga data",
"Expiration date" => "Muga data",
"Share via email:" => "Elkarbanatu eposta bidez:",
@@ -55,6 +61,8 @@
"Password protected" => "Pasahitzarekin babestuta",
"Error unsetting expiration date" => "Errorea izan da muga data kentzean",
"Error setting expiration date" => "Errore bat egon da muga data ezartzean",
+"Sending ..." => "Bidaltzen ...",
+"Email sent" => "Eposta bidalia",
"ownCloud password reset" => "ownCloud-en pasahitza berrezarri",
"Use the following link to reset your password: {link}" => "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}",
"You will receive a link to reset your password via Email." => "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez.",
diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php
index 252b0369e5..4b4a23b8c7 100644
--- a/core/l10n/fi_FI.php
+++ b/core/l10n/fi_FI.php
@@ -30,6 +30,8 @@
"Share with link" => "Jaa linkillä",
"Password protect" => "Suojaa salasanalla",
"Password" => "Salasana",
+"Email link to person" => "Lähetä linkki sähköpostitse",
+"Send" => "Lähetä",
"Set expiration date" => "Aseta päättymispäivä",
"Expiration date" => "Päättymispäivä",
"Share via email:" => "Jaa sähköpostilla:",
@@ -45,6 +47,8 @@
"Password protected" => "Salasanasuojattu",
"Error unsetting expiration date" => "Virhe purettaessa eräpäivää",
"Error setting expiration date" => "Virhe päättymispäivää asettaessa",
+"Sending ..." => "Lähetetään...",
+"Email sent" => "Sähköposti lähetetty",
"ownCloud password reset" => "ownCloud-salasanan nollaus",
"Use the following link to reset your password: {link}" => "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}",
"You will receive a link to reset your password via Email." => "Saat sähköpostitse linkin nollataksesi salasanan.",
diff --git a/core/l10n/it.php b/core/l10n/it.php
index 7d82915ed9..e97deb9fb5 100644
--- a/core/l10n/it.php
+++ b/core/l10n/it.php
@@ -1,4 +1,8 @@
"L'utente %s ha condiviso un file con te",
+"User %s shared a folder with you" => "L'utente %s ha condiviso una cartella con te",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'utente %s ha condiviso il file \"%s\" con te. È disponibile per lo scaricamento qui: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'utente %s ha condiviso la cartella \"%s\" con te. È disponibile per lo scaricamento qui: %s",
"Category type not provided." => "Tipo di categoria non fornito.",
"No category to add?" => "Nessuna categoria da aggiungere?",
"This category already exists: " => "Questa categoria esiste già: ",
@@ -39,6 +43,8 @@
"Share with link" => "Condividi con collegamento",
"Password protect" => "Proteggi con password",
"Password" => "Password",
+"Email link to person" => "Invia collegamento via email",
+"Send" => "Invia",
"Set expiration date" => "Imposta data di scadenza",
"Expiration date" => "Data di scadenza",
"Share via email:" => "Condividi tramite email:",
@@ -55,6 +61,8 @@
"Password protected" => "Protetta da password",
"Error unsetting expiration date" => "Errore durante la rimozione della data di scadenza",
"Error setting expiration date" => "Errore durante l'impostazione della data di scadenza",
+"Sending ..." => "Invio in corso...",
+"Email sent" => "Messaggio inviato",
"ownCloud password reset" => "Ripristino password di ownCloud",
"Use the following link to reset your password: {link}" => "Usa il collegamento seguente per ripristinare la password: {link}",
"You will receive a link to reset your password via Email." => "Riceverai un collegamento per ripristinare la tua password via email",
diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php
index 72b5915701..72615d36f6 100644
--- a/core/l10n/ja_JP.php
+++ b/core/l10n/ja_JP.php
@@ -1,4 +1,8 @@
"ユーザ %s はあなたとファイルを共有しています",
+"User %s shared a folder with you" => "ユーザ %s はあなたとフォルダを共有しています",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "ユーザ %s はあなたとファイル \"%s\" を共有しています。こちらからダウンロードできます: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ユーザ %s はあなたとフォルダ \"%s\" を共有しています。こちらからダウンロードできます: %s",
"Category type not provided." => "カテゴリタイプは提供されていません。",
"No category to add?" => "追加するカテゴリはありませんか?",
"This category already exists: " => "このカテゴリはすでに存在します: ",
@@ -39,6 +43,8 @@
"Share with link" => "URLリンクで共有",
"Password protect" => "パスワード保護",
"Password" => "パスワード",
+"Email link to person" => "メールリンク",
+"Send" => "送信",
"Set expiration date" => "有効期限を設定",
"Expiration date" => "有効期限",
"Share via email:" => "メール経由で共有:",
@@ -55,6 +61,8 @@
"Password protected" => "パスワード保護",
"Error unsetting expiration date" => "有効期限の未設定エラー",
"Error setting expiration date" => "有効期限の設定でエラー発生",
+"Sending ..." => "送信中...",
+"Email sent" => "メールを送信しました",
"ownCloud password reset" => "ownCloudのパスワードをリセットします",
"Use the following link to reset your password: {link}" => "パスワードをリセットするには次のリンクをクリックして下さい: {link}",
"You will receive a link to reset your password via Email." => "メールでパスワードをリセットするリンクが届きます。",
diff --git a/core/l10n/pl.php b/core/l10n/pl.php
index 4b8b7fc844..b780e54619 100644
--- a/core/l10n/pl.php
+++ b/core/l10n/pl.php
@@ -39,6 +39,8 @@
"Share with link" => "Współdziel z link",
"Password protect" => "Zabezpieczone hasłem",
"Password" => "Hasło",
+"Email link to person" => "Email do osoby",
+"Send" => "Wyślij",
"Set expiration date" => "Ustaw datę wygaśnięcia",
"Expiration date" => "Data wygaśnięcia",
"Share via email:" => "Współdziel poprzez maila",
@@ -55,6 +57,8 @@
"Password protected" => "Zabezpieczone hasłem",
"Error unsetting expiration date" => "Błąd niszczenie daty wygaśnięcia",
"Error setting expiration date" => "Błąd podczas ustawiania daty wygaśnięcia",
+"Sending ..." => "Wysyłanie...",
+"Email sent" => "Wyślij Email",
"ownCloud password reset" => "restart hasła",
"Use the following link to reset your password: {link}" => "Proszę użyć tego odnośnika do zresetowania hasła: {link}",
"You will receive a link to reset your password via Email." => "Odnośnik służący do resetowania hasła zostanie wysłany na adres e-mail.",
diff --git a/core/l10n/ru.php b/core/l10n/ru.php
index 4e11ffd5c1..4db2a2f06f 100644
--- a/core/l10n/ru.php
+++ b/core/l10n/ru.php
@@ -1,4 +1,8 @@
"Пользователь %s поделился с вами файлом",
+"User %s shared a folder with you" => "Пользователь %s открыл вам доступ к папке",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Пользователь %s открыл вам доступ к файлу \"%s\". Он доступен для загрузки здесь: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Пользователь %s открыл вам доступ к папке \"%s\". Она доступна для загрузки здесь: %s",
"Category type not provided." => "Тип категории не предоставлен",
"No category to add?" => "Нет категорий для добавления?",
"This category already exists: " => "Эта категория уже существует: ",
@@ -39,6 +43,8 @@
"Share with link" => "Поделиться с ссылкой",
"Password protect" => "Защитить паролем",
"Password" => "Пароль",
+"Email link to person" => "Почтовая ссылка на персону",
+"Send" => "Отправить",
"Set expiration date" => "Установить срок доступа",
"Expiration date" => "Дата окончания",
"Share via email:" => "Поделится через электронную почту:",
@@ -55,6 +61,8 @@
"Password protected" => "Защищено паролем",
"Error unsetting expiration date" => "Ошибка при отмене срока доступа",
"Error setting expiration date" => "Ошибка при установке срока доступа",
+"Sending ..." => "Отправляется ...",
+"Email sent" => "Письмо отправлено",
"ownCloud password reset" => "Сброс пароля ",
"Use the following link to reset your password: {link}" => "Используйте следующую ссылку чтобы сбросить пароль: {link}",
"You will receive a link to reset your password via Email." => "На ваш адрес Email выслана ссылка для сброса пароля.",
diff --git a/core/l10n/uk.php b/core/l10n/uk.php
index 904ab03bf8..180d2a5c6b 100644
--- a/core/l10n/uk.php
+++ b/core/l10n/uk.php
@@ -1,4 +1,8 @@
"Користувач %s поділився файлом з вами",
+"User %s shared a folder with you" => "Користувач %s поділився текою з вами",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Користувач %s поділився файлом \"%s\" з вами. Він доступний для завантаження звідси: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Користувач %s поділився текою \"%s\" з вами. Він доступний для завантаження звідси: %s",
"Category type not provided." => "Не вказано тип категорії.",
"No category to add?" => "Відсутні категорії для додавання?",
"This category already exists: " => "Ця категорія вже існує: ",
@@ -39,9 +43,11 @@
"Share with link" => "Опублікувати через посилання",
"Password protect" => "Захистити паролем",
"Password" => "Пароль",
+"Email link to person" => "Ел. пошта належить Пану",
+"Send" => "Надіслати",
"Set expiration date" => "Встановити термін дії",
"Expiration date" => "Термін дії",
-"Share via email:" => "Опублікувати через електронну пошту:",
+"Share via email:" => "Опублікувати через Ел. пошту:",
"No people found" => "Жодної людини не знайдено",
"Resharing is not allowed" => "Пере-публікація не дозволяється",
"Shared in {item} with {user}" => "Опубліковано {item} для {user}",
@@ -55,9 +61,11 @@
"Password protected" => "Захищено паролем",
"Error unsetting expiration date" => "Помилка при відміні терміна дії",
"Error setting expiration date" => "Помилка при встановленні терміна дії",
+"Sending ..." => "Надсилання...",
+"Email sent" => "Ел. пошта надіслана",
"ownCloud password reset" => "скидання пароля ownCloud",
"Use the following link to reset your password: {link}" => "Використовуйте наступне посилання для скидання пароля: {link}",
-"You will receive a link to reset your password via Email." => "Ви отримаєте посилання для скидання вашого паролю на e-mail.",
+"You will receive a link to reset your password via Email." => "Ви отримаєте посилання для скидання вашого паролю на Ел. пошту.",
"Reset email send." => "Лист скидання відправлено.",
"Request failed!" => "Невдалий запит!",
"Username" => "Ім'я користувача",
diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php
new file mode 100644
index 0000000000..f55da4d3ef
--- /dev/null
+++ b/core/l10n/zh_HK.php
@@ -0,0 +1,3 @@
+ "你已登出。"
+);
diff --git a/core/templates/installation.php b/core/templates/installation.php
index f7a8a028c4..28fbf29b54 100644
--- a/core/templates/installation.php
+++ b/core/templates/installation.php
@@ -35,12 +35,14 @@
t( 'Create an admin account ' ); ?>
- t( 'Username' ); ?>
+ t( 'Username' ); ?>
+
- t( 'Password' ); ?>
+ t( 'Password' ); ?>
+
diff --git a/core/templates/login.php b/core/templates/login.php
index 5e4e2eb07e..153d1b50a3 100644
--- a/core/templates/login.php
+++ b/core/templates/login.php
@@ -17,12 +17,14 @@
- t( 'Username' ); ?>
autocomplete="on" required />
+ t( 'Username' ); ?>
+
- t( 'Password' ); ?>
/>
+ t( 'Password' ); ?>
+
t('remember'); ?>
diff --git a/core/templates/logout.php b/core/templates/logout.php
index 8cbbdd9cc8..2247ed8e70 100644
--- a/core/templates/logout.php
+++ b/core/templates/logout.php
@@ -1 +1 @@
-t( 'You are logged out.' ); ?>
\ No newline at end of file
+t( 'You are logged out.' );
diff --git a/l10n/ar/core.po b/l10n/ar/core.po
index 06b34280ef..4671747f75 100644
--- a/l10n/ar/core.po
+++ b/l10n/ar/core.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
@@ -18,6 +18,30 @@ 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:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -56,59 +80,59 @@ msgstr ""
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "تعديلات"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr ""
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr ""
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr ""
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr ""
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr ""
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr ""
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr ""
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr ""
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr ""
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr ""
@@ -138,8 +162,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr ""
@@ -151,7 +175,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr ""
@@ -188,70 +212,86 @@ msgstr ""
msgid "Password"
msgstr "كلمة السر"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr ""
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr ""
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr ""
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr ""
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "إلغاء مشاركة"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr ""
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr ""
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr ""
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr ""
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr ""
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr ""
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr ""
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr ""
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr ""
@@ -403,87 +443,87 @@ msgstr "خادم قاعدة البيانات"
msgid "Finish setup"
msgstr "انهاء التعديلات"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "الاحد"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "الأثنين"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "الثلاثاء"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "الاربعاء"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "الخميس"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "الجمعه"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "السبت"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "كانون الثاني"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "شباط"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "آذار"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "نيسان"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "أيار"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "حزيران"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "تموز"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "آب"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "أيلول"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "تشرين الاول"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "تشرين الثاني"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "كانون الاول"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "خدمات الوب تحت تصرفك"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "الخروج"
diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po
index 3d3199bfb8..a4a00601d1 100644
--- a/l10n/ar/files_external.po
+++ b/l10n/ar/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 21:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:22+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"
@@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:64
-msgid "Groups"
-msgstr ""
-
-#: templates/settings.php:69
-msgid "Users"
-msgstr ""
-
-#: templates/settings.php:77 templates/settings.php:107
-msgid "Delete"
-msgstr ""
-
#: templates/settings.php:87
+msgid "Groups"
+msgstr "مجموعات"
+
+#: templates/settings.php:95
+msgid "Users"
+msgstr "المستخدمين"
+
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
+msgid "Delete"
+msgstr "حذف"
+
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po
index 51ea5c8216..6a78dcfd05 100644
--- a/l10n/ar/user_ldap.po
+++ b/l10n/ar/user_ldap.po
@@ -7,164 +7,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-29 02:01+0200\n"
-"PO-Revision-Date: 2012-08-29 00:03+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Transfer-Encoding: 8bit\n"
"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"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr ""
diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po
index 1bb3279a2d..f40f16cbec 100644
--- a/l10n/bg_BG/core.po
+++ b/l10n/bg_BG/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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23:17+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"
@@ -21,6 +21,30 @@ msgstr ""
"Language: bg_BG\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -59,59 +83,59 @@ msgstr "Няма избрани категории за изтриване"
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Настройки"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr ""
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr ""
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr ""
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr ""
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr ""
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr ""
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr ""
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr ""
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr ""
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr ""
@@ -141,8 +165,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Грешка"
@@ -154,7 +178,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr ""
@@ -191,70 +215,86 @@ msgstr ""
msgid "Password"
msgstr "Парола"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr ""
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr ""
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr ""
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr ""
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr ""
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr ""
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr ""
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr ""
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr ""
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr ""
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr ""
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr ""
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr ""
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr ""
@@ -406,87 +446,87 @@ msgstr "Хост за базата"
msgid "Finish setup"
msgstr "Завършване на настройките"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "Неделя"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "Понеделник"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "Вторник"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "Сряда"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "Четвъртък"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "Петък"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "Събота"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Януари"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Февруари"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Март"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "Април"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Май"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Юни"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Юли"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "Август"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "Септември"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Октомври"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "Ноември"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "Декември"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr ""
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Изход"
diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po
index adf4447b42..d4483eadff 100644
--- a/l10n/bg_BG/files_external.po
+++ b/l10n/bg_BG/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 21:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
-msgstr ""
+msgstr "Групи"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr ""
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
-msgstr ""
+msgstr "Изтриване"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po
index 23f9ad3829..7d102e98bd 100644
--- a/l10n/bg_BG/user_ldap.po
+++ b/l10n/bg_BG/user_ldap.po
@@ -7,164 +7,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-29 02:01+0200\n"
-"PO-Revision-Date: 2012-08-29 00:03+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: bg_BG\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr ""
diff --git a/l10n/ca/core.po b/l10n/ca/core.po
index 010ddb24cb..0ce863841d 100644
--- a/l10n/ca/core.po
+++ b/l10n/ca/core.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-17 00:01+0100\n"
-"PO-Revision-Date: 2012-11-16 08:21+0000\n"
+"POT-Creation-Date: 2012-12-14 00:16+0100\n"
+"PO-Revision-Date: 2012-12-13 09:48+0000\n"
"Last-Translator: rogerc \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
@@ -19,6 +19,30 @@ msgstr ""
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr "L'usuari %s ha compartit un fitxer amb vós"
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr "L'usuari %s ha compartit una carpeta amb vós"
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr "L'usuari %s ha compartit el fitxer \"%s\" amb vós. Està disponible per a la descàrrega a: %s"
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr "L'usuari %s ha compartit la carpeta \"%s\" amb vós. Està disponible per a la descàrrega a: %s"
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "No s'ha especificat el tipus de categoria."
@@ -139,8 +163,8 @@ msgid "The object type is not specified."
msgstr "No s'ha especificat el tipus d'objecte."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Error"
@@ -152,7 +176,7 @@ msgstr "No s'ha especificat el nom de l'aplicació."
msgid "The required file {file} is not installed!"
msgstr "El figtxer requerit {file} no està instal·lat!"
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Error en compartir"
@@ -189,70 +213,86 @@ msgstr "Protegir amb contrasenya"
msgid "Password"
msgstr "Contrasenya"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr "Enllaç per correu electrónic amb la persona"
+
#: js/share.js:173
+msgid "Send"
+msgstr "Envia"
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Estableix la data d'expiració"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Data d'expiració"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Comparteix per correu electrònic"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "No s'ha trobat ningú"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "No es permet compartir de nou"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "Compartit en {item} amb {user}"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Deixa de compartir"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "pot editar"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "control d'accés"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "crea"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "actualitza"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "elimina"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "comparteix"
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Protegeix amb contrasenya"
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Error en eliminar la data d'expiració"
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Error en establir la data d'expiració"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr "Enviant..."
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr "El correu electrónic s'ha enviat"
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "estableix de nou la contrasenya Owncloud"
diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po
index 2b4c767cde..6d1515e0ba 100644
--- a/l10n/ca/files_external.po
+++ b/l10n/ca/files_external.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-04 02:04+0200\n"
-"PO-Revision-Date: 2012-10-03 06:09+0000\n"
+"POT-Creation-Date: 2012-12-14 00:16+0100\n"
+"PO-Revision-Date: 2012-12-13 09: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"
@@ -42,66 +42,80 @@ msgstr "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox"
msgid "Error configuring Google Drive storage"
msgstr "Error en configurar l'emmagatzemament Google Drive"
+#: lib/config.php:434
+msgid ""
+"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
+"is not possible. Please ask your system administrator to install it."
+msgstr "Avís: \"smbclient\" no està instal·lat. No es pot muntar la compartició CIFS/SMB. Demaneu a l'administrador del sistema que l'instal·li."
+
+#: lib/config.php:435
+msgid ""
+"Warning: The FTP support in PHP is not enabled or installed. Mounting"
+" of FTP shares is not possible. Please ask your system administrator to "
+"install it."
+msgstr "Avís: El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar la compartició FTP. Demaneu a l'administrador del sistema que l'instal·li."
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Emmagatzemament extern"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Punt de muntatge"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Dorsal"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Configuració"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Options"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Aplicable"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Afegeix punt de muntatge"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "Cap d'establert"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Tots els usuaris"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Grups"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Usuaris"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Elimina"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Habilita l'emmagatzemament extern d'usuari"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Permet als usuaris muntar el seu emmagatzemament extern propi"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "Certificats SSL root"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Importa certificat root"
diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po
index 78f5bcc2cc..9aea1eefd7 100644
--- a/l10n/ca/user_ldap.po
+++ b/l10n/ca/user_ldap.po
@@ -8,164 +8,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-30 02:02+0200\n"
-"PO-Revision-Date: 2012-08-29 13:55+0000\n"
-"Last-Translator: rogerc \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Transfer-Encoding: 8bit\n"
"Language: ca\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "Màquina"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Podeu ometre el protocol, excepte si requeriu SSL. Llavors comenceu amb ldaps://"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "DN Base"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat"
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "DN Usuari"
-#: templates/settings.php:10
+#: templates/settings.php:17
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 "La DN de l'usuari client amb la que s'haurà de fer, per exemple uid=agent,dc=exemple,dc=com. Per un accés anònim, deixeu la DN i la contrasenya en blanc."
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Contrasenya"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "Per un accés anònim, deixeu la DN i la contrasenya en blanc."
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "Filtre d'inici de sessió d'usuari"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "Defineix el filtre a aplicar quan s'intenta l'inici de sessió. %%uid reemplaça el nom d'usuari en l'acció d'inici de sessió."
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "useu el paràmetre de substitució %%uid, per exemple \"uid=%%uid\""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "Llista de filtres d'usuari"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "Defineix el filtre a aplicar quan es mostren usuaris"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "sense cap paràmetre de substitució, per exemple \"objectClass=persona\""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Filtre de grup"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "Defineix el filtre a aplicar quan es mostren grups."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "sense cap paràmetre de substitució, per exemple \"objectClass=grupPosix\"."
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Port"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "Arbre base d'usuaris"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Arbre base de grups"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Associació membres-grup"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Usa TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "No ho useu en connexions SSL, fallarà."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "Servidor LDAP sense distinció entre majúscules i minúscules (Windows)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "Desactiva la validació de certificat SSL."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "Si la connexió només funciona amb aquesta opció, importeu el certificat SSL del servidor LDAP en el vostre servidor ownCloud."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "No recomanat, ús només per proves."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "Camp per mostrar el nom d'usuari"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "Atribut LDAP a usar per generar el nom d'usuari ownCloud."
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "Camp per mostrar el nom del grup"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "Atribut LDAP a usar per generar el nom de grup ownCloud."
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "en bytes"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "en segons. Un canvi buidarà la memòria de cau."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "Deixeu-ho buit pel nom d'usuari (per defecte). Altrament, especifiqueu un atribut LDAP/AD."
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Ajuda"
diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po
index 2f47e270ac..e00aa1d03f 100644
--- a/l10n/cs_CZ/core.po
+++ b/l10n/cs_CZ/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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-15 10:10+0000\n"
+"POT-Creation-Date: 2012-12-14 00:16+0100\n"
+"PO-Revision-Date: 2012-12-13 09:04+0000\n"
"Last-Translator: Tomáš Chvátal \n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
@@ -21,6 +21,30 @@ msgstr ""
"Language: cs_CZ\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr "Uživatel %s s vámi sdílí soubor"
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr "Uživatel %s s vámi sdílí složku"
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr "Uživatel %s s vámi sdílí soubor \"%s\". Můžete jej stáhnout zde: %s"
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr "Uživatel %s s vámi sdílí složku \"%s\". Můžete ji stáhnout zde: %s"
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "Nezadán typ kategorie."
@@ -59,59 +83,59 @@ msgstr "Žádné kategorie nebyly vybrány ke smazání."
msgid "Error removing %s from favorites."
msgstr "Chyba při odebírání %s z oblíbených."
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Nastavení"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr "před pár vteřinami"
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr "před minutou"
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr "před {minutes} minutami"
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr "před hodinou"
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr "před {hours} hodinami"
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr "dnes"
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr "včera"
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr "před {days} dny"
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr "minulý mesíc"
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr "před {months} měsíci"
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr "před měsíci"
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr "minulý rok"
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr "před lety"
@@ -141,8 +165,8 @@ msgid "The object type is not specified."
msgstr "Není určen typ objektu."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Chyba"
@@ -154,7 +178,7 @@ msgstr "Není určen název aplikace."
msgid "The required file {file} is not installed!"
msgstr "Požadovaný soubor {file} není nainstalován."
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Chyba při sdílení"
@@ -191,70 +215,86 @@ msgstr "Chránit heslem"
msgid "Password"
msgstr "Heslo"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr "Odeslat osobě odkaz e-mailem"
+
#: js/share.js:173
+msgid "Send"
+msgstr "Odeslat"
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Nastavit datum vypršení platnosti"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Datum vypršení platnosti"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Sdílet e-mailem:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Žádní lidé nenalezeni"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "Sdílení již sdílené položky není povoleno"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "Sdíleno v {item} s {user}"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Zrušit sdílení"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "lze upravovat"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "řízení přístupu"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "vytvořit"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "aktualizovat"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "smazat"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "sdílet"
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Chráněno heslem"
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Chyba při odstraňování data vypršení platnosti"
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Chyba při nastavení data vypršení platnosti"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr "Odesílám..."
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr "E-mail odeslán"
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "Obnovení hesla pro ownCloud"
@@ -406,87 +446,87 @@ msgstr "Hostitel databáze"
msgid "Finish setup"
msgstr "Dokončit nastavení"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "Neděle"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "Pondělí"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "Úterý"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "Středa"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "Čtvrtek"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "Pátek"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "Sobota"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Leden"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Únor"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Březen"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "Duben"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Květen"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Červen"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Červenec"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "Srpen"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "Září"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Říjen"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "Listopad"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "Prosinec"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "webové služby pod Vaší kontrolou"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Odhlásit se"
diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po
index 6fc4812bb0..240ba178d3 100644
--- a/l10n/cs_CZ/files_external.po
+++ b/l10n/cs_CZ/files_external.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-03 00:00+0100\n"
-"PO-Revision-Date: 2012-11-02 10:04+0000\n"
+"POT-Creation-Date: 2012-12-14 00:16+0100\n"
+"PO-Revision-Date: 2012-12-13 08:56+0000\n"
"Last-Translator: Tomáš Chvátal \n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
@@ -45,66 +45,80 @@ 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:434
+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:435
+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í: není nainstalována, nebo povolena, podpora FTP v PHP. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje."
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Externí úložiště"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Přípojný bod"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Podpůrná vrstva"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Nastavení"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Možnosti"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Přístupný pro"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Přidat bod připojení"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "Nenastaveno"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Všichni uživatelé"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Skupiny"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Uživatelé"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Smazat"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Zapnout externí uživatelské úložiště"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Povolit uživatelům připojení jejich vlastních externích úložišť"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "Kořenové certifikáty SSL"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Importovat kořenového certifikátu"
diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po
index 808367304a..ccae79fe8d 100644
--- a/l10n/cs_CZ/user_ldap.po
+++ b/l10n/cs_CZ/user_ldap.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-06 02:02+0200\n"
-"PO-Revision-Date: 2012-09-05 13:37+0000\n"
-"Last-Translator: Tomáš Chvátal \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
@@ -20,153 +20,166 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "Počítač"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "Základní DN"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny"
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "Uživatelské DN"
-#: templates/settings.php:10
+#: templates/settings.php:17
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 "DN klentského uživatele ke kterému tvoříte vazbu, např. uid=agent,dc=example,dc=com. Pro anonymní přístup ponechte údaje DN and Heslo prázdné."
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Heslo"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "Pro anonymní přístup, ponechte údaje DN and heslo prázdné."
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "Filtr přihlášení uživatelů"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "Určuje použitý filtr, při pokusu o přihlášení. %%uid nahrazuje uživatelské jméno v činnosti přihlášení."
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "použijte zástupný vzor %%uid, např. \"uid=%%uid\""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "Filtr uživatelských seznamů"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "Určuje použitý filtr, pro získávaní uživatelů."
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "bez zástupných znaků, např. \"objectClass=person\"."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Filtr skupin"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "Určuje použitý filtr, pro získávaní skupin."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "bez zástupných znaků, např. \"objectClass=posixGroup\"."
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Port"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "Základní uživatelský strom"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Základní skupinový strom"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Asociace člena skupiny"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Použít TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "Nepoužívejte pro připojení pomocí SSL, připojení selže."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "LDAP server nerozlišující velikost znaků (Windows)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "Vypnout ověřování SSL certifikátu."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "Pokud připojení pracuje pouze s touto možností, tak importujte SSL certifikát SSL serveru do Vašeho serveru ownCloud"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "Není doporučeno, pouze pro testovací účely."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "Pole pro zobrazované jméno uživatele"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "Atribut LDAP použitý k vytvoření jména uživatele ownCloud"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "Pole pro zobrazení jména skupiny"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "Atribut LDAP použitý k vytvoření jména skupiny ownCloud"
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "v bajtech"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "ve vteřinách. Změna vyprázdní vyrovnávací paměť."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr."
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Nápověda"
diff --git a/l10n/da/core.po b/l10n/da/core.po
index bfb971646b..01fdc7642c 100644
--- a/l10n/da/core.po
+++ b/l10n/da/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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
@@ -24,6 +24,30 @@ msgstr ""
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -62,59 +86,59 @@ msgstr "Ingen kategorier valgt"
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Indstillinger"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr "sekunder siden"
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr "1 minut siden"
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr "{minutes} minutter siden"
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr "i dag"
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr "i går"
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr "{days} dage siden"
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr "sidste måned"
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr "måneder siden"
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr "sidste år"
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr "år siden"
@@ -144,8 +168,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Fejl"
@@ -157,7 +181,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Fejl under deling"
@@ -194,70 +218,86 @@ msgstr "Beskyt med adgangskode"
msgid "Password"
msgstr "Kodeord"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Vælg udløbsdato"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Udløbsdato"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Del via email:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Ingen personer fundet"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "Videredeling ikke tilladt"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "Delt i {item} med {user}"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Fjern deling"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "kan redigere"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "Adgangskontrol"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "opret"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "opdater"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "slet"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "del"
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Beskyttet med adgangskode"
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Fejl ved fjernelse af udløbsdato"
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Fejl under sætning af udløbsdato"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "Nulstil ownCloud kodeord"
@@ -409,87 +449,87 @@ msgstr "Databasehost"
msgid "Finish setup"
msgstr "Afslut opsætning"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "Søndag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "Mandag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "Tirsdag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "Onsdag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "Torsdag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "Fredag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "Lørdag"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Januar"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Februar"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Marts"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "April"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Maj"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Juni"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Juli"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "August"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "September"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Oktober"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "November"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "December"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "Webtjenester under din kontrol"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Log ud"
diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po
index 24203a1e15..804a2489d0 100644
--- a/l10n/da/files_external.po
+++ b/l10n/da/files_external.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-13 02:04+0200\n"
-"PO-Revision-Date: 2012-10-12 17:53+0000\n"
-"Last-Translator: Ole Holm Frandsen \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:22+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"
@@ -43,66 +43,80 @@ msgstr "Angiv venligst en valid Dropbox app nøgle og hemmelighed"
msgid "Error configuring Google Drive storage"
msgstr "Fejl ved konfiguration af Google Drive plads"
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Ekstern opbevaring"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Monteringspunkt"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Backend"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Opsætning"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Valgmuligheder"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Kan anvendes"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Tilføj monteringspunkt"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "Ingen sat"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Alle brugere"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Grupper"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Brugere"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Slet"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Aktiver ekstern opbevaring for brugere"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Tillad brugere at montere deres egne eksterne opbevaring"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "SSL-rodcertifikater"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Importer rodcertifikat"
diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po
index 95a083e9f1..00ec233a6e 100644
--- a/l10n/da/user_ldap.po
+++ b/l10n/da/user_ldap.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-24 02:02+0200\n"
-"PO-Revision-Date: 2012-10-23 09:31+0000\n"
-"Last-Translator: Frederik Lassen \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
@@ -21,153 +21,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "Host"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fald med ldaps://"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "Base DN"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "Bruger DN"
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Kodeord"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Port"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Brug TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "Anbefales ikke, brug kun for at teste."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Hjælp"
diff --git a/l10n/de/core.po b/l10n/de/core.po
index 5171950e1a..0913372a1d 100644
--- a/l10n/de/core.po
+++ b/l10n/de/core.po
@@ -7,6 +7,7 @@
# , 2011.
# , 2012.
# , 2011.
+# I Robot , 2012.
# I Robot , 2012.
# Jan-Christoph Borchardt , 2011.
# , 2012.
@@ -21,9 +22,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-23 00:01+0100\n"
-"PO-Revision-Date: 2012-11-22 09:33+0000\n"
-"Last-Translator: Mirodin \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 16:40+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,6 +32,30 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "Kategorie nicht angegeben."
@@ -151,8 +176,8 @@ msgid "The object type is not specified."
msgstr "Der Objekttyp ist nicht angegeben."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:527
-#: js/share.js:539
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Fehler"
@@ -164,7 +189,7 @@ msgstr "Der App-Name ist nicht angegeben."
msgid "The required file {file} is not installed!"
msgstr "Die benötigte Datei {file} ist nicht installiert."
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Fehler beim Freigeben"
@@ -196,75 +221,91 @@ msgstr "Über einen Link freigeben"
msgid "Password protect"
msgstr "Passwortschutz"
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:26
#: templates/verify.php:13
msgid "Password"
msgstr "Passwort"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr "Link per E-Mail verschicken"
+
#: js/share.js:173
+msgid "Send"
+msgstr "Senden"
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Setze ein Ablaufdatum"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Ablaufdatum"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Über eine E-Mail freigeben:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Niemand gefunden"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "Weiterverteilen ist nicht erlaubt"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "Für {user} in {item} freigegeben"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Freigabe aufheben"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "kann bearbeiten"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "Zugriffskontrolle"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "erstellen"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "aktualisieren"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "löschen"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "freigeben"
-#: js/share.js:343 js/share.js:514 js/share.js:516
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Durch ein Passwort geschützt"
-#: js/share.js:527
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Fehler beim entfernen des Ablaufdatums"
-#: js/share.js:539
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Fehler beim Setzen des Ablaufdatums"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr "Sende ..."
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr "E-Mail wurde verschickt"
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "ownCloud-Passwort zurücksetzen"
@@ -285,8 +326,8 @@ msgstr "Die E-Mail zum Zurücksetzen wurde versendet."
msgid "Request failed!"
msgstr "Die Anfrage schlug fehl!"
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:21
msgid "Username"
msgstr "Benutzername"
@@ -375,44 +416,44 @@ msgstr "Dein Datenverzeichnis und deine Datein sind vielleicht vom Internet aus
msgid "Create an admin account "
msgstr "Administrator-Konto anlegen"
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Fortgeschritten"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Datenverzeichnis"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Datenbank einrichten"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "wird verwendet"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Datenbank-Benutzer"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Datenbank-Passwort"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Datenbank-Name"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Datenbank-Tablespace"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Datenbank-Host"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Installation abschließen"
@@ -518,11 +559,11 @@ msgstr "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen."
msgid "Lost your password?"
msgstr "Passwort vergessen?"
-#: templates/login.php:27
+#: templates/login.php:29
msgid "remember"
msgstr "merken"
-#: templates/login.php:28
+#: templates/login.php:30
msgid "Log in"
msgstr "Einloggen"
diff --git a/l10n/de/files.po b/l10n/de/files.po
index c2615d7bf1..7dc41332e0 100644
--- a/l10n/de/files.po
+++ b/l10n/de/files.po
@@ -24,9 +24,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-01 00:01+0100\n"
-"PO-Revision-Date: 2012-11-30 23:02+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-12 00:12+0100\n"
+"PO-Revision-Date: 2012-12-11 09:27+0000\n"
+"Last-Translator: Mirodin \n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,7 +41,7 @@ msgstr "Datei fehlerfrei hochgeladen."
#: ajax/upload.php:21
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
-msgstr ""
+msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini"
#: ajax/upload.php:23
msgid ""
@@ -69,11 +69,11 @@ msgstr "Fehler beim Schreiben auf die Festplatte"
msgid "Files"
msgstr "Dateien"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "Nicht mehr freigeben"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Löschen"
@@ -81,39 +81,39 @@ msgstr "Löschen"
msgid "Rename"
msgstr "Umbenennen"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} existiert bereits"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "ersetzen"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "Name vorschlagen"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "abbrechen"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr "{new_name} wurde ersetzt"
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "rückgängig machen"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr "{old_name} ersetzt durch {new_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr "Freigabe von {files} aufgehoben"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "{files} gelöscht"
@@ -123,80 +123,80 @@ msgid ""
"allowed."
msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig."
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern."
-#: js/files.js:218
+#: js/files.js:209
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist."
-#: js/files.js:218
+#: js/files.js:209
msgid "Upload Error"
msgstr "Fehler beim Upload"
-#: js/files.js:235
+#: js/files.js:226
msgid "Close"
msgstr "Schließen"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:245 js/files.js:359 js/files.js:389
msgid "Pending"
msgstr "Ausstehend"
-#: js/files.js:274
+#: js/files.js:265
msgid "1 file uploading"
msgstr "Eine Datei wird hoch geladen"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:268 js/files.js:322 js/files.js:337
msgid "{count} files uploading"
msgstr "{count} Dateien werden hochgeladen"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:340 js/files.js:373
msgid "Upload cancelled."
msgstr "Upload abgebrochen."
-#: js/files.js:451
+#: js/files.js:442
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen."
-#: js/files.js:523
+#: js/files.js:512
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten."
-#: js/files.js:704
+#: js/files.js:693
msgid "{count} files scanned"
msgstr "{count} Dateien wurden gescannt"
-#: js/files.js:712
+#: js/files.js:701
msgid "error while scanning"
msgstr "Fehler beim Scannen"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:774 templates/index.php:66
msgid "Name"
msgstr "Name"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:775 templates/index.php:77
msgid "Size"
msgstr "Größe"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:776 templates/index.php:79
msgid "Modified"
msgstr "Bearbeitet"
-#: js/files.js:814
+#: js/files.js:803
msgid "1 folder"
msgstr "1 Ordner"
-#: js/files.js:816
+#: js/files.js:805
msgid "{count} folders"
msgstr "{count} Ordner"
-#: js/files.js:824
+#: js/files.js:813
msgid "1 file"
msgstr "1 Datei"
-#: js/files.js:826
+#: js/files.js:815
msgid "{count} files"
msgstr "{count} Dateien"
@@ -256,28 +256,28 @@ msgstr "Hochladen"
msgid "Cancel upload"
msgstr "Upload abbrechen"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Alles leer. Lade etwas hoch!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Herunterladen"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Upload zu groß"
-#: templates/index.php:105
+#: templates/index.php:106
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:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Dateien werden gescannt, bitte warten."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Scanne"
diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po
index 4f400dc97c..1d52174a22 100644
--- a/l10n/de/files_external.po
+++ b/l10n/de/files_external.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-13 02:04+0200\n"
-"PO-Revision-Date: 2012-10-12 22:22+0000\n"
-"Last-Translator: Mirodin \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:22+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -45,66 +45,80 @@ msgstr "Bitte trage 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:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Externer Speicher"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Mount-Point"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Backend"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Konfiguration"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Optionen"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Zutreffend"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Mount-Point hinzufügen"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "Nicht definiert"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Alle Benutzer"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Gruppen"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Benutzer"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Löschen"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Externen Speicher für Benutzer aktivieren"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "SSL-Root-Zertifikate"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Root-Zertifikate importieren"
diff --git a/l10n/de/lib.po b/l10n/de/lib.po
index b09a71c057..d572145c29 100644
--- a/l10n/de/lib.po
+++ b/l10n/de/lib.po
@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-11 00:04+0100\n"
-"PO-Revision-Date: 2012-12-10 13:50+0000\n"
+"POT-Creation-Date: 2012-12-12 00:13+0100\n"
+"PO-Revision-Date: 2012-12-11 09:31+0000\n"
"Last-Translator: Mirodin \n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po
index 71044b0d50..cea509ce04 100644
--- a/l10n/de/user_ldap.po
+++ b/l10n/de/user_ldap.po
@@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 09:13+0000\n"
-"Last-Translator: Mirodin \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -24,153 +24,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "Host"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "Basis-DN"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren"
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "Benutzer-DN"
-#: templates/settings.php:10
+#: templates/settings.php:17
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 "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lasse DN und Passwort leer."
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Passwort"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "Lasse die Felder von DN und Passwort für anonymen Zugang leer."
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "Benutzer-Login-Filter"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "Bestimmt den angewendeten Filter, wenn eine Anmeldung versucht wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch."
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "verwende %%uid Platzhalter, z. B. \"uid=%%uid\""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "Benutzer-Filter-Liste"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "Definiert den Filter für die Anfrage der Benutzer."
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "ohne Platzhalter, z.B.: \"objectClass=person\""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Gruppen-Filter"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "Definiert den Filter für die Anfrage der Gruppen."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "ohne Platzhalter, z.B.: \"objectClass=posixGroup\""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Port"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "Basis-Benutzerbaum"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Basis-Gruppenbaum"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Assoziation zwischen Gruppe und Benutzer"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Nutze TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "Verwende dies nicht für SSL-Verbindungen, es wird fehlschlagen."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "Schalte die SSL-Zertifikatsprüfung aus."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "Nicht empfohlen, nur zu Testzwecken."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "Feld für den Anzeigenamen des Benutzers"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. "
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "Feld für den Anzeigenamen der Gruppe"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. "
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "in Bytes"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "in Sekunden. Eine Änderung leert den Cache."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein."
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Hilfe"
diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po
index 5f55bdc4b1..faa7f08544 100644
--- a/l10n/de_DE/core.po
+++ b/l10n/de_DE/core.po
@@ -7,6 +7,7 @@
# , 2011.
# , 2012.
# , 2012.
+# , 2012.
# , 2011.
# I Robot , 2012.
# Jan-Christoph Borchardt , 2011.
@@ -21,9 +22,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-23 00:01+0100\n"
-"PO-Revision-Date: 2012-11-22 09:33+0000\n"
-"Last-Translator: Mirodin \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 12:15+0000\n"
+"Last-Translator: deh3nne \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,6 +32,30 @@ msgstr ""
"Language: de_DE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr "Der Nutzer %s teilt eine Datei mit dir"
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr "Der Nutzer %s teilt einen Ordner mit dir"
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr "Der Nutzer %s teilt die Datei \"%s\" mit dir. Du kannst diese hier herunterladen: %s"
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr "Der Nutzer %s teilt den Ornder \"%s\" mit dir. Du kannst diesen hier herunterladen: %s"
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "Kategorie nicht angegeben."
@@ -151,8 +176,8 @@ msgid "The object type is not specified."
msgstr "Der Objekttyp ist nicht angegeben."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:527
-#: js/share.js:539
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Fehler"
@@ -164,7 +189,7 @@ msgstr "Der App-Name ist nicht angegeben."
msgid "The required file {file} is not installed!"
msgstr "Die benötigte Datei {file} ist nicht installiert."
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Fehler bei der Freigabe"
@@ -196,75 +221,91 @@ msgstr "Über einen Link freigeben"
msgid "Password protect"
msgstr "Passwortschutz"
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:26
#: templates/verify.php:13
msgid "Password"
msgstr "Passwort"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr "Link per Mail an Person schicken"
+
#: js/share.js:173
+msgid "Send"
+msgstr "Senden"
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Setze ein Ablaufdatum"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Ablaufdatum"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Mittels einer E-Mail freigeben:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Niemand gefunden"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "Das Weiterverteilen ist nicht erlaubt"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "Freigegeben in {item} von {user}"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Freigabe aufheben"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "kann bearbeiten"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "Zugriffskontrolle"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "erstellen"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "aktualisieren"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "löschen"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "freigeben"
-#: js/share.js:343 js/share.js:514 js/share.js:516
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Durch ein Passwort geschützt"
-#: js/share.js:527
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Fehler beim Entfernen des Ablaufdatums"
-#: js/share.js:539
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Fehler beim Setzen des Ablaufdatums"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr "Sende ..."
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr "Email gesendet"
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "ownCloud-Passwort zurücksetzen"
@@ -285,8 +326,8 @@ msgstr "E-Mail zum Zurücksetzen des Passworts gesendet."
msgid "Request failed!"
msgstr "Die Anfrage schlug fehl!"
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:21
msgid "Username"
msgstr "Benutzername"
@@ -375,44 +416,44 @@ msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich über das Inte
msgid "Create an admin account "
msgstr "Administrator-Konto anlegen"
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Fortgeschritten"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Datenverzeichnis"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Datenbank einrichten"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "wird verwendet"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Datenbank-Benutzer"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Datenbank-Passwort"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Datenbank-Name"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Datenbank-Tablespace"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Datenbank-Host"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Installation abschließen"
@@ -518,11 +559,11 @@ msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern."
msgid "Lost your password?"
msgstr "Passwort vergessen?"
-#: templates/login.php:27
+#: templates/login.php:29
msgid "remember"
msgstr "merken"
-#: templates/login.php:28
+#: templates/login.php:30
msgid "Log in"
msgstr "Einloggen"
diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po
index b991af5cb1..035e733deb 100644
--- a/l10n/de_DE/files.po
+++ b/l10n/de_DE/files.po
@@ -25,9 +25,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-01 00:01+0100\n"
-"PO-Revision-Date: 2012-11-30 23:02+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-12 00:12+0100\n"
+"PO-Revision-Date: 2012-12-11 09:27+0000\n"
+"Last-Translator: Mirodin \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -42,7 +42,7 @@ msgstr "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgelade
#: ajax/upload.php:21
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
-msgstr ""
+msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini"
#: ajax/upload.php:23
msgid ""
@@ -70,11 +70,11 @@ msgstr "Fehler beim Schreiben auf die Festplatte"
msgid "Files"
msgstr "Dateien"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "Nicht mehr freigeben"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Löschen"
@@ -82,39 +82,39 @@ msgstr "Löschen"
msgid "Rename"
msgstr "Umbenennen"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} existiert bereits"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "ersetzen"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "Name vorschlagen"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "abbrechen"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr "{new_name} wurde ersetzt"
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "rückgängig machen"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr "{old_name} wurde ersetzt durch {new_name}"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr "Freigabe für {files} beendet"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "{files} gelöscht"
@@ -124,80 +124,80 @@ msgid ""
"allowed."
msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig."
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern."
-#: js/files.js:218
+#: js/files.js:209
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist."
-#: js/files.js:218
+#: js/files.js:209
msgid "Upload Error"
msgstr "Fehler beim Upload"
-#: js/files.js:235
+#: js/files.js:226
msgid "Close"
msgstr "Schließen"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:245 js/files.js:359 js/files.js:389
msgid "Pending"
msgstr "Ausstehend"
-#: js/files.js:274
+#: js/files.js:265
msgid "1 file uploading"
msgstr "1 Datei wird hochgeladen"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:268 js/files.js:322 js/files.js:337
msgid "{count} files uploading"
msgstr "{count} Dateien wurden hochgeladen"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:340 js/files.js:373
msgid "Upload cancelled."
msgstr "Upload abgebrochen."
-#: js/files.js:451
+#: js/files.js:442
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen."
-#: js/files.js:523
+#: js/files.js:512
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten."
-#: js/files.js:704
+#: js/files.js:693
msgid "{count} files scanned"
msgstr "{count} Dateien wurden gescannt"
-#: js/files.js:712
+#: js/files.js:701
msgid "error while scanning"
msgstr "Fehler beim Scannen"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:774 templates/index.php:66
msgid "Name"
msgstr "Name"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:775 templates/index.php:77
msgid "Size"
msgstr "Größe"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:776 templates/index.php:79
msgid "Modified"
msgstr "Bearbeitet"
-#: js/files.js:814
+#: js/files.js:803
msgid "1 folder"
msgstr "1 Ordner"
-#: js/files.js:816
+#: js/files.js:805
msgid "{count} folders"
msgstr "{count} Ordner"
-#: js/files.js:824
+#: js/files.js:813
msgid "1 file"
msgstr "1 Datei"
-#: js/files.js:826
+#: js/files.js:815
msgid "{count} files"
msgstr "{count} Dateien"
@@ -257,28 +257,28 @@ msgstr "Hochladen"
msgid "Cancel upload"
msgstr "Upload abbrechen"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Alles leer. Bitte laden Sie etwas hoch!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Herunterladen"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Der Upload ist zu groß"
-#: templates/index.php:105
+#: templates/index.php:106
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:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Dateien werden gescannt, bitte warten."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Scanne"
diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po
index f17be8ed3d..321c2a78ef 100644
--- a/l10n/de_DE/files_external.po
+++ b/l10n/de_DE/files_external.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-20 02:02+0200\n"
-"PO-Revision-Date: 2012-10-19 21:34+0000\n"
-"Last-Translator: Mirodin \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:22+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -45,66 +45,80 @@ 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:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Externer Speicher"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Mount-Point"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Backend"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Konfiguration"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Optionen"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Zutreffend"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Mount-Point hinzufügen"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "Nicht definiert"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Alle Benutzer"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Gruppen"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Benutzer"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Löschen"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Externen Speicher für Benutzer aktivieren"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "SSL-Root-Zertifikate"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Root-Zertifikate importieren"
diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po
index 430a429023..8e59bdac23 100644
--- a/l10n/de_DE/user_ldap.po
+++ b/l10n/de_DE/user_ldap.po
@@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-20 02:02+0200\n"
-"PO-Revision-Date: 2012-10-19 21:41+0000\n"
-"Last-Translator: Mirodin \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -24,153 +24,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "Host"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "Basis-DN"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren"
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "Benutzer-DN"
-#: templates/settings.php:10
+#: templates/settings.php:17
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 "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lassen Sie DN und Passwort leer."
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Passwort"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "Lassen Sie die Felder von DN und Passwort für anonymen Zugang leer."
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "Benutzer-Login-Filter"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "Bestimmt den angewendeten Filter, wenn eine Anmeldung versucht wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch."
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "verwenden Sie %%uid Platzhalter, z. B. \"uid=%%uid\""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "Benutzer-Filter-Liste"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "Definiert den Filter für die Anfrage der Benutzer."
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "ohne Platzhalter, z.B.: \"objectClass=person\""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Gruppen-Filter"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "Definiert den Filter für die Anfrage der Gruppen."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "ohne Platzhalter, z.B.: \"objectClass=posixGroup\""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Port"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "Basis-Benutzerbaum"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Basis-Gruppenbaum"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Assoziation zwischen Gruppe und Benutzer"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Nutze TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "Verwenden Sie dies nicht für SSL-Verbindungen, es wird fehlschlagen."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "Schalten Sie die SSL-Zertifikatsprüfung aus."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "Nicht empfohlen, nur zu Testzwecken."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "Feld für den Anzeigenamen des Benutzers"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. "
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "Feld für den Anzeigenamen der Gruppe"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. "
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "in Bytes"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "in Sekunden. Eine Änderung leert den Cache."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein."
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Hilfe"
diff --git a/l10n/el/core.po b/l10n/el/core.po
index a7902cb5ae..29a4a7ee03 100644
--- a/l10n/el/core.po
+++ b/l10n/el/core.po
@@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-21 00:01+0100\n"
-"PO-Revision-Date: 2012-11-19 23:56+0000\n"
-"Last-Translator: Efstathios Iosifidis \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -24,6 +24,30 @@ msgstr ""
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "Δεν δώθηκε τύπος κατηγορίας."
@@ -144,8 +168,8 @@ msgid "The object type is not specified."
msgstr "Δεν καθορίστηκε ο τύπος του αντικειμένου."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:527
-#: js/share.js:539
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Σφάλμα"
@@ -157,7 +181,7 @@ msgstr "Δεν καθορίστηκε το όνομα της εφαρμογής.
msgid "The required file {file} is not installed!"
msgstr "Το απαιτούμενο αρχείο {file} δεν εγκαταστάθηκε!"
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Σφάλμα κατά τον διαμοιρασμό"
@@ -194,70 +218,86 @@ msgstr "Προστασία συνθηματικού"
msgid "Password"
msgstr "Συνθηματικό"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Ορισμός ημ. λήξης"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Ημερομηνία λήξης"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Διαμοιρασμός μέσω email:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Δεν βρέθηκε άνθρωπος"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "Ξαναμοιρασμός δεν επιτρέπεται"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "Διαμοιρασμός του {item} με τον {user}"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Σταμάτημα διαμοιρασμού"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "δυνατότητα αλλαγής"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "έλεγχος πρόσβασης"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "δημιουργία"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "ενημέρωση"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "διαγραφή"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "διαμοιρασμός"
-#: js/share.js:343 js/share.js:514 js/share.js:516
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Προστασία με συνθηματικό"
-#: js/share.js:527
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης"
-#: js/share.js:539
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "Επαναφορά συνθηματικού ownCloud"
diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po
index 261b71a5b7..c1705152ae 100644
--- a/l10n/el/files_external.po
+++ b/l10n/el/files_external.po
@@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-14 02:05+0200\n"
-"PO-Revision-Date: 2012-10-13 20:42+0000\n"
-"Last-Translator: Γιάννης Ανθυμίδης \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -46,66 +46,80 @@ msgstr "Παρακαλούμε δώστε έγκυρο κλειδί Dropbox κα
msgid "Error configuring Google Drive storage"
msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive "
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Εξωτερικό Αποθηκευτικό Μέσο"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Σημείο προσάρτησης"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Σύστημα υποστήριξης"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Ρυθμίσεις"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Επιλογές"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Εφαρμόσιμο"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Προσθήκη σημείου προσάρτησης"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "Κανένα επιλεγμένο"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Όλοι οι Χρήστες"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Ομάδες"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Χρήστες"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Διαγραφή"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "Πιστοποιητικά SSL root"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Εισαγωγή Πιστοποιητικού Root"
diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po
index 4712df12fd..cea052cafa 100644
--- a/l10n/el/user_ldap.po
+++ b/l10n/el/user_ldap.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 06:46+0000\n"
-"Last-Translator: Efstathios Iosifidis \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
@@ -21,153 +21,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "Base DN"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "User DN"
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Συνθηματικό"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "User Login Filter"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "User List Filter"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Group Filter"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Θύρα"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "Base User Tree"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Base Group Tree"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Group-Member association"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Χρήση TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "Δεν προτείνεται, χρήση μόνο για δοκιμές."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "Πεδίο Ονόματος Χρήστη"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "Group Display Name Field"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "σε bytes"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Βοήθεια"
diff --git a/l10n/eo/core.po b/l10n/eo/core.po
index 517787299a..03095412f6 100644
--- a/l10n/eo/core.po
+++ b/l10n/eo/core.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-04 00:06+0100\n"
-"PO-Revision-Date: 2012-12-02 23:10+0000\n"
-"Last-Translator: Mariano \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,6 +20,30 @@ msgstr ""
"Language: eo\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "Ne proviziĝis tipon de kategorio."
@@ -140,8 +164,8 @@ msgid "The object type is not specified."
msgstr "Ne indikiĝis tipo de la objekto."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:533
-#: js/share.js:545
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Eraro"
@@ -153,7 +177,7 @@ msgstr "Ne indikiĝis nomo de la aplikaĵo."
msgid "The required file {file} is not installed!"
msgstr "La necesa dosiero {file} ne instaliĝis!"
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Eraro dum kunhavigo"
@@ -190,70 +214,86 @@ msgstr "Protekti per pasvorto"
msgid "Password"
msgstr "Pasvorto"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Agordi limdaton"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Limdato"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Kunhavigi per retpoŝto:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Ne troviĝis gento"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "Rekunhavigo ne permesatas"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "Kunhavigita en {item} kun {user}"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Malkunhavigi"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "povas redakti"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "alirkontrolo"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "krei"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "ĝisdatigi"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "forigi"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "kunhavigi"
-#: js/share.js:349 js/share.js:520 js/share.js:522
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Protektita per pasvorto"
-#: js/share.js:533
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Eraro dum malagordado de limdato"
-#: js/share.js:545
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Eraro dum agordado de limdato"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "La pasvorto de ownCloud restariĝis."
diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po
index ea8451b7f4..5d494ccfa3 100644
--- a/l10n/eo/files_external.po
+++ b/l10n/eo/files_external.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-14 02:05+0200\n"
-"PO-Revision-Date: 2012-10-13 05:00+0000\n"
-"Last-Translator: Mariano \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -42,66 +42,80 @@ msgstr "Bonvolu provizi ŝlosilon de la aplikaĵo Dropbox validan kaj sekretan."
msgid "Error configuring Google Drive storage"
msgstr "Eraro dum agordado de la memorservo Google Drive"
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Malena memorilo"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Surmetingo"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Motoro"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Agordo"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Malneproj"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Aplikebla"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Aldoni surmetingon"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "Nenio agordita"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Ĉiuj uzantoj"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Grupoj"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Uzantoj"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Forigi"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Kapabligi malenan memorilon de uzanto"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Permesi al uzantoj surmeti siajn proprajn malenajn memorilojn"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "Radikaj SSL-atestoj"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Enporti radikan ateston"
diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po
index 0f048daf6b..419be520bc 100644
--- a/l10n/eo/user_ldap.po
+++ b/l10n/eo/user_ldap.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-14 02:05+0200\n"
-"PO-Revision-Date: 2012-10-13 05:41+0000\n"
-"Last-Translator: Mariano \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,153 +19,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "Gastigo"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Vi povas neglekti la protokolon, escepte se vi bezonas SSL-on. Tiuokaze, komencu per ldaps://"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "Baz-DN"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "Uzanto-DN"
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Pasvorto"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "Por sennoman aliron, lasu DN-on kaj Pasvorton malplenaj."
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "Filtrilo de uzantensaluto"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "Ĝi difinas la filtrilon aplikotan, kiam oni provas ensaluti. %%uid anstataŭigas la uzantonomon en la ensaluta ago."
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "uzu la referencilon %%uid, ekz.: \"uid=%%uid\""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "Filtrilo de uzantolisto"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "Ĝi difinas la filtrilon aplikotan, kiam veniĝas uzantoj."
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "sen ajna referencilo, ekz.: \"objectClass=person\"."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Filtrilo de grupo"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "Ĝi difinas la filtrilon aplikotan, kiam veniĝas grupoj."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "sen ajna referencilo, ekz.: \"objectClass=posixGroup\"."
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Pordo"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "Baza uzantarbo"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Baza gruparbo"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Asocio de grupo kaj membro"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Uzi TLS-on"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "Ne uzu ĝin por SSL-konektoj, ĝi malsukcesos."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "LDAP-servilo blinda je litergrandeco (Vindozo)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "Malkapabligi validkontrolon de SSL-atestiloj."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "Se la konekto nur funkcias kun ĉi tiu malnepro, enportu la SSL-atestilo de la LDAP-servilo en via ownCloud-servilo."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "Ne rekomendata, uzu ĝin nur por testoj."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "Kampo de vidignomo de uzanto"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "La atributo de LDAP uzota por generi la ownCloud-an nomon de la uzanto."
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "Kampo de vidignomo de grupo"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "La atributo de LDAP uzota por generi la ownCloud-an nomon de la grupo."
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "duumoke"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "sekunde. Ajna ŝanĝo malplenigas la kaŝmemoron."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "Lasu malplena por uzantonomo (defaŭlto). Alie, specifu LDAP/AD-atributon."
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Helpo"
diff --git a/l10n/es/core.po b/l10n/es/core.po
index 034d5efe2b..3aebf45eff 100644
--- a/l10n/es/core.po
+++ b/l10n/es/core.po
@@ -6,6 +6,7 @@
# , 2012.
# Javier Llorente , 2012.
# , 2011-2012.
+# , 2012.
# oSiNaReF <>, 2012.
# Raul Fernandez Garcia , 2012.
# , 2012.
@@ -17,9 +18,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-18 00:01+0100\n"
-"PO-Revision-Date: 2012-11-17 08:47+0000\n"
-"Last-Translator: Raul Fernandez Garcia \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 11:51+0000\n"
+"Last-Translator: malmirk \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"
@@ -27,6 +28,30 @@ msgstr ""
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr "El usuario %s ha compartido un archivo contigo"
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr "El usuario %s ha compartido una carpeta contigo"
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr "El usuario %s ha compartido el archivo \"%s\" contigo. Puedes descargarlo aquí: %s"
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquí: %s"
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "Tipo de categoria no proporcionado."
@@ -147,8 +172,8 @@ msgid "The object type is not specified."
msgstr "El tipo de objeto no se ha especificado."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:527
-#: js/share.js:539
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Fallo"
@@ -160,7 +185,7 @@ msgstr "El nombre de la app no se ha especificado."
msgid "The required file {file} is not installed!"
msgstr "El fichero {file} requerido, no está instalado."
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Error compartiendo"
@@ -192,75 +217,91 @@ msgstr "Compartir con enlace"
msgid "Password protect"
msgstr "Protegido por contraseña"
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:26
#: templates/verify.php:13
msgid "Password"
msgstr "Contraseña"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr "Enviar un enlace por correo electrónico a una persona"
+
#: js/share.js:173
+msgid "Send"
+msgstr "Enviar"
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Establecer fecha de caducidad"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Fecha de caducidad"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "compartido via e-mail:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "No se encontró gente"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "No se permite compartir de nuevo"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "Compartido en {item} con {user}"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "No compartir"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "puede editar"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "control de acceso"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "crear"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "modificar"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "eliminar"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "compartir"
-#: js/share.js:343 js/share.js:514 js/share.js:516
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Protegido por contraseña"
-#: js/share.js:527
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Error al eliminar la fecha de caducidad"
-#: js/share.js:539
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Error estableciendo fecha de caducidad"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr "Enviando..."
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr "Correo electrónico enviado"
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "Reiniciar contraseña de ownCloud"
@@ -281,8 +322,8 @@ msgstr "Email de reconfiguración enviado."
msgid "Request failed!"
msgstr "Pedido fallado!"
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:21
msgid "Username"
msgstr "Nombre de usuario"
@@ -371,44 +412,44 @@ msgstr "Su directorio de datos y sus archivos están probablemente accesibles de
msgid "Create an admin account "
msgstr "Crea una cuenta de administrador "
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Avanzado"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Directorio de almacenamiento"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Configurar la base de datos"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "se utilizarán"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Usuario de la base de datos"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Contraseña de la base de datos"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Nombre de la base de datos"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Espacio de tablas de la base de datos"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Host de la base de datos"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Completar la instalación"
@@ -514,11 +555,11 @@ msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente."
msgid "Lost your password?"
msgstr "¿Has perdido tu contraseña?"
-#: templates/login.php:27
+#: templates/login.php:29
msgid "remember"
msgstr "recuérdame"
-#: templates/login.php:28
+#: templates/login.php:30
msgid "Log in"
msgstr "Entrar"
diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po
index bd19aeabd7..6d0ea098b1 100644
--- a/l10n/es/files_external.po
+++ b/l10n/es/files_external.po
@@ -3,6 +3,7 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Agustin Ferrario , 2012.
# Javier Llorente , 2012.
# , 2012.
# Raul Fernandez Garcia , 2012.
@@ -10,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-07 02:03+0200\n"
-"PO-Revision-Date: 2012-10-06 14:33+0000\n"
-"Last-Translator: Raul Fernandez Garcia \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:44+0000\n"
+"Last-Translator: Agustin Ferrario \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"
@@ -44,66 +45,80 @@ msgstr "Por favor , proporcione un secreto y una contraseña válida de la app D
msgid "Error configuring Google Drive storage"
msgstr "Error configurando el almacenamiento de Google Drive"
+#: lib/config.php:434
+msgid ""
+"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
+"is not possible. Please ask your system administrator to install it."
+msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale."
+
+#: lib/config.php:435
+msgid ""
+"Warning: The FTP support in PHP is not enabled or installed. Mounting"
+" of FTP shares is not possible. Please ask your system administrator to "
+"install it."
+msgstr "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale."
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Almacenamiento externo"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Punto de montaje"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Motor"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Configuración"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Opciones"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Aplicable"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Añadir punto de montaje"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "No se ha configurado"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Todos los usuarios"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Grupos"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Usuarios"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Eliiminar"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Habilitar almacenamiento de usuario externo"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Permitir a los usuarios montar su propio almacenamiento externo"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "Raíz de certificados SSL "
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Importar certificado raíz"
diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po
index fdf3b2be40..764ee2f336 100644
--- a/l10n/es/user_ldap.po
+++ b/l10n/es/user_ldap.po
@@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-04 02:01+0200\n"
-"PO-Revision-Date: 2012-09-03 14:15+0000\n"
-"Last-Translator: Raul Fernandez Garcia \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -23,153 +23,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "Servidor"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "DN base"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado"
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "DN usuario"
-#: templates/settings.php:10
+#: templates/settings.php:17
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 "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos."
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Contraseña"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "Para acceso anónimo, deje DN y contraseña vacíos."
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "Filtro de inicio de sesión de usuario"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "Define el filtro a aplicar cuando se ha realizado un login. %%uid remplazrá el nombre de usuario en el proceso de login."
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "usar %%uid como placeholder, ej: \"uid=%%uid\""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "Lista de filtros de usuario"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "Define el filtro a aplicar, cuando se obtienen usuarios."
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "Sin placeholder, ej: \"objectClass=person\"."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Filtro de grupo"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "Define el filtro a aplicar, cuando se obtienen grupos."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "Con cualquier placeholder, ej: \"objectClass=posixGroup\"."
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Puerto"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "Árbol base de usuario"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Árbol base de grupo"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Asociación Grupo-Miembro"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Usar TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "No usarlo para SSL, habrá error."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "Apagar la validación por certificado SSL."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP en su servidor ownCloud."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "No recomendado, sólo para pruebas."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "Campo de nombre de usuario a mostrar"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "El atributo LDAP a usar para generar el nombre de usuario de ownCloud."
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "Campo de nombre de grupo a mostrar"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud."
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "en bytes"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "en segundos. Un cambio vacía la cache."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD."
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Ayuda"
diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po
index 0db84f4454..f00739d659 100644
--- a/l10n/es_AR/core.po
+++ b/l10n/es_AR/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: 2012-11-22 00:01+0100\n"
-"PO-Revision-Date: 2012-11-21 09:55+0000\n"
-"Last-Translator: cjtess \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,6 +19,30 @@ msgstr ""
"Language: es_AR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "Tipo de categoría no provisto. "
@@ -139,8 +163,8 @@ msgid "The object type is not specified."
msgstr "El tipo de objeto no esta especificado. "
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:527
-#: js/share.js:539
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Error"
@@ -152,7 +176,7 @@ msgstr "El nombre de la aplicación no esta especificado."
msgid "The required file {file} is not installed!"
msgstr "¡El archivo requerido {file} no está instalado!"
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Error al compartir"
@@ -189,70 +213,86 @@ msgstr "Proteger con contraseña "
msgid "Password"
msgstr "Contraseña"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Asignar fecha de vencimiento"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Fecha de vencimiento"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "compartido a través de e-mail:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "No se encontraron usuarios"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "No se permite volver a compartir"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "Compartido en {item} con {user}"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Remover compartir"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "puede editar"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "control de acceso"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "crear"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "actualizar"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "borrar"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "compartir"
-#: js/share.js:343 js/share.js:514 js/share.js:516
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Protegido por contraseña"
-#: js/share.js:527
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Error al remover la fecha de caducidad"
-#: js/share.js:539
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Error al asignar fecha de vencimiento"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "Restablecer contraseña de ownCloud"
diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po
index 55fe0810c4..591c481a64 100644
--- a/l10n/es_AR/files_external.po
+++ b/l10n/es_AR/files_external.po
@@ -3,14 +3,15 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Agustin Ferrario , 2012.
# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-11 02:04+0200\n"
-"PO-Revision-Date: 2012-10-10 07:08+0000\n"
-"Last-Translator: cjtess \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:47+0000\n"
+"Last-Translator: Agustin Ferrario \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"
@@ -42,66 +43,80 @@ msgstr "Por favor, proporcioná un secreto y una contraseña válida para la apl
msgid "Error configuring Google Drive storage"
msgstr "Error al configurar el almacenamiento de Google Drive"
+#: lib/config.php:434
+msgid ""
+"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
+"is not possible. Please ask your system administrator to install it."
+msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale."
+
+#: lib/config.php:435
+msgid ""
+"Warning: The FTP support in PHP is not enabled or installed. Mounting"
+" of FTP shares is not possible. Please ask your system administrator to "
+"install it."
+msgstr "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale."
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Almacenamiento externo"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Punto de montaje"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Motor"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Configuración"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Opciones"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Aplicable"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Añadir punto de montaje"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "No fue configurado"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Todos los usuarios"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Grupos"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Usuarios"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Borrar"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Habilitar almacenamiento de usuario externo"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Permitir a los usuarios montar su propio almacenamiento externo"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "certificados SSL raíz"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Importar certificado raíz"
diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po
index 218284e3da..80ab2e1f1f 100644
--- a/l10n/es_AR/user_ldap.po
+++ b/l10n/es_AR/user_ldap.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-25 02:02+0200\n"
-"PO-Revision-Date: 2012-09-24 22:51+0000\n"
-"Last-Translator: cjtess \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,153 +19,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "Servidor"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, empezá con ldaps://"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "DN base"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "DN usuario"
-#: templates/settings.php:10
+#: templates/settings.php:17
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 "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, dejá DN y contraseña vacíos."
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Contraseña"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "Para acceso anónimo, dejá DN y contraseña vacíos."
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "Filtro de inicio de sesión de usuario"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "Define el filtro a aplicar cuando se ha realizado un login. %%uid remplazará el nombre de usuario en el proceso de inicio de sesión."
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "usar %%uid como plantilla, p. ej.: \"uid=%%uid\""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "Lista de filtros de usuario"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "Define el filtro a aplicar, cuando se obtienen usuarios."
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "Sin plantilla, p. ej.: \"objectClass=person\"."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Filtro de grupo"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "Define el filtro a aplicar cuando se obtienen grupos."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "Sin ninguna plantilla, p. ej.: \"objectClass=posixGroup\"."
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Puerto"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "Árbol base de usuario"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Árbol base de grupo"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Asociación Grupo-Miembro"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Usar TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "No usarlo para SSL, dará error."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "Desactivar la validación por certificado SSL."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "Si la conexión sólo funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor ownCloud."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "No recomendado, sólo para pruebas."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "Campo de nombre de usuario a mostrar"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "El atributo LDAP a usar para generar el nombre de usuario de ownCloud."
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "Campo de nombre de grupo a mostrar"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud."
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "en bytes"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "en segundos. Cambiarlo vacía la cache."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD."
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Ayuda"
diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po
index 016395b949..3d6dcf500f 100644
--- a/l10n/et_EE/core.po
+++ b/l10n/et_EE/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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23:17+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"
@@ -18,6 +18,30 @@ msgstr ""
"Language: et_EE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -56,59 +80,59 @@ msgstr "Kustutamiseks pole kategooriat valitud."
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Seaded"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr "sekundit tagasi"
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr "1 minut tagasi"
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr "{minutes} minutit tagasi"
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr "täna"
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr "eile"
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr "{days} päeva tagasi"
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr "viimasel kuul"
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr "kuu tagasi"
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr "viimasel aastal"
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr "aastat tagasi"
@@ -138,8 +162,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Viga"
@@ -151,7 +175,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Viga jagamisel"
@@ -188,70 +212,86 @@ msgstr "Parooliga kaitstud"
msgid "Password"
msgstr "Parool"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Määra aegumise kuupäev"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Aegumise kuupäev"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Jaga e-postiga:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Ühtegi inimest ei leitud"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "Edasijagamine pole lubatud"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Lõpeta jagamine"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "saab muuta"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "ligipääsukontroll"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "loo"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "uuenda"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "kustuta"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "jaga"
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Parooliga kaitstud"
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Viga aegumise kuupäeva eemaldamisel"
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Viga aegumise kuupäeva määramisel"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "ownCloud parooli taastamine"
@@ -403,87 +443,87 @@ msgstr "Andmebaasi host"
msgid "Finish setup"
msgstr "Lõpeta seadistamine"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "Pühapäev"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "Esmaspäev"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "Teisipäev"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "Kolmapäev"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "Neljapäev"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "Reede"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "Laupäev"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Jaanuar"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Veebruar"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Märts"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "Aprill"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Mai"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Juuni"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Juuli"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "August"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "September"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Oktoober"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "November"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "Detsember"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "veebiteenused sinu kontrolli all"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Logi välja"
diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po
index bb927c8282..c290d3f914 100644
--- a/l10n/et_EE/files_external.po
+++ b/l10n/et_EE/files_external.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-21 02:03+0200\n"
-"PO-Revision-Date: 2012-10-20 20:16+0000\n"
-"Last-Translator: Rivo Zängov \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:22+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"
@@ -42,66 +42,80 @@ msgstr "Palun sisesta korrektne Dropboxi rakenduse võti ja salasõna."
msgid "Error configuring Google Drive storage"
msgstr "Viga Google Drive'i salvestusruumi seadistamisel"
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Väline salvestuskoht"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Ühenduspunkt"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Admin"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Seadistamine"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Valikud"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Rakendatav"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Lisa ühenduspunkt"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "Pole määratud"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Kõik kasutajad"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Grupid"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Kasutajad"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Kustuta"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Luba kasutajatele väline salvestamine"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Luba kasutajatel ühendada külge nende enda välised salvestusseadmed"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "SSL root sertifikaadid"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Impordi root sertifikaadid"
diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po
index ccccf7cb20..c8207cb046 100644
--- a/l10n/et_EE/user_ldap.po
+++ b/l10n/et_EE/user_ldap.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-30 00:01+0100\n"
-"PO-Revision-Date: 2012-10-29 22:48+0000\n"
-"Last-Translator: Rivo Zängov \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
@@ -19,153 +19,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "Host"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Sa ei saa protokolli ära jätta, välja arvatud siis, kui sa nõuad SSL-ühendust. Sel juhul alusta eesliitega ldaps://"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "Baas DN"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Sa saad kasutajate ja gruppide baas DN-i määrata lisavalikute vahekaardilt"
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "Kasutaja DN"
-#: templates/settings.php:10
+#: templates/settings.php:17
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 "Klientkasutaja DN, kellega seotakse, nt. uid=agent,dc=näidis,dc=com. Anonüümseks ligipääsuks jäta DN ja parool tühjaks."
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Parool"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "Anonüümseks ligipääsuks jäta DN ja parool tühjaks."
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "Kasutajanime filter"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "Määrab sisselogimisel kasutatava filtri. %%uid asendab sisselogimistegevuses kasutajanime."
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "kasuta %%uid kohatäitjat, nt. \"uid=%%uid\""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "Kasutajate nimekirja filter"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "Määrab kasutajaid hankides filtri, mida rakendatakse."
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "ilma ühegi kohatäitjata, nt. \"objectClass=person\"."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Grupi filter"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "Määrab gruppe hankides filtri, mida rakendatakse."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "ilma ühegi kohatäitjata, nt. \"objectClass=posixGroup\"."
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Port"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "Baaskasutaja puu"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Baasgrupi puu"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Grupiliikme seotus"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Kasutaja TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "Ära kasuta seda SSL ühenduse jaoks, see ei toimi."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "Mittetõstutundlik LDAP server (Windows)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "Lülita SSL sertifikaadi kontrollimine välja."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma ownCloud serverisse."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "Pole soovitatav, kasuta ainult testimiseks."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "Kasutaja näidatava nime väli"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "LDAP omadus, mida kasutatakse kasutaja ownCloudi nime loomiseks."
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "Grupi näidatava nime väli"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "LDAP omadus, mida kasutatakse ownCloudi grupi nime loomiseks."
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "baitides"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "sekundites. Muudatus tühjendab vahemälu."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "Kasutajanime (vaikeväärtus) kasutamiseks jäta tühjaks. Vastasel juhul määra LDAP/AD omadus."
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Abiinfo"
diff --git a/l10n/eu/core.po b/l10n/eu/core.po
index 0aa8ffd8d1..20402a0498 100644
--- a/l10n/eu/core.po
+++ b/l10n/eu/core.po
@@ -5,13 +5,14 @@
# Translators:
# , 2012.
# Asier Urio Larrea , 2011.
+# Piarres Beobide , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-27 00:10+0100\n"
-"PO-Revision-Date: 2012-11-25 23:09+0000\n"
-"Last-Translator: asieriko \n"
+"POT-Creation-Date: 2012-12-14 00:16+0100\n"
+"PO-Revision-Date: 2012-12-13 11:46+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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,6 +20,30 @@ msgstr ""
"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr "%s erabiltzaileak zurekin fitxategi bat partekatu du "
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr "%s erabiltzaileak zurekin karpeta bat partekatu du "
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr "%s erabiltzaileak \"%s\" fitxategia zurekin partekatu du. Hemen duzu eskuragarri: %s"
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr "%s erabiltzaileak \"%s\" karpeta zurekin partekatu du. Hemen duzu eskuragarri: %s"
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "Kategoria mota ez da zehaztu."
@@ -139,8 +164,8 @@ msgid "The object type is not specified."
msgstr "Objetu mota ez dago zehaztuta."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:533
-#: js/share.js:545
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Errorea"
@@ -152,7 +177,7 @@ msgstr "App izena ez dago zehaztuta."
msgid "The required file {file} is not installed!"
msgstr "Beharrezkoa den {file} fitxategia ez dago instalatuta!"
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Errore bat egon da elkarbanatzean"
@@ -189,70 +214,86 @@ msgstr "Babestu pasahitzarekin"
msgid "Password"
msgstr "Pasahitza"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr "Postaz bidali lotura "
+
#: js/share.js:173
+msgid "Send"
+msgstr "Bidali"
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Ezarri muga data"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Muga data"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Elkarbanatu eposta bidez:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Ez da inor aurkitu"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "Berriz elkarbanatzea ez dago baimendua"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "{user}ekin {item}-n partekatuta"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Ez elkarbanatu"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "editatu dezake"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "sarrera kontrola"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "sortu"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "eguneratu"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "ezabatu"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "elkarbanatu"
-#: js/share.js:349 js/share.js:520 js/share.js:522
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Pasahitzarekin babestuta"
-#: js/share.js:533
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Errorea izan da muga data kentzean"
-#: js/share.js:545
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Errore bat egon da muga data ezartzean"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr "Bidaltzen ..."
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr "Eposta bidalia"
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "ownCloud-en pasahitza berrezarri"
diff --git a/l10n/eu/files.po b/l10n/eu/files.po
index 31ff303707..fc884c532e 100644
--- a/l10n/eu/files.po
+++ b/l10n/eu/files.po
@@ -5,13 +5,14 @@
# Translators:
# , 2012.
# Asier Urio Larrea , 2011.
+# Piarres Beobide , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-01 00:01+0100\n"
-"PO-Revision-Date: 2012-11-30 23:02+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-14 00:16+0100\n"
+"PO-Revision-Date: 2012-12-13 11:48+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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -26,7 +27,7 @@ msgstr "Ez da arazorik izan, fitxategia ongi igo da"
#: ajax/upload.php:21
msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
-msgstr ""
+msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:"
#: ajax/upload.php:23
msgid ""
@@ -54,11 +55,11 @@ msgstr "Errore bat izan da diskoan idazterakoan"
msgid "Files"
msgstr "Fitxategiak"
-#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
+#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare"
msgstr "Ez elkarbanatu"
-#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
+#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete"
msgstr "Ezabatu"
@@ -66,39 +67,39 @@ msgstr "Ezabatu"
msgid "Rename"
msgstr "Berrizendatu"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists"
msgstr "{new_name} dagoeneko existitzen da"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "replace"
msgstr "ordeztu"
-#: js/filelist.js:201
+#: js/filelist.js:199
msgid "suggest name"
msgstr "aholkatu izena"
-#: js/filelist.js:201 js/filelist.js:203
+#: js/filelist.js:199 js/filelist.js:201
msgid "cancel"
msgstr "ezeztatu"
-#: js/filelist.js:250
+#: js/filelist.js:248
msgid "replaced {new_name}"
msgstr "ordezkatua {new_name}"
-#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
+#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo"
msgstr "desegin"
-#: js/filelist.js:252
+#: js/filelist.js:250
msgid "replaced {new_name} with {old_name}"
msgstr " {new_name}-k {old_name} ordezkatu du"
-#: js/filelist.js:284
+#: js/filelist.js:282
msgid "unshared {files}"
msgstr "elkarbanaketa utzita {files}"
-#: js/filelist.js:286
+#: js/filelist.js:284
msgid "deleted {files}"
msgstr "ezabatuta {files}"
@@ -108,80 +109,80 @@ msgid ""
"allowed."
msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta."
-#: js/files.js:183
+#: js/files.js:174
msgid "generating ZIP-file, it may take some time."
msgstr "ZIP-fitxategia sortzen ari da, denbora har dezake"
-#: js/files.js:218
+#: js/files.js:209
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu"
-#: js/files.js:218
+#: js/files.js:209
msgid "Upload Error"
msgstr "Igotzean errore bat suertatu da"
-#: js/files.js:235
+#: js/files.js:226
msgid "Close"
msgstr "Itxi"
-#: js/files.js:254 js/files.js:368 js/files.js:398
+#: js/files.js:245 js/files.js:359 js/files.js:389
msgid "Pending"
msgstr "Zain"
-#: js/files.js:274
+#: js/files.js:265
msgid "1 file uploading"
msgstr "fitxategi 1 igotzen"
-#: js/files.js:277 js/files.js:331 js/files.js:346
+#: js/files.js:268 js/files.js:322 js/files.js:337
msgid "{count} files uploading"
msgstr "{count} fitxategi igotzen"
-#: js/files.js:349 js/files.js:382
+#: js/files.js:340 js/files.js:373
msgid "Upload cancelled."
msgstr "Igoera ezeztatuta"
-#: js/files.js:451
+#: js/files.js:442
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du."
-#: js/files.js:523
+#: js/files.js:512
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka"
-#: js/files.js:704
+#: js/files.js:693
msgid "{count} files scanned"
msgstr "{count} fitxategi eskaneatuta"
-#: js/files.js:712
+#: js/files.js:701
msgid "error while scanning"
msgstr "errore bat egon da eskaneatzen zen bitartean"
-#: js/files.js:785 templates/index.php:65
+#: js/files.js:774 templates/index.php:66
msgid "Name"
msgstr "Izena"
-#: js/files.js:786 templates/index.php:76
+#: js/files.js:775 templates/index.php:77
msgid "Size"
msgstr "Tamaina"
-#: js/files.js:787 templates/index.php:78
+#: js/files.js:776 templates/index.php:79
msgid "Modified"
msgstr "Aldatuta"
-#: js/files.js:814
+#: js/files.js:803
msgid "1 folder"
msgstr "karpeta bat"
-#: js/files.js:816
+#: js/files.js:805
msgid "{count} folders"
msgstr "{count} karpeta"
-#: js/files.js:824
+#: js/files.js:813
msgid "1 file"
msgstr "fitxategi bat"
-#: js/files.js:826
+#: js/files.js:815
msgid "{count} files"
msgstr "{count} fitxategi"
@@ -241,28 +242,28 @@ msgstr "Igo"
msgid "Cancel upload"
msgstr "Ezeztatu igoera"
-#: templates/index.php:57
+#: templates/index.php:58
msgid "Nothing in here. Upload something!"
msgstr "Ez dago ezer. Igo zerbait!"
-#: templates/index.php:71
+#: templates/index.php:72
msgid "Download"
msgstr "Deskargatu"
-#: templates/index.php:103
+#: templates/index.php:104
msgid "Upload too large"
msgstr "Igotakoa handiegia da"
-#: templates/index.php:105
+#: templates/index.php:106
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:110
+#: templates/index.php:111
msgid "Files are being scanned, please wait."
msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez."
-#: templates/index.php:113
+#: templates/index.php:114
msgid "Current scanning"
msgstr "Orain eskaneatzen ari da"
diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po
index 8cfcabccf3..70742445f5 100644
--- a/l10n/eu/files_external.po
+++ b/l10n/eu/files_external.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-07 02:03+0200\n"
-"PO-Revision-Date: 2012-10-06 13:01+0000\n"
-"Last-Translator: asieriko \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:22+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -42,66 +42,80 @@ msgstr "Mesedez eman baliozkoa den Dropbox app giltza eta sekretua"
msgid "Error configuring Google Drive storage"
msgstr "Errore bat egon da Google Drive biltegiratzea konfiguratzean"
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Kanpoko Biltegiratzea"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Montatze puntua"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Motorra"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Konfigurazioa"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Aukerak"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Aplikagarria"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Gehitu muntatze puntua"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "Ezarri gabe"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Erabiltzaile guztiak"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Taldeak"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Erabiltzaileak"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Ezabatu"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Gaitu erabiltzaileentzako Kanpo Biltegiratzea"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Baimendu erabiltzaileak bere kanpo biltegiratzeak muntatzen"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "SSL erro ziurtagiriak"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Inportatu Erro Ziurtagiria"
diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po
index 58ef06e8a6..56ad7508ef 100644
--- a/l10n/eu/settings.po
+++ b/l10n/eu/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: 2012-12-03 00:04+0100\n"
-"PO-Revision-Date: 2012-12-02 03:18+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-14 00:17+0100\n"
+"PO-Revision-Date: 2012-12-13 11:48+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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -70,7 +70,7 @@ msgstr "Hizkuntza aldatuta"
#: ajax/togglegroups.php:12
msgid "Admins can't remove themself from the admin group"
-msgstr ""
+msgstr "Kudeatzaileak ezin du bere burua kendu kudeatzaile taldetik"
#: ajax/togglegroups.php:28
#, php-format
diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po
index a8b8ab93ae..262c0ba4f3 100644
--- a/l10n/eu/user_ldap.po
+++ b/l10n/eu/user_ldap.po
@@ -8,164 +8,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-31 02:02+0200\n"
-"PO-Revision-Date: 2012-08-30 21:29+0000\n"
-"Last-Translator: asieriko \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: eu\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "Hostalaria"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Protokoloa ez da beharrezkoa, SSL behar baldin ez baduzu. Honela bada hasi ldaps://"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "Oinarrizko DN"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Erabiltzaile eta taldeentzako Oinarrizko DN zehaztu dezakezu Aurreratu fitxan"
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "Erabiltzaile DN"
-#: templates/settings.php:10
+#: templates/settings.php:17
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 "Lotura egingo den bezero erabiltzailearen DNa, adb. uid=agent,dc=example,dc=com. Sarrera anonimoak gaitzeko utzi DN eta Pasahitza hutsik."
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Pasahitza"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "Sarrera anonimoak gaitzeko utzi DN eta Pasahitza hutsik."
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "Erabiltzaileen saioa hasteko iragazkia"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "Saioa hastean erabiliko den iragazkia zehazten du. %%uid-ek erabiltzaile izena ordezkatzen du saioa hasterakoan."
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "erabili %%uid txantiloia, adb. \"uid=%%uid\""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "Erabiltzaile zerrendaren Iragazkia"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "Erabiltzaileak jasotzen direnean ezarriko den iragazkia zehazten du."
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "txantiloirik gabe, adb. \"objectClass=person\"."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Taldeen iragazkia"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "Taldeak jasotzen direnean ezarriko den iragazkia zehazten du."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "txantiloirik gabe, adb. \"objectClass=posixGroup\"."
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Portua"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "Oinarrizko Erabiltzaile Zuhaitza"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Oinarrizko Talde Zuhaitza"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Talde-Kide elkarketak"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Erabili TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "Ez erabili SSL konexioetan, huts egingo du."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "Maiuskulak eta minuskulak ezberditzen ez dituen LDAP zerbitzaria (windows)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "Ezgaitu SSL ziurtagirien egiaztapena."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "Konexioa aukera hau ezinbestekoa badu, inportatu LDAP zerbitzariaren SSL ziurtagiria zure ownCloud zerbitzarian."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "Ez da aholkatzen, erabili bakarrik frogak egiteko."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "Erabiltzaileen bistaratzeko izena duen eremua"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "ownCloud erabiltzailearen izena sortzeko erabiliko den LDAP atributua"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "Taldeen bistaratzeko izena duen eremua"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "ownCloud taldearen izena sortzeko erabiliko den LDAP atributua"
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "bytetan"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "segundutan. Aldaketak katxea husten du."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "Utzi hutsik erabiltzaile izenarako (lehentsia). Bestela zehaztu LDAP/AD atributua."
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Laguntza"
diff --git a/l10n/fa/core.po b/l10n/fa/core.po
index aaf10805b2..8b2531f874 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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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,6 +18,30 @@ msgstr ""
"Language: fa\n"
"Plural-Forms: nplurals=1; plural=0;\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -56,59 +80,59 @@ msgstr "هیج دسته ای برای پاک شدن انتخاب نشده است
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "تنظیمات"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr "ثانیهها پیش"
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr "1 دقیقه پیش"
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr ""
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr "امروز"
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr "دیروز"
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr ""
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr "ماه قبل"
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr "ماههای قبل"
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr "سال قبل"
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr "سالهای قبل"
@@ -138,8 +162,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "خطا"
@@ -151,7 +175,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr ""
@@ -188,70 +212,86 @@ msgstr ""
msgid "Password"
msgstr "گذرواژه"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr ""
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr ""
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr ""
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr ""
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr ""
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr ""
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr ""
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "ایجاد"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr ""
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr ""
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr ""
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr ""
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr ""
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "پسورد ابرهای شما تغییرکرد"
@@ -403,87 +443,87 @@ msgstr "هاست پایگاه داده"
msgid "Finish setup"
msgstr "اتمام نصب"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "یکشنبه"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "دوشنبه"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "سه شنبه"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "چهارشنبه"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "پنجشنبه"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "جمعه"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "شنبه"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "ژانویه"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "فبریه"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "مارس"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "آوریل"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "می"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "ژوئن"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "جولای"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "آگوست"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "سپتامبر"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "اکتبر"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "نوامبر"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "دسامبر"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "سرویس وب تحت کنترل شما"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "خروج"
diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po
index 90b7be97d2..76d4d5289b 100644
--- a/l10n/fa/files_external.po
+++ b/l10n/fa/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 21:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:64
-msgid "Groups"
-msgstr ""
-
-#: templates/settings.php:69
-msgid "Users"
-msgstr ""
-
-#: templates/settings.php:77 templates/settings.php:107
-msgid "Delete"
-msgstr ""
-
#: templates/settings.php:87
+msgid "Groups"
+msgstr "گروه ها"
+
+#: templates/settings.php:95
+msgid "Users"
+msgstr "کاربران"
+
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
+msgid "Delete"
+msgstr "حذف"
+
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po
index 4a711bf201..f7e8c607e2 100644
--- a/l10n/fa/user_ldap.po
+++ b/l10n/fa/user_ldap.po
@@ -8,164 +8,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-29 02:01+0200\n"
-"PO-Revision-Date: 2012-08-29 00:03+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fa\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "میزبانی"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr "رمز عبور"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "راهنما"
diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po
index a5d1642b01..c7c2c1c4a1 100644
--- a/l10n/fi_FI/core.po
+++ b/l10n/fi_FI/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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-15 20:59+0000\n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 13: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"
@@ -24,6 +24,30 @@ msgstr ""
"Language: fi_FI\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -62,59 +86,59 @@ msgstr "Luokkia ei valittu poistettavaksi."
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Asetukset"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr "sekuntia sitten"
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr "1 minuutti sitten"
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr "{minutes} minuuttia sitten"
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr "1 tunti sitten"
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr "{hours} tuntia sitten"
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr "tänään"
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr "eilen"
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr "{days} päivää sitten"
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr "viime kuussa"
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr "{months} kuukautta sitten"
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr "kuukautta sitten"
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr "viime vuonna"
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr "vuotta sitten"
@@ -144,8 +168,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Virhe"
@@ -157,7 +181,7 @@ msgstr "Sovelluksen nimeä ei ole määritelty."
msgid "The required file {file} is not installed!"
msgstr "Vaadittua tiedostoa {file} ei ole asennettu!"
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Virhe jaettaessa"
@@ -189,75 +213,91 @@ msgstr "Jaa linkillä"
msgid "Password protect"
msgstr "Suojaa salasanalla"
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:26
#: templates/verify.php:13
msgid "Password"
msgstr "Salasana"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr "Lähetä linkki sähköpostitse"
+
#: js/share.js:173
+msgid "Send"
+msgstr "Lähetä"
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Aseta päättymispäivä"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Päättymispäivä"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Jaa sähköpostilla:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Henkilöitä ei löytynyt"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "Jakaminen uudelleen ei ole salittu"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Peru jakaminen"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "voi muokata"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "Pääsyn hallinta"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "luo"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "päivitä"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "poista"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "jaa"
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Salasanasuojattu"
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Virhe purettaessa eräpäivää"
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Virhe päättymispäivää asettaessa"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr "Lähetetään..."
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr "Sähköposti lähetetty"
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "ownCloud-salasanan nollaus"
@@ -278,8 +318,8 @@ msgstr ""
msgid "Request failed!"
msgstr "Pyyntö epäonnistui!"
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:21
msgid "Username"
msgstr "Käyttäjätunnus"
@@ -368,128 +408,128 @@ msgstr "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htac
msgid "Create an admin account "
msgstr "Luo ylläpitäjän tunnus "
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Lisäasetukset"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Datakansio"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Muokkaa tietokantaa"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "käytetään"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Tietokannan käyttäjä"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Tietokannan salasana"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Tietokannan nimi"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Tietokannan taulukkotila"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Tietokantapalvelin"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Viimeistele asennus"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "Sunnuntai"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "Maanantai"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "Tiistai"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "Keskiviikko"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "Torstai"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "Perjantai"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "Lauantai"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Tammikuu"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Helmikuu"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Maaliskuu"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "Huhtikuu"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Toukokuu"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Kesäkuu"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Heinäkuu"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "Elokuu"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "Syyskuu"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Lokakuu"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "Marraskuu"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "Joulukuu"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "verkkopalvelut hallinnassasi"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Kirjaudu ulos"
@@ -511,11 +551,11 @@ msgstr "Vaihda salasanasi suojataksesi tilisi uudelleen."
msgid "Lost your password?"
msgstr "Unohditko salasanasi?"
-#: templates/login.php:27
+#: templates/login.php:29
msgid "remember"
msgstr "muista"
-#: templates/login.php:28
+#: templates/login.php:30
msgid "Log in"
msgstr "Kirjaudu sisään"
diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po
index 54f2df01a0..c40ca82338 100644
--- a/l10n/fi_FI/files_external.po
+++ b/l10n/fi_FI/files_external.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-12 02:03+0200\n"
-"PO-Revision-Date: 2012-10-11 17:55+0000\n"
-"Last-Translator: variaatiox \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:22+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"
@@ -44,66 +44,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr "Virhe Google Drive levyn asetuksia tehtäessä"
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Erillinen tallennusväline"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Liitospiste"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Taustaosa"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Asetukset"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Valinnat"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Sovellettavissa"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Lisää liitospiste"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "Ei asetettu"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Kaikki käyttäjät"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Ryhmät"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Käyttäjät"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Poista"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Ota käyttöön ulkopuoliset tallennuspaikat"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Salli käyttäjien liittää omia erillisiä tallennusvälineitä"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "SSL-juurivarmenteet"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Tuo juurivarmenne"
diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po
index 085ca3dd65..6f821f095c 100644
--- a/l10n/fi_FI/user_ldap.po
+++ b/l10n/fi_FI/user_ldap.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-07 02:04+0200\n"
-"PO-Revision-Date: 2012-09-06 10:56+0000\n"
-"Last-Translator: Jiri Grönroos \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
@@ -21,153 +21,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "Isäntä"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Voit jättää protokollan määrittämättä, paitsi kun vaadit SSL:ää. Aloita silloin ldaps://"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "Oletus DN"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset'-välilehdeltä "
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "Käyttäjän DN"
-#: templates/settings.php:10
+#: templates/settings.php:17
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 "Asiakasohjelman DN, jolla yhdistäminen tehdään, ts. uid=agent,dc=example,dc=com. Mahdollistaaksesi anonyymin yhteyden, jätä DN ja salasana tyhjäksi."
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Salasana"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "Jos haluat mahdollistaa anonyymin pääsyn, jätä DN ja Salasana tyhjäksi "
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "Login suodatus"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "Määrittelee käytettävän suodattimen, kun sisäänkirjautumista yritetään. %%uid korvaa sisäänkirjautumisessa käyttäjätunnuksen."
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "käytä %%uid paikanvaraajaa, ts. \"uid=%%uid\""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "Käyttäjien suodatus"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "Määrittelee käytettävän suodattimen, kun käyttäjiä haetaan. "
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "ilman paikanvaraustermiä, ts. \"objectClass=person\"."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Ryhmien suodatus"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "Määrittelee käytettävän suodattimen, kun ryhmiä haetaan. "
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "ilman paikanvaraustermiä, ts. \"objectClass=posixGroup\"."
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Portti"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "Oletuskäyttäjäpuu"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Ryhmien juuri"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Ryhmän ja jäsenen assosiaatio (yhteys)"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Käytä TLS:ää"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "Älä käytä SSL-yhteyttä varten, se epäonnistuu. "
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "Kirjainkoosta piittamaton LDAP-palvelin (Windows)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "Poista käytöstä SSL-varmenteen vahvistus"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "Jos yhteys toimii vain tällä valinnalla, siirrä LDAP-palvelimen SSL-varmenne ownCloud-palvelimellesi."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "Ei suositella, käytä vain testausta varten."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "Käyttäjän näytettävän nimen kenttä"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "LDAP-attribuutti, jota käytetään käyttäjän ownCloud-käyttäjänimenä "
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "Ryhmän \"näytettävä nimi\"-kenttä"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "LDAP-attribuutti, jota käytetään luomaan ryhmän ownCloud-nimi"
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "tavuissa"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "sekunneissa. Muutos tyhjentää välimuistin."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD-atribuutti."
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Ohje"
diff --git a/l10n/fr/core.po b/l10n/fr/core.po
index 28f66a6fa2..3630d49e78 100644
--- a/l10n/fr/core.po
+++ b/l10n/fr/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: 2012-11-26 00:01+0100\n"
-"PO-Revision-Date: 2012-11-25 00:59+0000\n"
-"Last-Translator: Romain DEP. \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
@@ -25,6 +25,30 @@ msgstr ""
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "Type de catégorie non spécifié."
@@ -145,8 +169,8 @@ msgid "The object type is not specified."
msgstr "Le type d'objet n'est pas spécifié."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:527
-#: js/share.js:539
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Erreur"
@@ -158,7 +182,7 @@ msgstr "Le nom de l'application n'est pas spécifié."
msgid "The required file {file} is not installed!"
msgstr "Le fichier requis {file} n'est pas installé !"
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Erreur lors de la mise en partage"
@@ -195,70 +219,86 @@ msgstr "Protéger par un mot de passe"
msgid "Password"
msgstr "Mot de passe"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Spécifier la date d'expiration"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Date d'expiration"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Partager via e-mail :"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Aucun utilisateur trouvé"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "Le repartage n'est pas autorisé"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "Partagé dans {item} avec {user}"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Ne plus partager"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "édition autorisée"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "contrôle des accès"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "créer"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "mettre à jour"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "supprimer"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "partager"
-#: js/share.js:343 js/share.js:514 js/share.js:516
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Protégé par un mot de passe"
-#: js/share.js:527
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Un erreur est survenue pendant la suppression de la date d'expiration"
-#: js/share.js:539
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Erreur lors de la spécification de la date d'expiration"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "Réinitialisation de votre mot de passe Owncloud"
diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po
index f7d30e969a..5484aa3b4c 100644
--- a/l10n/fr/files_external.po
+++ b/l10n/fr/files_external.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-04 02:04+0200\n"
-"PO-Revision-Date: 2012-10-03 19:39+0000\n"
-"Last-Translator: Romain DEP. \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:22+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"
@@ -42,66 +42,80 @@ msgstr "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de pas
msgid "Error configuring Google Drive storage"
msgstr "Erreur lors de la configuration du support de stockage Google Drive"
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Stockage externe"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Point de montage"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Infrastructure"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Configuration"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Options"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Disponible"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Ajouter un point de montage"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "Aucun spécifié"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Tous les utilisateurs"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Groupes"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Utilisateurs"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Supprimer"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Activer le stockage externe pour les utilisateurs"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Autoriser les utilisateurs à monter leur propre stockage externe"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "Certificats racine SSL"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Importer un certificat racine"
diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po
index 7fca3da0d5..fee57ce5e3 100644
--- a/l10n/fr/user_ldap.po
+++ b/l10n/fr/user_ldap.po
@@ -12,164 +12,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-30 02:02+0200\n"
-"PO-Revision-Date: 2012-08-29 08:51+0000\n"
-"Last-Translator: Windes \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Transfer-Encoding: 8bit\n"
"Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1)\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "Hôte"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans ce cas préfixez avec ldaps://"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "DN Racine"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Vous pouvez détailler les DN Racines de vos utilisateurs et groupes dans l'onglet Avancé"
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "DN Utilisateur (Autorisé à consulter l'annuaire)"
-#: templates/settings.php:10
+#: templates/settings.php:17
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 "Le DN de l'utilisateur client avec lequel la liaison doit se faire, par exemple uid=agent,dc=example,dc=com. Pour l'accès anonyme, laisser le DN et le mot de passe vides."
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Mot de passe"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "Pour un accès anonyme, laisser le DN Utilisateur et le mot de passe vides."
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "Modèle d'authentification utilisateurs"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "Définit le motif à appliquer, lors d'une tentative de connexion. %%uid est remplacé par le nom d'utilisateur lors de la connexion."
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "veuillez utiliser le champ %%uid , ex.: \"uid=%%uid\""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "Filtre d'utilisateurs"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "Définit le filtre à appliquer lors de la récupération des utilisateurs."
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "sans élément de substitution, par exemple \"objectClass=person\"."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Filtre de groupes"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "Définit le filtre à appliquer lors de la récupération des groupes."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "sans élément de substitution, par exemple \"objectClass=posixGroup\"."
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Port"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "DN racine de l'arbre utilisateurs"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "DN racine de l'arbre groupes"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Association groupe-membre"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Utiliser TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "Ne pas utiliser pour les connexions SSL, car cela échouera."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "Serveur LDAP insensible à la casse (Windows)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "Désactiver la validation du certificat SSL."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "Si la connexion ne fonctionne qu'avec cette option, importez le certificat SSL du serveur LDAP dans le serveur ownCloud."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "Non recommandé, utilisation pour tests uniquement."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "Champ \"nom d'affichage\" de l'utilisateur"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "L'attribut LDAP utilisé pour générer les noms d'utilisateurs d'ownCloud."
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "Champ \"nom d'affichage\" du groupe"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "L'attribut LDAP utilisé pour générer les noms de groupes d'ownCloud."
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "en octets"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "en secondes. Tout changement vide le cache."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "Laisser vide "
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Aide"
diff --git a/l10n/gl/core.po b/l10n/gl/core.po
index fa4fed8860..22c6634339 100644
--- a/l10n/gl/core.po
+++ b/l10n/gl/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: 2012-11-21 00:01+0100\n"
-"PO-Revision-Date: 2012-11-20 22:35+0000\n"
-"Last-Translator: Miguel Branco \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
@@ -19,6 +19,30 @@ msgstr ""
"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "Non se indicou o tipo de categoría"
@@ -139,8 +163,8 @@ msgid "The object type is not specified."
msgstr "Non se especificou o tipo de obxecto."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:527
-#: js/share.js:539
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Erro"
@@ -152,7 +176,7 @@ msgstr "Non se especificou o nome do aplicativo."
msgid "The required file {file} is not installed!"
msgstr "Non está instalado o ficheiro {file} que se precisa"
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Erro compartindo"
@@ -189,70 +213,86 @@ msgstr "Protexido con contrasinais"
msgid "Password"
msgstr "Contrasinal"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Definir a data de caducidade"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Data de caducidade"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Compartir por correo electrónico:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Non se atopou xente"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "Non se acepta volver a compartir"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "Compartido en {item} con {user}"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Deixar de compartir"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "pode editar"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "control de acceso"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "crear"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "actualizar"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "borrar"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "compartir"
-#: js/share.js:343 js/share.js:514 js/share.js:516
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Protexido con contrasinal"
-#: js/share.js:527
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Erro ao quitar a data de caducidade"
-#: js/share.js:539
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Erro ao definir a data de caducidade"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "Restablecer contrasinal de ownCloud"
diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po
index 2f60b9cf9e..775152bbea 100644
--- a/l10n/gl/files_external.po
+++ b/l10n/gl/files_external.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-30 00:03+0100\n"
-"PO-Revision-Date: 2012-11-29 16:06+0000\n"
-"Last-Translator: mbouzada \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:22+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"
@@ -43,66 +43,80 @@ msgstr "Dá o segredo e a chave correcta do aplicativo de Dropbox."
msgid "Error configuring Google Drive storage"
msgstr "Produciuse un erro ao configurar o almacenamento en Google Drive"
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Almacenamento externo"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Punto de montaxe"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Infraestrutura"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Configuración"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Opcións"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Aplicábel"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Engadir un punto de montaxe"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "Ningún definido"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Todos os usuarios"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Grupos"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Usuarios"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Eliminar"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Activar o almacenamento externo do usuario"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Permitir aos usuarios montar os seus propios almacenamentos externos"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "Certificados SSL root"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Importar o certificado root"
diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po
index 8f640a984a..e61cf22989 100644
--- a/l10n/gl/user_ldap.po
+++ b/l10n/gl/user_ldap.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-08 00:09+0100\n"
-"PO-Revision-Date: 2012-12-06 11:45+0000\n"
-"Last-Translator: mbouzada \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
@@ -20,153 +20,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "Servidor"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Pode omitir o protocolo agás que precise de SSL. Nese caso comece con ldaps://"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "DN base"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Pode especificar a DN base para usuarios e grupos na lapela de «Avanzado»"
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "DN do usuario"
-#: templates/settings.php:10
+#: templates/settings.php:17
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 "O DN do cliente do usuario co que hai que estabelecer unha conexión, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso en anónimo de o DN e o contrasinal baleiros."
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Contrasinal"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "Para o acceso anónimo deixe o DN e o contrasinal baleiros."
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "Filtro de acceso de usuarios"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "Define o filtro que se aplica cando se intenta o acceso. %%uid substitúe o nome de usuario e a acción de acceso."
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "usar a marca de posición %%uid, p.ex «uid=%%uid»"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "Filtro da lista de usuarios"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "Define o filtro a aplicar cando se recompilan os usuarios."
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "sen ningunha marca de posición, como p.ex «objectClass=persoa»."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Filtro de grupo"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "Define o filtro a aplicar cando se recompilan os grupos."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "sen ningunha marca de posición, como p.ex «objectClass=grupoPosix»."
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Porto"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "Base da árbore de usuarios"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Base da árbore de grupo"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Asociación de grupos e membros"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Usar TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "Non empregualo para conexións SSL: fallará."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "Servidor LDAP que non distingue entre maiúsculas e minúsculas (Windows)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "Desactiva a validación do certificado SSL."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "Se a conexión só funciona con esta opción importa o certificado SSL do servidor LDAP no seu servidor ownCloud."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "Non se recomenda. Só para probas."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "Campo de mostra do nome de usuario"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "O atributo LDAP a empregar para xerar o nome de usuario de ownCloud."
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "Campo de mostra do nome de grupo"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "O atributo LDAP úsase para xerar os nomes dos grupos de ownCloud."
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "en bytes"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "en segundos. Calquera cambio baleira a caché."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "Deixar baleiro para o nome de usuario (predeterminado). Noutro caso, especifique un atributo LDAP/AD."
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Axuda"
diff --git a/l10n/he/core.po b/l10n/he/core.po
index 7595b43248..376b0ebf7f 100644
--- a/l10n/he/core.po
+++ b/l10n/he/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: 2012-12-02 00:02+0100\n"
-"PO-Revision-Date: 2012-12-01 06:47+0000\n"
-"Last-Translator: Yaron Shahrabani \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -21,6 +21,30 @@ msgstr ""
"Language: he\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "סוג הקטגוריה לא סופק."
@@ -141,8 +165,8 @@ msgid "The object type is not specified."
msgstr "סוג הפריט לא צוין."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:533
-#: js/share.js:545
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "שגיאה"
@@ -154,7 +178,7 @@ msgstr "שם היישום לא צוין."
msgid "The required file {file} is not installed!"
msgstr "הקובץ הנדרש {file} אינו מותקן!"
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "שגיאה במהלך השיתוף"
@@ -191,70 +215,86 @@ msgstr "הגנה בססמה"
msgid "Password"
msgstr "ססמה"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "הגדרת תאריך תפוגה"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "תאריך התפוגה"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "שיתוף באמצעות דוא״ל:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "לא נמצאו אנשים"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "אסור לעשות שיתוף מחדש"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "שותף תחת {item} עם {user}"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "הסר שיתוף"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "ניתן לערוך"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "בקרת גישה"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "יצירה"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "עדכון"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "מחיקה"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "שיתוף"
-#: js/share.js:349 js/share.js:520 js/share.js:522
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "מוגן בססמה"
-#: js/share.js:533
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "אירעה שגיאה בביטול תאריך התפוגה"
-#: js/share.js:545
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "איפוס הססמה של ownCloud"
diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po
index bf65ccc356..091bf89892 100644
--- a/l10n/he/files_external.po
+++ b/l10n/he/files_external.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-02 00:02+0100\n"
-"PO-Revision-Date: 2012-12-01 07:19+0000\n"
-"Last-Translator: Yaron Shahrabani \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -43,66 +43,80 @@ msgstr "נא לספק קוד יישום וסוד תקניים של Dropbox."
msgid "Error configuring Google Drive storage"
msgstr "אירעה שגיאה בעת הגדרת אחסון ב־Google Drive"
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "אחסון חיצוני"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "נקודת עגינה"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "מנגנון"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "הגדרות"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "אפשרויות"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "ניתן ליישום"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "הוספת נקודת עגינה"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "לא הוגדרה"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "כל המשתמשים"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "קבוצות"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "משתמשים"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "מחיקה"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "הפעלת אחסון חיצוני למשתמשים"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "יאפשר למשתמשים לעגן את האחסון החיצוני שלהם"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "שורש אישורי אבטחת SSL "
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "ייבוא אישור אבטחת שורש"
diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po
index 8837051313..fb4f06d844 100644
--- a/l10n/he/user_ldap.po
+++ b/l10n/he/user_ldap.po
@@ -7,164 +7,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-29 02:01+0200\n"
-"PO-Revision-Date: 2012-08-29 00:03+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: he\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr ""
diff --git a/l10n/hi/core.po b/l10n/hi/core.po
index 70a515c309..ad1e340700 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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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,6 +19,30 @@ msgstr ""
"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -57,59 +81,59 @@ msgstr ""
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr ""
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr ""
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr ""
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr ""
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr ""
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr ""
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr ""
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr ""
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr ""
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr ""
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr ""
@@ -139,8 +163,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr ""
@@ -152,7 +176,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr ""
@@ -189,70 +213,86 @@ msgstr ""
msgid "Password"
msgstr "पासवर्ड"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr ""
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr ""
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr ""
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr ""
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr ""
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr ""
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr ""
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr ""
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr ""
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr ""
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr ""
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr ""
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr ""
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr ""
@@ -404,87 +444,87 @@ msgstr ""
msgid "Finish setup"
msgstr "सेटअप समाप्त करे"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr ""
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr ""
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr ""
diff --git a/l10n/hi/files_external.po b/l10n/hi/files_external.po
index ffd95d4096..acf75ea681 100644
--- a/l10n/hi/files_external.po
+++ b/l10n/hi/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 21:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr ""
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr ""
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr ""
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po
index 1ca5b6139b..ae9f03b021 100644
--- a/l10n/hi/user_ldap.po
+++ b/l10n/hi/user_ldap.po
@@ -7,164 +7,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-29 02:01+0200\n"
-"PO-Revision-Date: 2012-08-29 00:03+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hi\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr ""
diff --git a/l10n/hr/core.po b/l10n/hr/core.po
index 981e11e0d1..3b78e7b8fd 100644
--- a/l10n/hr/core.po
+++ b/l10n/hr/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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
@@ -21,6 +21,30 @@ 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:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -59,59 +83,59 @@ msgstr "Nema odabranih kategorija za brisanje."
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Postavke"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr "sekundi prije"
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr ""
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr ""
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr "danas"
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr "jučer"
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr ""
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr "prošli mjesec"
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr "mjeseci"
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr "prošlu godinu"
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr "godina"
@@ -141,8 +165,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Pogreška"
@@ -154,7 +178,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Greška prilikom djeljenja"
@@ -191,70 +215,86 @@ msgstr "Zaštiti lozinkom"
msgid "Password"
msgstr "Lozinka"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Postavi datum isteka"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Datum isteka"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Dijeli preko email-a:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Osobe nisu pronađene"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "Ponovo dijeljenje nije dopušteno"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Makni djeljenje"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "može mjenjat"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "kontrola pristupa"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "kreiraj"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "ažuriraj"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "izbriši"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "djeli"
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Zaštita lozinkom"
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Greška prilikom brisanja datuma isteka"
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Greška prilikom postavljanja datuma isteka"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "ownCloud resetiranje lozinke"
@@ -406,87 +446,87 @@ msgstr "Poslužitelj baze podataka"
msgid "Finish setup"
msgstr "Završi postavljanje"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "nedelja"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "ponedeljak"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "utorak"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "srijeda"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "četvrtak"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "petak"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "subota"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Siječanj"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Veljača"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Ožujak"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "Travanj"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Svibanj"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Lipanj"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Srpanj"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "Kolovoz"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "Rujan"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Listopad"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "Studeni"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "Prosinac"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "web usluge pod vašom kontrolom"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Odjava"
diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po
index 1fdf2d3810..c221796fa0 100644
--- a/l10n/hr/files_external.po
+++ b/l10n/hr/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 21:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:64
-msgid "Groups"
-msgstr ""
-
-#: templates/settings.php:69
-msgid "Users"
-msgstr ""
-
-#: templates/settings.php:77 templates/settings.php:107
-msgid "Delete"
-msgstr ""
-
#: templates/settings.php:87
+msgid "Groups"
+msgstr "Grupe"
+
+#: templates/settings.php:95
+msgid "Users"
+msgstr "Korisnici"
+
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
+msgid "Delete"
+msgstr "Obriši"
+
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po
index a7e026ac79..5861922d33 100644
--- a/l10n/hr/user_ldap.po
+++ b/l10n/hr/user_ldap.po
@@ -7,164 +7,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-29 02:01+0200\n"
-"PO-Revision-Date: 2012-08-29 00:03+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"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"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr ""
diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po
index 7f656a4ac7..be9005b337 100644
--- a/l10n/hu_HU/core.po
+++ b/l10n/hu_HU/core.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
@@ -20,6 +20,30 @@ msgstr ""
"Language: hu_HU\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -58,59 +82,59 @@ msgstr "Nincs törlésre jelölt kategória"
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Beállítások"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr "másodperccel ezelőtt"
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr "1 perccel ezelőtt"
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr ""
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr "ma"
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr "tegnap"
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr ""
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr "múlt hónapban"
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr "hónappal ezelőtt"
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr "tavaly"
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr "évvel ezelőtt"
@@ -140,8 +164,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Hiba"
@@ -153,7 +177,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr ""
@@ -190,70 +214,86 @@ msgstr ""
msgid "Password"
msgstr "Jelszó"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr ""
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr ""
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr ""
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr ""
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Nem oszt meg"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr ""
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr ""
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "létrehozás"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr ""
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr ""
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr ""
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr ""
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr ""
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "ownCloud jelszó-visszaállítás"
@@ -405,87 +445,87 @@ msgstr "Adatbázis szerver"
msgid "Finish setup"
msgstr "Beállítás befejezése"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "Vasárnap"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "Hétfő"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "Kedd"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "Szerda"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "Csütörtök"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "Péntek"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "Szombat"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Január"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Február"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Március"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "Április"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Május"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Június"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Július"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "Augusztus"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "Szeptember"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Október"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "November"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "December"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "webszolgáltatások az irányításod alatt"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Kilépés"
diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po
index 8ba04f1084..b77194ab26 100644
--- a/l10n/hu_HU/files_external.po
+++ b/l10n/hu_HU/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 21:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:64
-msgid "Groups"
-msgstr ""
-
-#: templates/settings.php:69
-msgid "Users"
-msgstr ""
-
-#: templates/settings.php:77 templates/settings.php:107
-msgid "Delete"
-msgstr ""
-
#: templates/settings.php:87
+msgid "Groups"
+msgstr "Csoportok"
+
+#: templates/settings.php:95
+msgid "Users"
+msgstr "Felhasználók"
+
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
+msgid "Delete"
+msgstr "Törlés"
+
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po
index cacb371b1b..330b4cd146 100644
--- a/l10n/hu_HU/user_ldap.po
+++ b/l10n/hu_HU/user_ldap.po
@@ -7,164 +7,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-29 02:01+0200\n"
-"PO-Revision-Date: 2012-08-29 00:03+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Transfer-Encoding: 8bit\n"
"Language: hu_HU\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr ""
diff --git a/l10n/ia/core.po b/l10n/ia/core.po
index f068f3fb58..cf1e1c8105 100644
--- a/l10n/ia/core.po
+++ b/l10n/ia/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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23:17+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
"MIME-Version: 1.0\n"
@@ -18,6 +18,30 @@ msgstr ""
"Language: ia\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -56,59 +80,59 @@ msgstr ""
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Configurationes"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr ""
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr ""
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr ""
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr ""
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr ""
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr ""
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr ""
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr ""
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr ""
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr ""
@@ -138,8 +162,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr ""
@@ -151,7 +175,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr ""
@@ -188,70 +212,86 @@ msgstr ""
msgid "Password"
msgstr "Contrasigno"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr ""
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr ""
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr ""
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr ""
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr ""
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr ""
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr ""
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr ""
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr ""
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr ""
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr ""
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr ""
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr ""
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "Reinitialisation del contrasigno de ownCLoud"
@@ -403,87 +443,87 @@ msgstr "Hospite de base de datos"
msgid "Finish setup"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "Dominica"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "Lunedi"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "Martedi"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "Mercuridi"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "Jovedi"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "Venerdi"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "Sabbato"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "januario"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Februario"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Martio"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "April"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Mai"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Junio"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Julio"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "Augusto"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "Septembre"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Octobre"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "Novembre"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "Decembre"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "servicios web sub tu controlo"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Clauder le session"
diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po
index e8fbb159c3..7fa22302eb 100644
--- a/l10n/ia/files_external.po
+++ b/l10n/ia/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 21:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:64
-msgid "Groups"
-msgstr ""
-
-#: templates/settings.php:69
-msgid "Users"
-msgstr ""
-
-#: templates/settings.php:77 templates/settings.php:107
-msgid "Delete"
-msgstr ""
-
#: templates/settings.php:87
+msgid "Groups"
+msgstr "Gruppos"
+
+#: templates/settings.php:95
+msgid "Users"
+msgstr "Usatores"
+
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
+msgid "Delete"
+msgstr "Deler"
+
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po
index 73b531764a..cae53dce37 100644
--- a/l10n/ia/user_ldap.po
+++ b/l10n/ia/user_ldap.po
@@ -7,164 +7,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-29 02:01+0200\n"
-"PO-Revision-Date: 2012-08-29 00:03+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ia\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr ""
diff --git a/l10n/id/core.po b/l10n/id/core.po
index f6cf57fdff..20b68e9ecf 100644
--- a/l10n/id/core.po
+++ b/l10n/id/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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
@@ -21,6 +21,30 @@ msgstr ""
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -59,59 +83,59 @@ msgstr "Tidak ada kategori terpilih untuk penghapusan."
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Setelan"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr "beberapa detik yang lalu"
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr "1 menit lalu"
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr ""
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr "hari ini"
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr "kemarin"
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr ""
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr "bulan kemarin"
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr "beberapa bulan lalu"
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr "tahun kemarin"
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr "beberapa tahun lalu"
@@ -141,8 +165,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "gagal"
@@ -154,7 +178,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "gagal ketika membagikan"
@@ -191,70 +215,86 @@ msgstr "lindungi dengan kata kunci"
msgid "Password"
msgstr "Password"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "set tanggal kadaluarsa"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "tanggal kadaluarsa"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "berbagi memlalui surel:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "tidak ada orang ditemukan"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "berbagi ulang tidak diperbolehkan"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "dibagikan dalam {item} dengan {user}"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "batalkan berbagi"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "dapat merubah"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "kontrol akses"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "buat baru"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "baharui"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "hapus"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "bagikan"
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "dilindungi kata kunci"
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "gagal melepas tanggal kadaluarsa"
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "gagal memasang tanggal kadaluarsa"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "reset password ownCloud"
@@ -406,87 +446,87 @@ msgstr "Host database"
msgid "Finish setup"
msgstr "Selesaikan instalasi"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "minggu"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "senin"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "selasa"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "rabu"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "kamis"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "jumat"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "sabtu"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Januari"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Februari"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Maret"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "April"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Mei"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Juni"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Juli"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "Agustus"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "September"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Oktober"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "Nopember"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "Desember"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "web service dibawah kontrol anda"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Keluar"
diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po
index 87060eb50f..cdec2730ac 100644
--- a/l10n/id/files_external.po
+++ b/l10n/id/files_external.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-21 02:03+0200\n"
-"PO-Revision-Date: 2012-10-20 23:34+0000\n"
-"Last-Translator: elmakong \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -42,66 +42,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "penyimpanan eksternal"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "konfigurasi"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "pilihan"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "berlaku"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "tidak satupun di set"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "semua pengguna"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "grup"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "pengguna"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "hapus"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po
index 8069104219..193df39039 100644
--- a/l10n/id/user_ldap.po
+++ b/l10n/id/user_ldap.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-22 02:02+0200\n"
-"PO-Revision-Date: 2012-10-21 05:36+0000\n"
-"Last-Translator: elmakong \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,153 +19,166 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "host"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr "kata kunci"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "gunakan saringan login"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "saringan grup"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "port"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "gunakan TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "jangan gunakan untuk koneksi SSL, itu akan gagal."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "matikan validasi sertivikat SSL"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "tidak disarankan, gunakan hanya untuk pengujian."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "dalam bytes"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "dalam detik. perubahan mengosongkan cache"
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "bantuan"
diff --git a/l10n/is/core.po b/l10n/is/core.po
index cb50d8be88..4432000b3c 100644
--- a/l10n/is/core.po
+++ b/l10n/is/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: 2012-12-06 00:11+0100\n"
-"PO-Revision-Date: 2012-12-05 14:23+0000\n"
-"Last-Translator: kaztraz \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -18,6 +18,30 @@ msgstr ""
"Language: is\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "Flokkur ekki gefin"
@@ -138,8 +162,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:533
-#: js/share.js:545
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr ""
@@ -151,7 +175,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr ""
@@ -188,70 +212,86 @@ msgstr ""
msgid "Password"
msgstr "Lykilorð"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr ""
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr ""
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr ""
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr ""
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr ""
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr ""
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr ""
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr ""
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr ""
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr ""
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr ""
-#: js/share.js:349 js/share.js:520 js/share.js:522
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr ""
-#: js/share.js:533
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:545
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr ""
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr ""
diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po
index 3789d361a1..a62f4ed1e0 100644
--- a/l10n/is/files_external.po
+++ b/l10n/is/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-06 00:11+0100\n"
-"PO-Revision-Date: 2012-08-12 22:34+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,67 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:21
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:26
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:84
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:85
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:86
+#: templates/settings.php:87
msgid "Groups"
msgstr ""
-#: templates/settings.php:94
+#: templates/settings.php:95
msgid "Users"
msgstr ""
-#: templates/settings.php:107 templates/settings.php:108
-#: templates/settings.php:148 templates/settings.php:149
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr ""
-#: templates/settings.php:123
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:124
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:138
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:157
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po
index 469ae8a332..06ab3b51ea 100644
--- a/l10n/is/user_ldap.po
+++ b/l10n/is/user_ldap.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-06 00:11+0100\n"
-"PO-Revision-Date: 2012-08-12 22:45+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -18,153 +18,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr ""
diff --git a/l10n/it/core.po b/l10n/it/core.po
index 9dc57ce2ea..d1d6f74af3 100644
--- a/l10n/it/core.po
+++ b/l10n/it/core.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-17 00:01+0100\n"
-"PO-Revision-Date: 2012-11-15 23:19+0000\n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 08:54+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"
@@ -22,6 +22,30 @@ msgstr ""
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr "L'utente %s ha condiviso un file con te"
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr "L'utente %s ha condiviso una cartella con te"
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr "L'utente %s ha condiviso il file \"%s\" con te. È disponibile per lo scaricamento qui: %s"
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr "L'utente %s ha condiviso la cartella \"%s\" con te. È disponibile per lo scaricamento qui: %s"
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "Tipo di categoria non fornito."
@@ -142,8 +166,8 @@ msgid "The object type is not specified."
msgstr "Il tipo di oggetto non è specificato."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Errore"
@@ -155,7 +179,7 @@ msgstr "Il nome dell'applicazione non è specificato."
msgid "The required file {file} is not installed!"
msgstr "Il file richiesto {file} non è installato!"
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Errore durante la condivisione"
@@ -187,75 +211,91 @@ msgstr "Condividi con collegamento"
msgid "Password protect"
msgstr "Proteggi con password"
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:26
#: templates/verify.php:13
msgid "Password"
msgstr "Password"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr "Invia collegamento via email"
+
#: js/share.js:173
+msgid "Send"
+msgstr "Invia"
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Imposta data di scadenza"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Data di scadenza"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Condividi tramite email:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Non sono state trovate altre persone"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "La ri-condivisione non è consentita"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "Condiviso in {item} con {user}"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Rimuovi condivisione"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "può modificare"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "controllo d'accesso"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "creare"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "aggiornare"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "eliminare"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "condividere"
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Protetta da password"
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Errore durante la rimozione della data di scadenza"
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Errore durante l'impostazione della data di scadenza"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr "Invio in corso..."
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr "Messaggio inviato"
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "Ripristino password di ownCloud"
@@ -276,8 +316,8 @@ msgstr "Email di ripristino inviata."
msgid "Request failed!"
msgstr "Richiesta non riuscita!"
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:21
msgid "Username"
msgstr "Nome utente"
@@ -366,44 +406,44 @@ msgstr "La cartella dei dati e i tuoi file sono probabilmente accessibili da Int
msgid "Create an admin account "
msgstr "Crea un account amministratore "
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "Avanzate"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "Cartella dati"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "Configura il database"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "sarà utilizzato"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "Utente del database"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "Password del database"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "Nome del database"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Spazio delle tabelle del database"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "Host del database"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "Termina la configurazione"
@@ -509,11 +549,11 @@ msgstr "Cambia la password per rendere nuovamente sicuro il tuo account."
msgid "Lost your password?"
msgstr "Hai perso la password?"
-#: templates/login.php:27
+#: templates/login.php:29
msgid "remember"
msgstr "ricorda"
-#: templates/login.php:28
+#: templates/login.php:30
msgid "Log in"
msgstr "Accedi"
diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po
index bcae09b3e0..970dad99d8 100644
--- a/l10n/it/files_external.po
+++ b/l10n/it/files_external.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-04 02:04+0200\n"
-"PO-Revision-Date: 2012-10-03 05:50+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:42+0000\n"
"Last-Translator: Vincenzo Reale \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
"MIME-Version: 1.0\n"
@@ -43,66 +43,80 @@ msgstr "Fornisci chiave di applicazione e segreto di Dropbox validi."
msgid "Error configuring Google Drive storage"
msgstr "Errore durante la configurazione dell'archivio Google Drive"
+#: lib/config.php:434
+msgid ""
+"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
+"is not possible. Please ask your system administrator to install it."
+msgstr "Avviso: \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo."
+
+#: lib/config.php:435
+msgid ""
+"Warning: The FTP support in PHP is not enabled or installed. Mounting"
+" of FTP shares is not possible. Please ask your system administrator to "
+"install it."
+msgstr "Avviso: il supporto FTP di PHP non è abilitato o non è installato. Impossibile montare condivisioni FTP. Chiedi all'amministratore di sistema di installarlo."
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Archiviazione esterna"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Punto di mount"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Motore"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Configurazione"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Opzioni"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Applicabile"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Aggiungi punto di mount"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "Nessuna impostazione"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Tutti gli utenti"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Gruppi"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Utenti"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Elimina"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Abilita la memoria esterna dell'utente"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Consenti agli utenti di montare la propria memoria esterna"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "Certificati SSL radice"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Importa certificato radice"
diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po
index 9c8655920c..43fae95bfb 100644
--- a/l10n/it/user_ldap.po
+++ b/l10n/it/user_ldap.po
@@ -9,164 +9,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-30 02:02+0200\n"
-"PO-Revision-Date: 2012-08-29 05:37+0000\n"
-"Last-Translator: Vincenzo Reale \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "Host"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "È possibile omettere il protocollo, ad eccezione se è necessario SSL. Quindi inizia con ldaps://"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "DN base"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Puoi specificare una DN base per gli utenti ed i gruppi nella scheda Avanzate"
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "DN utente"
-#: templates/settings.php:10
+#: templates/settings.php:17
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 "Il DN per il client dell'utente con cui deve essere associato, ad esempio uid=agent,dc=example,dc=com. Per l'accesso anonimo, lasciare vuoti i campi DN e Password"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Password"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "Per l'accesso anonimo, lasciare vuoti i campi DN e Password"
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "Filtro per l'accesso utente"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "Specifica quale filtro utilizzare quando si tenta l'accesso. %%uid sostituisce il nome utente all'atto dell'accesso."
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "utilizza il segnaposto %%uid, ad esempio \"uid=%%uid\""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "Filtro per l'elenco utenti"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "Specifica quale filtro utilizzare durante il recupero degli utenti."
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "senza nessun segnaposto, per esempio \"objectClass=person\"."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Filtro per il gruppo"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "Specifica quale filtro utilizzare durante il recupero dei gruppi."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "senza nessun segnaposto, per esempio \"objectClass=posixGroup\"."
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Porta"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "Struttura base dell'utente"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Struttura base del gruppo"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Associazione gruppo-utente "
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Usa TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "Non utilizzare per le connessioni SSL, fallirà."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "Case insensitve LDAP server (Windows)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "Disattiva il controllo del certificato SSL."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "Se la connessione funziona esclusivamente con questa opzione, importa il certificato SSL del server LDAP nel tuo server ownCloud."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "Non consigliato, utilizzare solo per test."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "Campo per la visualizzazione del nome utente"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "L'attributo LDAP da usare per generare il nome dell'utente ownCloud."
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "Campo per la visualizzazione del nome del gruppo"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "L'attributo LDAP da usare per generare il nome del gruppo ownCloud."
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "in byte"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "in secondi. Il cambio svuota la cache."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "Lascia vuoto per il nome utente (predefinito). Altrimenti, specifica un attributo LDAP/AD."
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Aiuto"
diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po
index 571d8a38dc..ae1bd30ee4 100644
--- a/l10n/ja_JP/core.po
+++ b/l10n/ja_JP/core.po
@@ -4,14 +4,15 @@
#
# Translators:
# Daisuke Deguchi , 2012.
+# Daisuke Deguchi , 2012.
# , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-23 00:01+0100\n"
-"PO-Revision-Date: 2012-11-22 08:03+0000\n"
-"Last-Translator: Daisuke Deguchi \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 11:56+0000\n"
+"Last-Translator: Daisuke Deguchi \n"
"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,6 +20,30 @@ msgstr ""
"Language: ja_JP\n"
"Plural-Forms: nplurals=1; plural=0;\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr "ユーザ %s はあなたとファイルを共有しています"
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr "ユーザ %s はあなたとフォルダを共有しています"
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr "ユーザ %s はあなたとファイル \"%s\" を共有しています。こちらからダウンロードできます: %s"
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr "ユーザ %s はあなたとフォルダ \"%s\" を共有しています。こちらからダウンロードできます: %s"
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "カテゴリタイプは提供されていません。"
@@ -139,8 +164,8 @@ msgid "The object type is not specified."
msgstr "オブジェクタイプが指定されていません。"
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:527
-#: js/share.js:539
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "エラー"
@@ -152,7 +177,7 @@ msgstr "アプリ名がしていされていません。"
msgid "The required file {file} is not installed!"
msgstr "必要なファイル {file} がインストールされていません!"
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "共有でエラー発生"
@@ -184,75 +209,91 @@ msgstr "URLリンクで共有"
msgid "Password protect"
msgstr "パスワード保護"
-#: js/share.js:168 templates/installation.php:42 templates/login.php:24
+#: js/share.js:168 templates/installation.php:44 templates/login.php:26
#: templates/verify.php:13
msgid "Password"
msgstr "パスワード"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr "メールリンク"
+
#: js/share.js:173
+msgid "Send"
+msgstr "送信"
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "有効期限を設定"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "有効期限"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "メール経由で共有:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "ユーザーが見つかりません"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "再共有は許可されていません"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "{item} 内で {user} と共有中"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "共有解除"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "編集可能"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "アクセス権限"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "作成"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "更新"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "削除"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "共有"
-#: js/share.js:343 js/share.js:514 js/share.js:516
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "パスワード保護"
-#: js/share.js:527
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "有効期限の未設定エラー"
-#: js/share.js:539
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "有効期限の設定でエラー発生"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr "送信中..."
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr "メールを送信しました"
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "ownCloudのパスワードをリセットします"
@@ -273,8 +314,8 @@ msgstr "リセットメールを送信します。"
msgid "Request failed!"
msgstr "リクエスト失敗!"
-#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
-#: templates/login.php:20
+#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
+#: templates/login.php:21
msgid "Username"
msgstr "ユーザ名"
@@ -363,44 +404,44 @@ msgstr "データディレクトリとファイルが恐らくインターネッ
msgid "Create an admin account "
msgstr "管理者アカウント を作成してください"
-#: templates/installation.php:48
+#: templates/installation.php:50
msgid "Advanced"
msgstr "詳細設定"
-#: templates/installation.php:50
+#: templates/installation.php:52
msgid "Data folder"
msgstr "データフォルダ"
-#: templates/installation.php:57
+#: templates/installation.php:59
msgid "Configure the database"
msgstr "データベースを設定してください"
-#: templates/installation.php:62 templates/installation.php:73
-#: templates/installation.php:83 templates/installation.php:93
+#: templates/installation.php:64 templates/installation.php:75
+#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "が使用されます"
-#: templates/installation.php:105
+#: templates/installation.php:107
msgid "Database user"
msgstr "データベースのユーザ名"
-#: templates/installation.php:109
+#: templates/installation.php:111
msgid "Database password"
msgstr "データベースのパスワード"
-#: templates/installation.php:113
+#: templates/installation.php:115
msgid "Database name"
msgstr "データベース名"
-#: templates/installation.php:121
+#: templates/installation.php:123
msgid "Database tablespace"
msgstr "データベースの表領域"
-#: templates/installation.php:127
+#: templates/installation.php:129
msgid "Database host"
msgstr "データベースのホスト名"
-#: templates/installation.php:132
+#: templates/installation.php:134
msgid "Finish setup"
msgstr "セットアップを完了します"
@@ -506,11 +547,11 @@ msgstr "アカウント保護の為、パスワードを再度の変更をお願
msgid "Lost your password?"
msgstr "パスワードを忘れましたか?"
-#: templates/login.php:27
+#: templates/login.php:29
msgid "remember"
msgstr "パスワードを記憶する"
-#: templates/login.php:28
+#: templates/login.php:30
msgid "Log in"
msgstr "ログイン"
diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po
index c857478540..6e0b94a6f3 100644
--- a/l10n/ja_JP/files_external.po
+++ b/l10n/ja_JP/files_external.po
@@ -4,13 +4,14 @@
#
# Translators:
# Daisuke Deguchi , 2012.
+# Daisuke Deguchi , 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-04 02:04+0200\n"
-"PO-Revision-Date: 2012-10-03 02:12+0000\n"
-"Last-Translator: Daisuke Deguchi \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 12:24+0000\n"
+"Last-Translator: Daisuke Deguchi \n"
"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -42,66 +43,80 @@ msgstr "有効なDropboxアプリのキーとパスワードを入力して下
msgid "Error configuring Google Drive storage"
msgstr "Googleドライブストレージの設定エラー"
+#: lib/config.php:434
+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:435
+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共有のマウントはできません。システム管理者にインストールをお願いして下さい。"
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "外部ストレージ"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "マウントポイント"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "バックエンド"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "設定"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "オプション"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "適用範囲"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "マウントポイントを追加"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "未設定"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "すべてのユーザ"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "グループ"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "ユーザ"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "削除"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "ユーザの外部ストレージを有効にする"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "ユーザに外部ストレージのマウントを許可する"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "SSLルート証明書"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "ルート証明書をインポート"
diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po
index bd04cb5c53..2a88e6fa06 100644
--- a/l10n/ja_JP/user_ldap.po
+++ b/l10n/ja_JP/user_ldap.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 02:03+0200\n"
-"PO-Revision-Date: 2012-10-01 08:48+0000\n"
-"Last-Translator: Daisuke Deguchi \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
@@ -20,153 +20,166 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "ホスト"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "SSL通信しない場合には、プロトコル名を省略することができます。そうでない場合には、ldaps:// から始めてください。"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "ベースDN"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "拡張タブでユーザとグループのベースDNを指定することができます。"
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "ユーザDN"
-#: templates/settings.php:10
+#: templates/settings.php:17
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 "クライアントユーザーのDNは、特定のものに結びつけることはしません。 例えば uid=agent,dc=example,dc=com. だと匿名アクセスの場合、DNとパスワードは空のままです。"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "Password"
msgstr "パスワード"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "匿名アクセスの場合は、DNとパスワードを空にしてください。"
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "ユーザログインフィルタ"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "ログインするときに適用するフィルターを定義する。%%uid がログイン時にユーザー名に置き換えられます。"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "%%uid プレースホルダーを利用してください。例 \"uid=%%uid\""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "ユーザリストフィルタ"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "ユーザーを取得するときに適用するフィルターを定義する。"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "プレースホルダーを利用しないでください。例 \"objectClass=person\""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "グループフィルタ"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "グループを取得するときに適用するフィルターを定義する。"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "プレースホルダーを利用しないでください。例 \"objectClass=posixGroup\""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "ポート"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "ベースユーザツリー"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "ベースグループツリー"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "グループとメンバーの関連付け"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "TLSを利用"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "SSL接続に利用しないでください、失敗します。"
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "大文字/小文字を区別しないLDAPサーバ(Windows)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "SSL証明書の確認を無効にする。"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "接続がこのオプションでのみ動作する場合は、LDAPサーバのSSL証明書をownCloudサーバにインポートしてください。"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "推奨しません、テスト目的でのみ利用してください。"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "ユーザ表示名のフィールド"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "ユーザのownCloud名の生成に利用するLDAP属性。"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "グループ表示名のフィールド"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "グループのownCloud名の生成に利用するLDAP属性。"
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "バイト"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "秒。変更後にキャッシュがクリアされます。"
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "ユーザ名を空のままにしてください(デフォルト)。そうでない場合は、LDAPもしくはADの属性を指定してください。"
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "ヘルプ"
diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po
index 3e4540171a..49ad2e0194 100644
--- a/l10n/ka_GE/core.po
+++ b/l10n/ka_GE/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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
@@ -18,6 +18,30 @@ msgstr ""
"Language: ka_GE\n"
"Plural-Forms: nplurals=1; plural=0;\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -56,59 +80,59 @@ msgstr "სარედაქტირებელი კატეგორი
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "პარამეტრები"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr "წამის წინ"
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr "1 წუთის წინ"
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr "{minutes} წუთის წინ"
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr "დღეს"
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr "გუშინ"
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr "{days} დღის წინ"
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr "გასულ თვეში"
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr "თვის წინ"
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr "ბოლო წელს"
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr "წლის წინ"
@@ -138,8 +162,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "შეცდომა"
@@ -151,7 +175,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "შეცდომა გაზიარების დროს"
@@ -188,70 +212,86 @@ msgstr "პაროლით დაცვა"
msgid "Password"
msgstr "პაროლი"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "მიუთითე ვადის გასვლის დრო"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "ვადის გასვლის დრო"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "გააზიარე მეილზე"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "გვერდი არ არის ნაპოვნი"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "მეორეჯერ გაზიარება არ არის დაშვებული"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "გაზიარების მოხსნა"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "შეგიძლია შეცვლა"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "დაშვების კონტროლი"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "შექმნა"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "განახლება"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "წაშლა"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "გაზიარება"
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "პაროლით დაცული"
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "შეცდომა ვადის გასვლის მოხსნის დროს"
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "შეცდომა ვადის გასვლის მითითების დროს"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "ownCloud პაროლის შეცვლა"
@@ -403,87 +443,87 @@ msgstr "ბაზის ჰოსტი"
msgid "Finish setup"
msgstr "კონფიგურაციის დასრულება"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "კვირა"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "ორშაბათი"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "სამშაბათი"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "ოთხშაბათი"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "ხუთშაბათი"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "პარასკევი"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "შაბათი"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "იანვარი"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "თებერვალი"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "მარტი"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "აპრილი"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "მაისი"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "ივნისი"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "ივლისი"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "აგვისტო"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "სექტემბერი"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "ოქტომბერი"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "ნოემბერი"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "დეკემბერი"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "თქვენი კონტროლის ქვეშ მყოფი ვებ სერვისები"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "გამოსვლა"
diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po
index 68ea705a40..eb5eb8256c 100644
--- a/l10n/ka_GE/files_external.po
+++ b/l10n/ka_GE/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-22 02:02+0200\n"
-"PO-Revision-Date: 2012-08-12 22:34+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:64
-msgid "Groups"
-msgstr ""
-
-#: templates/settings.php:69
-msgid "Users"
-msgstr ""
-
-#: templates/settings.php:77 templates/settings.php:107
-msgid "Delete"
-msgstr ""
-
#: templates/settings.php:87
+msgid "Groups"
+msgstr "ჯგუფები"
+
+#: templates/settings.php:95
+msgid "Users"
+msgstr "მომხმარებელი"
+
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
+msgid "Delete"
+msgstr "წაშლა"
+
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po
index bdf29a00b3..0df8aa5b1a 100644
--- a/l10n/ka_GE/user_ldap.po
+++ b/l10n/ka_GE/user_ldap.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-22 02:02+0200\n"
-"PO-Revision-Date: 2012-08-12 22:45+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -18,153 +18,166 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr ""
diff --git a/l10n/ko/core.po b/l10n/ko/core.po
index 11331b588a..1f24c97277 100644
--- a/l10n/ko/core.po
+++ b/l10n/ko/core.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-10 00:11+0100\n"
-"PO-Revision-Date: 2012-12-09 06:08+0000\n"
-"Last-Translator: Shinjo Park \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23:17+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"
@@ -20,6 +20,30 @@ msgstr ""
"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "분류 형식이 제공되지 않았습니다."
@@ -140,8 +164,8 @@ msgid "The object type is not specified."
msgstr "객체 유형이 지정되지 않았습니다."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:533
-#: js/share.js:545
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "오류"
@@ -153,7 +177,7 @@ msgstr "앱 이름이 지정되지 않았습니다."
msgid "The required file {file} is not installed!"
msgstr "필요한 파일 {file}이(가) 설치되지 않았습니다!"
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "공유하는 중 오류 발생"
@@ -190,70 +214,86 @@ msgstr "암호 보호"
msgid "Password"
msgstr "암호"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "만료 날짜 설정"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "만료 날짜"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "이메일로 공유:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "발견된 사람 없음"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "다시 공유할 수 없습니다"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "{user} 님과 {item}에서 공유 중"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "공유 해제"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "편집 가능"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "접근 제어"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "만들기"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "업데이트"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "삭제"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "공유"
-#: js/share.js:349 js/share.js:520 js/share.js:522
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "암호로 보호됨"
-#: js/share.js:533
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "만료 날짜 해제 오류"
-#: js/share.js:545
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "만료 날짜 설정 오류"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "ownCloud 암호 재설정"
diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po
index 8a9204f06a..70d697575d 100644
--- a/l10n/ko/files_external.po
+++ b/l10n/ko/files_external.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-10 00:11+0100\n"
-"PO-Revision-Date: 2012-12-09 06:12+0000\n"
-"Last-Translator: Shinjo Park \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:22+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"
@@ -43,67 +43,80 @@ msgstr "올바른 Dropbox 앱 키와 암호를 입력하십시오."
msgid "Error configuring Google Drive storage"
msgstr "Google 드라이브 저장소 설정 오류"
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "외부 저장소"
-#: templates/settings.php:7 templates/settings.php:21
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "마운트 지점"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "백엔드"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "설정"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "옵션"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "적용 가능"
-#: templates/settings.php:26
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "마운트 지점 추가"
-#: templates/settings.php:84
+#: templates/settings.php:85
msgid "None set"
msgstr "설정되지 않음"
-#: templates/settings.php:85
+#: templates/settings.php:86
msgid "All Users"
msgstr "모든 사용자"
-#: templates/settings.php:86
+#: templates/settings.php:87
msgid "Groups"
msgstr "그룹"
-#: templates/settings.php:94
+#: templates/settings.php:95
msgid "Users"
msgstr "사용자"
-#: templates/settings.php:107 templates/settings.php:108
-#: templates/settings.php:148 templates/settings.php:149
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "삭제"
-#: templates/settings.php:123
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "사용자 외부 저장소 사용"
-#: templates/settings.php:124
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "사용자별 외부 저장소 마운트 허용"
-#: templates/settings.php:138
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "SSL 루트 인증서"
-#: templates/settings.php:157
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "루트 인증서 가져오기"
diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po
index f9102c199e..b10823d714 100644
--- a/l10n/ko/user_ldap.po
+++ b/l10n/ko/user_ldap.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-12-10 00:11+0100\n"
-"PO-Revision-Date: 2012-12-09 06:10+0000\n"
-"Last-Translator: Shinjo Park \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
@@ -20,153 +20,166 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "호스트"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "SSL을 사용하는 경우가 아니라면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오."
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "기본 DN"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "고급 탭에서 사용자 및 그룹에 대한 기본 DN을 지정할 수 있습니다."
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "사용자 DN"
-#: templates/settings.php:10
+#: templates/settings.php:17
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 "바인딩 작업을 수행할 클라이언트 사용자 DN입니다. 예를 들어서 uid=agent,dc=example,dc=com입니다. 익명 접근을 허용하려면 DN과 암호를 비워 두십시오."
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "Password"
msgstr "암호"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "익명 접근을 허용하려면 DN과 암호를 비워 두십시오."
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "사용자 로그인 필터"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "로그인을 시도할 때 적용할 필터입니다. %%uid는 로그인 작업에서의 사용자 이름으로 대체됩니다."
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "%%uid 자리 비움자를 사용하십시오. 예제: \"uid=%%uid\"\""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "사용자 목록 필터"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "사용자를 검색할 때 적용할 필터를 정의합니다."
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "자리 비움자를 사용할 수 없습니다. 예제: \"objectClass=person\""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "그룹 필터"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "그룹을 검색할 때 적용할 필터를 정의합니다."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "자리 비움자를 사용할 수 없습니다. 예제: \"objectClass=posixGroup\""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "포트"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "기본 사용자 트리"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "기본 그룹 트리"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "그룹-회원 연결"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "TLS 사용"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "SSL 연결 시 사용하는 경우 연결되지 않습니다."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "서버에서 대소문자를 구분하지 않음 (Windows)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "SSL 인증서 유효성 검사를 해제합니다."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "이 옵션을 사용해야 연결할 수 있는 경우에는 LDAP 서버의 SSL 인증서를 ownCloud로 가져올 수 있습니다."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "추천하지 않음, 테스트로만 사용하십시오."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "사용자의 표시 이름 필드"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "LDAP 속성은 사용자의 ownCloud 이름을 생성하기 위해 사용합니다."
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "그룹의 표시 이름 필드"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "LDAP 속성은 그룹의 ownCloud 이름을 생성하기 위해 사용합니다."
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "바이트"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "초. 항목 변경 시 캐시가 갱신됩니다."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "사용자 이름을 사용하려면 비워 두십시오(기본값). 기타 경우 LDAP/AD 속성을 지정하십시오."
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "도움말"
diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po
index 158446fd52..3917e9409c 100644
--- a/l10n/ku_IQ/core.po
+++ b/l10n/ku_IQ/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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
@@ -18,6 +18,30 @@ msgstr ""
"Language: ku_IQ\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -56,59 +80,59 @@ msgstr ""
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "دهستكاری"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr ""
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr ""
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr ""
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr ""
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr ""
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr ""
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr ""
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr ""
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr ""
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr ""
@@ -138,8 +162,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "ههڵه"
@@ -151,7 +175,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr ""
@@ -188,70 +212,86 @@ msgstr ""
msgid "Password"
msgstr "وشەی تێپەربو"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr ""
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr ""
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr ""
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr ""
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr ""
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr ""
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr ""
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr ""
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr ""
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr ""
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr ""
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr ""
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr ""
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr ""
@@ -403,87 +443,87 @@ msgstr "هۆستی داتابهیس"
msgid "Finish setup"
msgstr "كۆتایی هات دهستكاریهكان"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr ""
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "ڕاژهی وێب لهژێر چاودێریت دایه"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "چوونەدەرەوە"
diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po
index 4089687b03..78687b146f 100644
--- a/l10n/ku_IQ/files_external.po
+++ b/l10n/ku_IQ/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-07 02:03+0200\n"
-"PO-Revision-Date: 2012-08-12 22:34+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr ""
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
-msgstr ""
+msgstr "بهكارهێنهر"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr ""
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po
index bfa7aee57b..f4e484f84f 100644
--- a/l10n/ku_IQ/user_ldap.po
+++ b/l10n/ku_IQ/user_ldap.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-07 02:03+0200\n"
-"PO-Revision-Date: 2012-08-12 22:45+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -18,153 +18,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr ""
diff --git a/l10n/lb/core.po b/l10n/lb/core.po
index 89fe2cfec9..eacbddee62 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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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,6 +18,30 @@ msgstr ""
"Language: lb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -56,59 +80,59 @@ msgstr "Keng Kategorien ausgewielt fir ze läschen."
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Astellungen"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr ""
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr ""
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr ""
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr ""
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr ""
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr ""
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr ""
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr ""
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr ""
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr ""
@@ -138,8 +162,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Fehler"
@@ -151,7 +175,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr ""
@@ -188,70 +212,86 @@ msgstr ""
msgid "Password"
msgstr "Passwuert"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr ""
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr ""
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr ""
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr ""
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr ""
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr ""
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr ""
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "erstellen"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr ""
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr ""
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr ""
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr ""
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr ""
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "ownCloud Passwuert reset"
@@ -403,87 +443,87 @@ msgstr "Datebank Server"
msgid "Finish setup"
msgstr "Installatioun ofschléissen"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "Sonndes"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "Méindes"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "Dënschdes"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "Mëttwoch"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "Donneschdes"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "Freides"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "Samschdes"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Januar"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Februar"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Mäerz"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "Abrëll"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Mee"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Juni"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Juli"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "August"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "September"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Oktober"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "November"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "Dezember"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "Web Servicer ënnert denger Kontroll"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Ausloggen"
diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po
index 4a00f6bb30..42ed0ce33d 100644
--- a/l10n/lb/files_external.po
+++ b/l10n/lb/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 21:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
-msgstr ""
+msgstr "Gruppen"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr ""
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
-msgstr ""
+msgstr "Läschen"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po
index ea1a1452c6..be1657cb3d 100644
--- a/l10n/lb/user_ldap.po
+++ b/l10n/lb/user_ldap.po
@@ -7,164 +7,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-29 02:01+0200\n"
-"PO-Revision-Date: 2012-08-29 00:03+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: lb\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr ""
diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po
index 6354588982..ecc372bdfe 100644
--- a/l10n/lt_LT/core.po
+++ b/l10n/lt_LT/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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
@@ -19,6 +19,30 @@ 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:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -57,59 +81,59 @@ msgstr "Trynimui nepasirinkta jokia kategorija."
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Nustatymai"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr "prieš sekundę"
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr "Prieš 1 minutę"
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr "Prieš {count} minutes"
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr "šiandien"
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr "vakar"
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr "Prieš {days} dienas"
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr "praeitą mėnesį"
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr "prieš mėnesį"
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr "praeitais metais"
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr "prieš metus"
@@ -139,8 +163,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Klaida"
@@ -152,7 +176,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Klaida, dalijimosi metu"
@@ -189,70 +213,86 @@ msgstr "Apsaugotas slaptažodžiu"
msgid "Password"
msgstr "Slaptažodis"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Nustatykite galiojimo laiką"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Galiojimo laikas"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Dalintis per el. paštą:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Žmonių nerasta"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "Dalijinasis išnaujo negalimas"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "Pasidalino {item} su {user}"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Nesidalinti"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "gali redaguoti"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "priėjimo kontrolė"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "sukurti"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "atnaujinti"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "ištrinti"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "dalintis"
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Apsaugota slaptažodžiu"
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Klaida nuimant galiojimo laiką"
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Klaida nustatant galiojimo laiką"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "ownCloud slaptažodžio atkūrimas"
@@ -404,87 +444,87 @@ msgstr "Duomenų bazės serveris"
msgid "Finish setup"
msgstr "Baigti diegimą"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "Sekmadienis"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "Pirmadienis"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "Antradienis"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "Trečiadienis"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "Ketvirtadienis"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "Penktadienis"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "Šeštadienis"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Sausis"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Vasaris"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Kovas"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "Balandis"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Gegužė"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Birželis"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Liepa"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "Rugpjūtis"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "Rugsėjis"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Spalis"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "Lapkritis"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "Gruodis"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "jūsų valdomos web paslaugos"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Atsijungti"
diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po
index e1cfb8f097..6e6e944d5a 100644
--- a/l10n/lt_LT/files_external.po
+++ b/l10n/lt_LT/files_external.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-01 00:01+0100\n"
-"PO-Revision-Date: 2012-10-31 14:42+0000\n"
-"Last-Translator: Dr. ROX \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:22+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"
@@ -43,66 +43,80 @@ msgstr "Prašome įvesti teisingus Dropbox \"app key\" ir \"secret\"."
msgid "Error configuring Google Drive storage"
msgstr "Klaida nustatinėjant Google Drive talpyklą"
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Išorinės saugyklos"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Saugyklos pavadinimas"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Posistemės pavadinimas"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Konfigūracija"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Nustatymai"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Pritaikyti"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Pridėti išorinę saugyklą"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "Nieko nepasirinkta"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Visi vartotojai"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Grupės"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Vartotojai"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Ištrinti"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Įjungti vartotojų išorines saugyklas"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Leisti vartotojams pridėti savo išorines saugyklas"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "SSL sertifikatas"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Įkelti pagrindinį sertifikatą"
diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po
index 7e15e309ec..9891d24f37 100644
--- a/l10n/lt_LT/user_ldap.po
+++ b/l10n/lt_LT/user_ldap.po
@@ -8,164 +8,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-29 02:01+0200\n"
-"PO-Revision-Date: 2012-08-29 00:03+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Transfer-Encoding: 8bit\n"
"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"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Slaptažodis"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Grupės filtras"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Prievadas"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Naudoti TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "Išjungti SSL sertifikato tikrinimą."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "Nerekomenduojama, naudokite tik testavimui."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Pagalba"
diff --git a/l10n/lv/core.po b/l10n/lv/core.po
index 673a73d1da..404800bf2b 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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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,6 +18,30 @@ msgstr ""
"Language: lv\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -56,59 +80,59 @@ msgstr ""
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Iestatījumi"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr ""
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr ""
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr ""
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr ""
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr ""
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr ""
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr ""
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr ""
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr ""
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr ""
@@ -138,8 +162,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Kļūme"
@@ -151,7 +175,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr ""
@@ -188,70 +212,86 @@ msgstr ""
msgid "Password"
msgstr "Parole"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr ""
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr ""
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr ""
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr ""
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Pārtraukt līdzdalīšanu"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr ""
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr ""
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr ""
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr ""
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr ""
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr ""
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr ""
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr ""
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr ""
@@ -403,87 +443,87 @@ msgstr "Datubāzes mājvieta"
msgid "Finish setup"
msgstr "Pabeigt uzstādījumus"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr ""
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr ""
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr ""
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr ""
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Izlogoties"
diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po
index 81da66c079..07979d9b1c 100644
--- a/l10n/lv/files_external.po
+++ b/l10n/lv/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 21:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:22+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:64
-msgid "Groups"
-msgstr ""
-
-#: templates/settings.php:69
-msgid "Users"
-msgstr ""
-
-#: templates/settings.php:77 templates/settings.php:107
-msgid "Delete"
-msgstr ""
-
#: templates/settings.php:87
+msgid "Groups"
+msgstr "Grupas"
+
+#: templates/settings.php:95
+msgid "Users"
+msgstr "Lietotāji"
+
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
+msgid "Delete"
+msgstr "Izdzēst"
+
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po
index 2ec176f928..b0d8f36bed 100644
--- a/l10n/lv/user_ldap.po
+++ b/l10n/lv/user_ldap.po
@@ -7,164 +7,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-29 02:01+0200\n"
-"PO-Revision-Date: 2012-08-29 00:03+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: lv\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr ""
diff --git a/l10n/mk/core.po b/l10n/mk/core.po
index d2948b19cf..e758197590 100644
--- a/l10n/mk/core.po
+++ b/l10n/mk/core.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
@@ -20,6 +20,30 @@ msgstr ""
"Language: mk\n"
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -58,59 +82,59 @@ msgstr "Не е одбрана категорија за бришење."
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Поставки"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr ""
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr ""
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr ""
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr ""
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr ""
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr ""
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr ""
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr ""
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr ""
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr ""
@@ -140,8 +164,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Грешка"
@@ -153,7 +177,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr ""
@@ -190,70 +214,86 @@ msgstr ""
msgid "Password"
msgstr "Лозинка"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr ""
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr ""
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr ""
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr ""
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr ""
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr ""
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr ""
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "креирај"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr ""
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr ""
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr ""
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr ""
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr ""
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "ресетирање на лозинка за ownCloud"
@@ -405,87 +445,87 @@ msgstr "Сервер со база"
msgid "Finish setup"
msgstr "Заврши го подесувањето"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "Недела"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "Понеделник"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "Вторник"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "Среда"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "Четврток"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "Петок"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "Сабота"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Јануари"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Февруари"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Март"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "Април"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Мај"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Јуни"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Јули"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "Август"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "Септември"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Октомври"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "Ноември"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "Декември"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "веб сервиси под Ваша контрола"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Одјава"
diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po
index 21928cfd6f..0505c9e2d8 100644
--- a/l10n/mk/files_external.po
+++ b/l10n/mk/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 21:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:64
-msgid "Groups"
-msgstr ""
-
-#: templates/settings.php:69
-msgid "Users"
-msgstr ""
-
-#: templates/settings.php:77 templates/settings.php:107
-msgid "Delete"
-msgstr ""
-
#: templates/settings.php:87
+msgid "Groups"
+msgstr "Групи"
+
+#: templates/settings.php:95
+msgid "Users"
+msgstr "Корисници"
+
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
+msgid "Delete"
+msgstr "Избриши"
+
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po
index 126d33adf6..d1eddd1fb0 100644
--- a/l10n/mk/user_ldap.po
+++ b/l10n/mk/user_ldap.po
@@ -7,164 +7,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-29 02:01+0200\n"
-"PO-Revision-Date: 2012-08-29 00:03+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: mk\n"
-"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n"
+"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr ""
diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po
index d333a37937..8c3a71a020 100644
--- a/l10n/ms_MY/core.po
+++ b/l10n/ms_MY/core.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23:17+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"
@@ -20,6 +20,30 @@ msgstr ""
"Language: ms_MY\n"
"Plural-Forms: nplurals=1; plural=0;\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -58,59 +82,59 @@ msgstr "tiada kategori dipilih untuk penghapusan"
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Tetapan"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr ""
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr ""
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr ""
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr ""
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr ""
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr ""
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr ""
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr ""
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr ""
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr ""
@@ -140,8 +164,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Ralat"
@@ -153,7 +177,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr ""
@@ -190,70 +214,86 @@ msgstr ""
msgid "Password"
msgstr "Kata laluan"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr ""
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr ""
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr ""
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr ""
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr ""
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr ""
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr ""
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr ""
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr ""
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr ""
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr ""
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr ""
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr ""
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "Set semula kata lalaun ownCloud"
@@ -405,87 +445,87 @@ msgstr "Hos pangkalan data"
msgid "Finish setup"
msgstr "Setup selesai"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "Ahad"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "Isnin"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "Selasa"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "Rabu"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "Khamis"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "Jumaat"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "Sabtu"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Januari"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Februari"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Mac"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "April"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Mei"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Jun"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Julai"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "Ogos"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "September"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Oktober"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "November"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "Disember"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "Perkhidmatan web di bawah kawalan anda"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Log keluar"
diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po
index 42da08f27e..5e943b19f6 100644
--- a/l10n/ms_MY/files_external.po
+++ b/l10n/ms_MY/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 21:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:64
-msgid "Groups"
-msgstr ""
-
-#: templates/settings.php:69
-msgid "Users"
-msgstr ""
-
-#: templates/settings.php:77 templates/settings.php:107
-msgid "Delete"
-msgstr ""
-
#: templates/settings.php:87
+msgid "Groups"
+msgstr "Kumpulan"
+
+#: templates/settings.php:95
+msgid "Users"
+msgstr "Pengguna"
+
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
+msgid "Delete"
+msgstr "Padam"
+
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po
index e0ec285086..4509f10da6 100644
--- a/l10n/ms_MY/user_ldap.po
+++ b/l10n/ms_MY/user_ldap.po
@@ -7,164 +7,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-29 02:01+0200\n"
-"PO-Revision-Date: 2012-08-29 00:03+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ms_MY\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr ""
diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po
index 97332c4a8a..7354a7de4c 100644
--- a/l10n/nb_NO/core.po
+++ b/l10n/nb_NO/core.po
@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23: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"
@@ -23,6 +23,30 @@ msgstr ""
"Language: nb_NO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -61,59 +85,59 @@ msgstr "Ingen kategorier merket for sletting."
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Innstillinger"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr "sekunder siden"
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr "1 minutt siden"
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr "{minutes} minutter siden"
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr "i dag"
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr "i går"
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr "{days} dager siden"
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr "forrige måned"
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr "måneder siden"
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr "forrige år"
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr "år siden"
@@ -143,8 +167,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Feil"
@@ -156,7 +180,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Feil under deling"
@@ -193,70 +217,86 @@ msgstr "Passordbeskyttet"
msgid "Password"
msgstr "Passord"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Set utløpsdato"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Utløpsdato"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Del på epost"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Ingen personer funnet"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Avslutt deling"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "kan endre"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "tilgangskontroll"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "opprett"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "oppdater"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "slett"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "del"
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Passordbeskyttet"
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Kan ikke sette utløpsdato"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "Tilbakestill ownCloud passord"
@@ -408,87 +448,87 @@ msgstr "Databasevert"
msgid "Finish setup"
msgstr "Fullfør oppsetting"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "Søndag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "Mandag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "Tirsdag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "Onsdag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "Torsdag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "Fredag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "Lørdag"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Januar"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Februar"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Mars"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "April"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Mai"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Juni"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Juli"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "August"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "September"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Oktober"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "November"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "Desember"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "nettjenester under din kontroll"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Logg ut"
diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po
index 95af4ebb24..1888463488 100644
--- a/l10n/nb_NO/files_external.po
+++ b/l10n/nb_NO/files_external.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 21:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23: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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -42,66 +42,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Konfigurasjon"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Innstillinger"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Alle brukere"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Grupper"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Brukere"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Slett"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po
index 1ebfbe8b54..b415afa31a 100644
--- a/l10n/nb_NO/user_ldap.po
+++ b/l10n/nb_NO/user_ldap.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-31 00:01+0100\n"
-"PO-Revision-Date: 2012-10-30 13:08+0000\n"
-"Last-Translator: hdalgrav \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+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"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,153 +19,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Passord"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Gruppefilter"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Port"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Bruk TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "Ikke bruk for SSL tilkoblinger, dette vil ikke fungere."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "Ikke anbefalt, bruk kun for testing"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "i bytes"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "i sekunder. En endring tømmer bufferen."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Hjelp"
diff --git a/l10n/nl/core.po b/l10n/nl/core.po
index 5eeb0f021c..4dd97cac61 100644
--- a/l10n/nl/core.po
+++ b/l10n/nl/core.po
@@ -21,9 +21,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-19 00:01+0100\n"
-"PO-Revision-Date: 2012-11-18 13:25+0000\n"
-"Last-Translator: Len \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23:17+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,6 +31,30 @@ msgstr ""
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr "Categorie type niet opgegeven."
@@ -151,8 +175,8 @@ msgid "The object type is not specified."
msgstr "Het object type is niet gespecificeerd."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:527
-#: js/share.js:539
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Fout"
@@ -164,7 +188,7 @@ msgstr "De app naam is niet gespecificeerd."
msgid "The required file {file} is not installed!"
msgstr "Het vereiste bestand {file} is niet geïnstalleerd!"
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Fout tijdens het delen"
@@ -201,70 +225,86 @@ msgstr "Wachtwoord beveiliging"
msgid "Password"
msgstr "Wachtwoord"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Stel vervaldatum in"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Vervaldatum"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Deel via email:"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Geen mensen gevonden"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "Verder delen is niet toegestaan"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr "Gedeeld in {item} met {user}"
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Stop met delen"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "kan wijzigen"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "toegangscontrole"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "maak"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "bijwerken"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "verwijderen"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "deel"
-#: js/share.js:343 js/share.js:514 js/share.js:516
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Wachtwoord beveiligd"
-#: js/share.js:527
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Fout tijdens het verwijderen van de verval datum"
-#: js/share.js:539
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Fout tijdens het instellen van de vervaldatum"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "ownCloud wachtwoord herstellen"
diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po
index 98f19c36b8..dcc92f2a2c 100644
--- a/l10n/nl/files_external.po
+++ b/l10n/nl/files_external.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-28 00:01+0200\n"
-"PO-Revision-Date: 2012-10-27 09:42+0000\n"
-"Last-Translator: Richard Bos \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:22+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -42,66 +42,80 @@ msgstr "Geef een geldige Dropbox key en secret."
msgid "Error configuring Google Drive storage"
msgstr "Fout tijdens het configureren van Google Drive opslag"
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr "Externe opslag"
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr "Aankoppelpunt"
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr "Backend"
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr "Configuratie"
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr "Opties"
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr "Van toepassing"
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr "Aankoppelpunt toevoegen"
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr "Niets ingesteld"
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr "Alle gebruikers"
-#: templates/settings.php:64
+#: templates/settings.php:87
msgid "Groups"
msgstr "Groepen"
-#: templates/settings.php:69
+#: templates/settings.php:95
msgid "Users"
msgstr "Gebruikers"
-#: templates/settings.php:77 templates/settings.php:107
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "Verwijder"
-#: templates/settings.php:87
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr "Externe opslag voor gebruikers activeren"
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr "Sta gebruikers toe om hun eigen externe opslag aan te koppelen"
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr "SSL root certificaten"
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr "Importeer root certificaat"
diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po
index e6819a7693..a608c7edde 100644
--- a/l10n/nl/user_ldap.po
+++ b/l10n/nl/user_ldap.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-11-13 00:05+0100\n"
-"PO-Revision-Date: 2012-11-12 09:35+0000\n"
-"Last-Translator: Len \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,153 +19,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr "Host"
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Je kunt het protocol weglaten, tenzij je SSL vereist. Start in dat geval met ldaps://"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr "Basis DN"
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Je kunt het standaard DN voor gebruikers en groepen specificeren in het tab Geavanceerd."
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr "Gebruikers DN"
-#: templates/settings.php:10
+#: templates/settings.php:17
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 "De DN van de client gebruiker waarmee de verbinding zal worden gemaakt, bijv. uid=agent,dc=example,dc=com. Voor anonieme toegang laat je het DN en het wachtwoord leeg."
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "Password"
msgstr "Wachtwoord"
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr "Voor anonieme toegang, laat de DN en het wachtwoord leeg."
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr "Gebruikers Login Filter"
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr "Definiëerd de toe te passen filter indien er geprobeerd wordt in te loggen. %%uid vervangt de gebruikersnaam in de login actie."
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "gebruik %%uid placeholder, bijv. \"uid=%%uid\""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr "Gebruikers Lijst Filter"
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr "Definiëerd de toe te passen filter voor het ophalen van gebruikers."
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "zonder een placeholder, bijv. \"objectClass=person\""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr "Groep Filter"
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr "Definiëerd de toe te passen filter voor het ophalen van groepen."
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "zonder een placeholder, bijv. \"objectClass=posixGroup\""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr "Poort"
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr "Basis Gebruikers Structuur"
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Basis Groupen Structuur"
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Groepslid associatie"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr "Gebruik TLS"
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr "Gebruik niet voor SSL connecties, deze mislukken."
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr "Niet-hoofdlettergevoelige LDAP server (Windows)"
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr "Schakel SSL certificaat validatie uit."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr "Als de connectie alleen werkt met deze optie, importeer dan het LDAP server SSL certificaat naar je ownCloud server."
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr "Niet aangeraden, gebruik alleen voor test doeleinden."
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr "Gebruikers Schermnaam Veld"
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "Het te gebruiken LDAP attribuut voor het genereren van de ownCloud naam voor de gebruikers."
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr "Groep Schermnaam Veld"
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "Het te gebruiken LDAP attribuut voor het genereren van de ownCloud naam voor de groepen."
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr "in bytes"
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr "in seconden. Een verandering maakt de cache leeg."
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr "Laat leeg voor de gebruikersnaam (standaard). Of, specificeer een LDAP/AD attribuut."
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr "Help"
diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po
index 9102a6e6a3..dad899207e 100644
--- a/l10n/nn_NO/core.po
+++ b/l10n/nn_NO/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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23:17+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n"
"MIME-Version: 1.0\n"
@@ -19,6 +19,30 @@ msgstr ""
"Language: nn_NO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -57,59 +81,59 @@ msgstr ""
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Innstillingar"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr ""
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr ""
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr ""
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr ""
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr ""
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr ""
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr ""
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr ""
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr ""
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr ""
@@ -139,8 +163,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Feil"
@@ -152,7 +176,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr ""
@@ -189,70 +213,86 @@ msgstr ""
msgid "Password"
msgstr "Passord"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr ""
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr ""
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr ""
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr ""
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr ""
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr ""
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr ""
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr ""
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr ""
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr ""
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr ""
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr ""
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr ""
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr ""
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr ""
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr ""
@@ -404,87 +444,87 @@ msgstr "Databasetenar"
msgid "Finish setup"
msgstr "Fullfør oppsettet"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "Søndag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "Måndag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "Tysdag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "Onsdag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "Torsdag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "Fredag"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "Laurdag"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Januar"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Februar"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Mars"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "April"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Mai"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Juni"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Juli"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "August"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "September"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Oktober"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "November"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "Desember"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "Vev tjenester under din kontroll"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Logg ut"
diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po
index ec4986c92e..eb83e9d2a1 100644
--- a/l10n/nn_NO/files_external.po
+++ b/l10n/nn_NO/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 21:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:22+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:64
-msgid "Groups"
-msgstr ""
-
-#: templates/settings.php:69
-msgid "Users"
-msgstr ""
-
-#: templates/settings.php:77 templates/settings.php:107
-msgid "Delete"
-msgstr ""
-
#: templates/settings.php:87
+msgid "Groups"
+msgstr "Grupper"
+
+#: templates/settings.php:95
+msgid "Users"
+msgstr "Brukarar"
+
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
+msgid "Delete"
+msgstr "Slett"
+
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po
index 2d5b008d92..7f064cb1e2 100644
--- a/l10n/nn_NO/user_ldap.po
+++ b/l10n/nn_NO/user_ldap.po
@@ -7,164 +7,177 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-08-29 02:01+0200\n"
-"PO-Revision-Date: 2012-08-29 00:03+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: nn_NO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8
+msgid ""
+"Warning: Apps user_ldap and user_webdavauth are incompatible. You may"
+" experience unexpected behaviour. Please ask your system administrator to "
+"disable one of them."
+msgstr ""
+
+#: templates/settings.php:11
+msgid ""
+"Warning: The PHP LDAP module needs is not installed, the backend will"
+" not work. Please ask your system administrator to install it."
+msgstr ""
+
+#: templates/settings.php:15
msgid "Host"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:15
msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "Base DN"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
msgid "User DN"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:17
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:11
+#: templates/settings.php:18
msgid "Password"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
msgid "User Login Filter"
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action."
msgstr ""
-#: templates/settings.php:12
+#: templates/settings.php:19
#, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "User List Filter"
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users."
msgstr ""
-#: templates/settings.php:13
+#: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Group Filter"
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups."
msgstr ""
-#: templates/settings.php:14
+#: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr ""
-#: templates/settings.php:17
+#: templates/settings.php:24
msgid "Port"
msgstr ""
-#: templates/settings.php:18
+#: templates/settings.php:25
msgid "Base User Tree"
msgstr ""
-#: templates/settings.php:19
+#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
-#: templates/settings.php:20
+#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Use TLS"
msgstr ""
-#: templates/settings.php:21
+#: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail."
msgstr ""
-#: templates/settings.php:22
+#: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Turn off SSL certificate validation."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid ""
"If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server."
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:30
msgid "Not recommended, use for testing only."
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "User Display Name Field"
msgstr ""
-#: templates/settings.php:24
+#: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "Group Display Name Field"
msgstr ""
-#: templates/settings.php:25
+#: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr ""
-#: templates/settings.php:27
+#: templates/settings.php:34
msgid "in bytes"
msgstr ""
-#: templates/settings.php:29
+#: templates/settings.php:36
msgid "in seconds. A change empties the cache."
msgstr ""
-#: templates/settings.php:30
+#: templates/settings.php:37
msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute."
msgstr ""
-#: templates/settings.php:32
+#: templates/settings.php:39
msgid "Help"
msgstr ""
diff --git a/l10n/oc/core.po b/l10n/oc/core.po
index 47c795e20b..696e6808a5 100644
--- a/l10n/oc/core.po
+++ b/l10n/oc/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: 2012-11-16 00:02+0100\n"
-"PO-Revision-Date: 2012-11-14 23:13+0000\n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-12 23:17+0000\n"
"Last-Translator: I Robot \n"
"Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n"
"MIME-Version: 1.0\n"
@@ -18,6 +18,30 @@ msgstr ""
"Language: oc\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+#: ajax/share.php:84
+#, php-format
+msgid "User %s shared a file with you"
+msgstr ""
+
+#: ajax/share.php:86
+#, php-format
+msgid "User %s shared a folder with you"
+msgstr ""
+
+#: ajax/share.php:88
+#, php-format
+msgid ""
+"User %s shared the file \"%s\" with you. It is available for download here: "
+"%s"
+msgstr ""
+
+#: ajax/share.php:90
+#, php-format
+msgid ""
+"User %s shared the folder \"%s\" with you. It is available for download "
+"here: %s"
+msgstr ""
+
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided."
msgstr ""
@@ -56,59 +80,59 @@ msgstr "Pas de categorias seleccionadas per escafar."
msgid "Error removing %s from favorites."
msgstr ""
-#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60
+#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
msgstr "Configuracion"
-#: js/js.js:688
+#: js/js.js:704
msgid "seconds ago"
msgstr "segonda a"
-#: js/js.js:689
+#: js/js.js:705
msgid "1 minute ago"
msgstr "1 minuta a"
-#: js/js.js:690
+#: js/js.js:706
msgid "{minutes} minutes ago"
msgstr ""
-#: js/js.js:691
+#: js/js.js:707
msgid "1 hour ago"
msgstr ""
-#: js/js.js:692
+#: js/js.js:708
msgid "{hours} hours ago"
msgstr ""
-#: js/js.js:693
+#: js/js.js:709
msgid "today"
msgstr "uèi"
-#: js/js.js:694
+#: js/js.js:710
msgid "yesterday"
msgstr "ièr"
-#: js/js.js:695
+#: js/js.js:711
msgid "{days} days ago"
msgstr ""
-#: js/js.js:696
+#: js/js.js:712
msgid "last month"
msgstr "mes passat"
-#: js/js.js:697
+#: js/js.js:713
msgid "{months} months ago"
msgstr ""
-#: js/js.js:698
+#: js/js.js:714
msgid "months ago"
msgstr "meses a"
-#: js/js.js:699
+#: js/js.js:715
msgid "last year"
msgstr "an passat"
-#: js/js.js:700
+#: js/js.js:716
msgid "years ago"
msgstr "ans a"
@@ -138,8 +162,8 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
-#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525
-#: js/share.js:537
+#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
+#: js/share.js:553
msgid "Error"
msgstr "Error"
@@ -151,7 +175,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
-#: js/share.js:124
+#: js/share.js:124 js/share.js:581
msgid "Error while sharing"
msgstr "Error al partejar"
@@ -188,70 +212,86 @@ msgstr "Parat per senhal"
msgid "Password"
msgstr "Senhal"
+#: js/share.js:172
+msgid "Email link to person"
+msgstr ""
+
#: js/share.js:173
+msgid "Send"
+msgstr ""
+
+#: js/share.js:177
msgid "Set expiration date"
msgstr "Met la data d'expiracion"
-#: js/share.js:174
+#: js/share.js:178
msgid "Expiration date"
msgstr "Data d'expiracion"
-#: js/share.js:206
+#: js/share.js:210
msgid "Share via email:"
msgstr "Parteja tras corrièl :"
-#: js/share.js:208
+#: js/share.js:212
msgid "No people found"
msgstr "Deguns trobat"
-#: js/share.js:235
+#: js/share.js:239
msgid "Resharing is not allowed"
msgstr "Tornar partejar es pas permis"
-#: js/share.js:271
+#: js/share.js:275
msgid "Shared in {item} with {user}"
msgstr ""
-#: js/share.js:292
+#: js/share.js:296
msgid "Unshare"
msgstr "Non parteje"
-#: js/share.js:304
+#: js/share.js:308
msgid "can edit"
msgstr "pòt modificar"
-#: js/share.js:306
+#: js/share.js:310
msgid "access control"
msgstr "Contraròtle d'acces"
-#: js/share.js:309
+#: js/share.js:313
msgid "create"
msgstr "crea"
-#: js/share.js:312
+#: js/share.js:316
msgid "update"
msgstr "met a jorn"
-#: js/share.js:315
+#: js/share.js:319
msgid "delete"
msgstr "escafa"
-#: js/share.js:318
+#: js/share.js:322
msgid "share"
msgstr "parteja"
-#: js/share.js:343 js/share.js:512 js/share.js:514
+#: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected"
msgstr "Parat per senhal"
-#: js/share.js:525
+#: js/share.js:541
msgid "Error unsetting expiration date"
msgstr "Error al metre de la data d'expiracion"
-#: js/share.js:537
+#: js/share.js:553
msgid "Error setting expiration date"
msgstr "Error setting expiration date"
+#: js/share.js:568
+msgid "Sending ..."
+msgstr ""
+
+#: js/share.js:579
+msgid "Email sent"
+msgstr ""
+
#: lostpassword/controller.php:47
msgid "ownCloud password reset"
msgstr "senhal d'ownCloud tornat botar"
@@ -403,87 +443,87 @@ msgstr "Òste de basa de donadas"
msgid "Finish setup"
msgstr "Configuracion acabada"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "Dimenge"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "Diluns"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "Dimarç"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "Dimecres"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "Dijòus"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "Divendres"
-#: templates/layout.guest.php:15 templates/layout.user.php:16
+#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "Dissabte"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Genièr"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Febrièr"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Març"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "Abril"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Mai"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Junh"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Julhet"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "Agost"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "Septembre"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Octobre"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "Novembre"
-#: templates/layout.guest.php:16 templates/layout.user.php:17
+#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "Decembre"
-#: templates/layout.guest.php:41
+#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr "Services web jos ton contraròtle"
-#: templates/layout.user.php:44
+#: templates/layout.user.php:45
msgid "Log out"
msgstr "Sortida"
diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po
index 926c07eac6..fcf2b75be3 100644
--- a/l10n/oc/files_external.po
+++ b/l10n/oc/files_external.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-10-02 23:16+0200\n"
-"PO-Revision-Date: 2012-10-02 21:17+0000\n"
-"Last-Translator: I Robot \n"
+"POT-Creation-Date: 2012-12-13 00:17+0100\n"
+"PO-Revision-Date: 2012-12-11 23:22+0000\n"
+"Last-Translator: I Robot \n"
"Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage"
msgstr ""
+#: lib/config.php:434
+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:435
+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 ""
+
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
-#: templates/settings.php:7 templates/settings.php:19
+#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
msgstr ""
-#: templates/settings.php:8
+#: templates/settings.php:9
msgid "Backend"
msgstr ""
-#: templates/settings.php:9
+#: templates/settings.php:10
msgid "Configuration"
msgstr ""
-#: templates/settings.php:10
+#: templates/settings.php:11
msgid "Options"
msgstr ""
-#: templates/settings.php:11
+#: templates/settings.php:12
msgid "Applicable"
msgstr ""
-#: templates/settings.php:23
+#: templates/settings.php:27
msgid "Add mount point"
msgstr ""
-#: templates/settings.php:54 templates/settings.php:62
+#: templates/settings.php:85
msgid "None set"
msgstr ""
-#: templates/settings.php:63
+#: templates/settings.php:86
msgid "All Users"
msgstr ""
-#: templates/settings.php:64
-msgid "Groups"
-msgstr ""
-
-#: templates/settings.php:69
-msgid "Users"
-msgstr ""
-
-#: templates/settings.php:77 templates/settings.php:107
-msgid "Delete"
-msgstr ""
-
#: templates/settings.php:87
+msgid "Groups"
+msgstr "Grops"
+
+#: templates/settings.php:95
+msgid "Users"
+msgstr "Usancièrs"
+
+#: templates/settings.php:108 templates/settings.php:109
+#: templates/settings.php:149 templates/settings.php:150
+msgid "Delete"
+msgstr "Escafa"
+
+#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
-#: templates/settings.php:88
+#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
-#: templates/settings.php:99
+#: templates/settings.php:139
msgid "SSL root certificates"
msgstr ""
-#: templates/settings.php:113
+#: templates/settings.php:158
msgid "Import Root Certificate"
msgstr ""
diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po
index e4321202c2..29bd7864d7 100644
--- a/l10n/oc/user_ldap.po
+++ b/l10n/oc/user_ldap.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
-"POT-Creation-Date: 2012-09-08 02:02+0200\n"
-"PO-Revision-Date: 2012-08-12 22:45+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2012-12-15 00:11+0100\n"
+"PO-Revision-Date: 2012-12-14 23:11+0000\n"
+"Last-Translator: I Robot