aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorflop25 <flop25@piwigo.org>2013-10-24 17:55:00 +0000
committerflop25 <flop25@piwigo.org>2013-10-24 17:55:00 +0000
commitcd76660cf614089238dda022d938ae625db18cfe (patch)
tree00ec295b1811dcda1d3cc532dd4491a3efee1581
parent703c5f98393b46026b8f3cbe94171e87ea85f452 (diff)
bug:2948 The registration can be done without typing a password
The password is only mandatory on the public register page Better error messages from admin/user_list.php git-svn-id: http://piwigo.org/svn/trunk@25121 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--admin/user_list.php4
-rw-r--r--language/af_ZA/common.lang.php3
-rw-r--r--language/ar_SA/common.lang.php3
-rw-r--r--language/bg_BG/common.lang.php3
-rw-r--r--language/br_FR/common.lang.php1
-rw-r--r--language/ca_ES/common.lang.php3
-rw-r--r--language/cs_CZ/common.lang.php3
-rw-r--r--language/da_DK/common.lang.php3
-rw-r--r--language/de_DE/common.lang.php3
-rw-r--r--language/el_GR/common.lang.php3
-rw-r--r--language/en_UK/common.lang.php3
-rw-r--r--language/en_US/common.lang.php3
-rw-r--r--language/eo_EO/common.lang.php3
-rw-r--r--language/es_AR/common.lang.php1
-rw-r--r--language/es_ES/common.lang.php3
-rw-r--r--language/et_EE/common.lang.php3
-rw-r--r--language/fa_IR/common.lang.php3
-rw-r--r--language/fi_FI/common.lang.php1
-rw-r--r--language/fr_CA/common.lang.php4
-rw-r--r--language/fr_FR/common.lang.php3
-rw-r--r--language/gl_ES/common.lang.php3
-rw-r--r--language/he_IL/common.lang.php3
-rw-r--r--language/hr_HR/common.lang.php3
-rw-r--r--language/hu_HU/common.lang.php3
-rw-r--r--language/id_ID/common.lang.php1
-rw-r--r--language/is_IS/common.lang.php1
-rw-r--r--language/it_IT/common.lang.php3
-rw-r--r--language/ja_JP/common.lang.php3
-rw-r--r--language/ka_GE/common.lang.php3
-rw-r--r--language/km_KH/common.lang.php1
-rw-r--r--language/kn_IN/common.lang.php1
-rw-r--r--language/ko_KR/common.lang.php1
-rw-r--r--language/lt_LT/common.lang.php4
-rw-r--r--language/lv_LV/common.lang.php2
-rw-r--r--language/mk_MK/common.lang.php1
-rw-r--r--language/mn_MN/common.lang.php2
-rw-r--r--language/nb_NO/common.lang.php3
-rw-r--r--language/nl_NL/common.lang.php3
-rw-r--r--language/nn_NO/common.lang.php3
-rw-r--r--language/pl_PL/common.lang.php3
-rw-r--r--language/pt_BR/common.lang.php3
-rw-r--r--language/pt_PT/common.lang.php3
-rw-r--r--language/ro_RO/common.lang.php3
-rw-r--r--language/ru_RU/common.lang.php3
-rw-r--r--language/sh_RS/common.lang.php3
-rw-r--r--language/sk_SK/common.lang.php3
-rw-r--r--language/sl_SI/common.lang.php3
-rw-r--r--language/sr_RS/common.lang.php3
-rw-r--r--language/sv_SE/common.lang.php3
-rw-r--r--language/ta_IN/common.lang.php1
-rw-r--r--language/th_TH/common.lang.php3
-rw-r--r--language/tr_TR/common.lang.php3
-rw-r--r--language/uk_UA/common.lang.php3
-rw-r--r--language/vi_VN/common.lang.php3
-rw-r--r--language/zh_CN/common.lang.php3
-rw-r--r--language/zh_HK/common.lang.php1
-rw-r--r--language/zh_TW/common.lang.php3
-rw-r--r--register.php12
58 files changed, 99 insertions, 63 deletions
diff --git a/admin/user_list.php b/admin/user_list.php
index dd43b0d62..57387f6b1 100644
--- a/admin/user_list.php
+++ b/admin/user_list.php
@@ -194,10 +194,6 @@ if ($conf['double_password_type_in_admin'] == true)
{
$page['errors'][] = l10n('Password confirmation is missing. Please confirm the chosen password.');
}
- else if(empty($_POST['email']))
- {
- $page['errors'][] = l10n('Email address is missing. Please specify an email address.');
- }
else if ($_POST['password'] != $_POST['password_conf'])
{
$page['errors'][] = l10n('The passwords do not match');
diff --git a/language/af_ZA/common.lang.php b/language/af_ZA/common.lang.php
index 483ccb25c..b1b0d3606 100644
--- a/language/af_ZA/common.lang.php
+++ b/language/af_ZA/common.lang.php
@@ -290,7 +290,6 @@ $lang['login mustn\'t end with a space character'] = "Aanteken naam mag nie op '
$lang['login mustn\'t start with a space character'] = "Aanteken naam kan nie met 'n spasie begin nie";
$lang['this login is already used'] = "die aanteken naam is reeds in gebruik";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "epos adres moet wees soos xxx@yyy.ee.ee (voorbeeld : koos@vlooi.co.za)";
-$lang['please enter your password again'] = "Sleutel jou wagwoord weer in";
$lang['Auto login'] = 'Automatiese aanteken';
$lang['Contact'] = "Kontak";
$lang['set as album representative'] = "Stel as album verteenwoordiger";
@@ -416,4 +415,6 @@ $lang['Email'] = 'Epos';
$lang['First Page'] = 'Eerste blad';
$lang['Go back to the album'] = 'Gaan terug na die album';
$lang['Last Page'] = 'Laaste blad';
+$lang['Password is missing. Please enter the password.'] = 'Wagwoord nie ingevul nie. Vul asseblief die wagwoord in.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Wagwoord bevestiging nie gedoen. Bevestig asseblief die gekose wagwoord.';
?> \ No newline at end of file
diff --git a/language/ar_SA/common.lang.php b/language/ar_SA/common.lang.php
index 7879a96ae..d88085451 100644
--- a/language/ar_SA/common.lang.php
+++ b/language/ar_SA/common.lang.php
@@ -247,7 +247,6 @@ $lang['this login is already used'] = 'this login is already used';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'mail address must be like xxx@yyy.eee (example : jack@altern.org)';
$lang['this login is already used'] = 'هذا المستخدم موجود حاليا';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'يجب ان يكون البريد بهذه الكيفيةxxx@yyy.eee (مثلا : jack@altern.org)';
-$lang['please enter your password again'] = 'من فضلك أعد كتابة كلمة المرور مرة أخرى';
$lang['Auto login'] = 'دخول آلي';
$lang['remove this tag from the list'] = 'حذف هذه الكلمات من القائمة';
$lang['representative'] = 'صفه /نموذجي';
@@ -423,4 +422,6 @@ $lang['Email'] = 'البريد الإلكتروني';
$lang['First Page'] = 'الصفحة الأولى';
$lang['Go back to the album'] = 'إرجع للألبوم';
$lang['Last Page'] = 'الصفحة الأخيرة';
+$lang['Password is missing. Please enter the password.'] = 'لم تكتب كلمة المرور، فضلا ً أكتب كلمة المرور';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'لم يتم تأكيد كلمة المرور، فضلا ً لا أمر أكد المرور رحم الله والديك';
?> \ No newline at end of file
diff --git a/language/bg_BG/common.lang.php b/language/bg_BG/common.lang.php
index 3a25a43ff..05eb39dfe 100644
--- a/language/bg_BG/common.lang.php
+++ b/language/bg_BG/common.lang.php
@@ -296,7 +296,6 @@ $lang['login mustn\'t end with a space character'] = 'потребителско
$lang['login mustn\'t start with a space character'] = 'потребителското име неможе да започва с интервал';
$lang['this login is already used'] = 'потребителското име е заето';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'мейл адресът трябва да бъде подобно на xxx@yyy.eee (пример : jack@altern.org)';
-$lang['please enter your password again'] = 'моля въведете Вашата парола отново';
$lang['Auto login'] = 'Автоматично влизане';
$lang['remove this tag from the list'] = 'премахване на този маркер от списъка';
$lang['representative'] = 'представител';
@@ -417,4 +416,6 @@ $lang['Email'] = 'Имейл';
$lang['First Page'] = 'Първа страница';
$lang['Go back to the album'] = 'Връщане обратно към албума';
$lang['Last Page'] = 'Последна страница';
+$lang['Password is missing. Please enter the password.'] = 'Липсва парола. Моля въведете.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Потвърждение на паролата липсва. Моля повторете паролата.';
?> \ No newline at end of file
diff --git a/language/br_FR/common.lang.php b/language/br_FR/common.lang.php
index 203ea1841..a365d3d12 100644
--- a/language/br_FR/common.lang.php
+++ b/language/br_FR/common.lang.php
@@ -187,7 +187,6 @@ $lang['Permalink for album not found'] = 'N\'eo ket bet kavet peurliamm ar rumma
$lang['Recent albums'] = 'Rummadoù a-nevez';
$lang['Expand all albums'] = 'Displegañ an holl rummadoù';
$lang['Please, enter a login'] = 'Lakait un anv implijer';
-$lang['please enter your password again'] = 'Lakait ho ger-tremen adarre';
$lang['Enter your personnal informations'] = 'Lakait ho titouroù personel';
$lang['This author removed the comment with id %d'] = 'An oberour-mañ en deus dilemet an evezhiadenn gant an anavezer %d';
$lang['author(s) : %s'] = 'oberour(ien) : %s';
diff --git a/language/ca_ES/common.lang.php b/language/ca_ES/common.lang.php
index a042e689c..3dd61da3a 100644
--- a/language/ca_ES/common.lang.php
+++ b/language/ca_ES/common.lang.php
@@ -240,7 +240,6 @@ $lang['login mustn\'t end with a space character'] = 'el nom d\'usuari no pot ac
$lang['login mustn\'t start with a space character'] = 'el nom d\'usuari no pot començar amb el caràcter \'espai\'';
$lang['this login is already used'] = 'aquest nom d\'usuari ja s\'està utilitzant';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'L\'adreça de correu ha de ser com xxx@yyy.eee (exemple: jack@altern.org)';
-$lang['please enter your password again'] = 'si us plau, introdueixi la seva contrasenya una altra vegada';
$lang['Auto login'] = 'Recordar';
$lang['remove this tag from the list'] = 'elimineu aquesta etiqueta de la llista';
$lang['representative'] = 'miniatura de l\'àlbum';
@@ -416,4 +415,6 @@ $lang['Email'] = 'Correu elecrònic';
$lang['First Page'] = 'Primera pàgina';
$lang['Go back to the album'] = 'Tornar a l\'àlbum';
$lang['Last Page'] = 'Última pàgina';
+$lang['Password is missing. Please enter the password.'] = 'Falta la clau d\'accès. Si us plau, introdueix-la.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Falta confirmar la contrasenya. Si us plau, confirmeu la contrasenya escollida.';
?> \ No newline at end of file
diff --git a/language/cs_CZ/common.lang.php b/language/cs_CZ/common.lang.php
index d525e5a9f..cc8c80840 100644
--- a/language/cs_CZ/common.lang.php
+++ b/language/cs_CZ/common.lang.php
@@ -249,7 +249,6 @@ $lang['login mustn\'t end with a space character'] = 'uživatelské jméno nesm
$lang['login mustn\'t start with a space character'] = 'uživatelské jméno nesmí začínat mezerou';
$lang['this login is already used'] = 'tyto přihlašovací údaje už jsou používány';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'E-mail musí být ve formátu xxx@yyy.eee (například : novak@seznam.cz)';
-$lang['please enter your password again'] = 'prosím zadejte znovu heslo ';
$lang['Auto login'] = 'Automatické přihlášení';
$lang['remove this tag from the list'] = 'odstranit tento štítek ze seznamu';
$lang['representative'] = 'Reprezentant';
@@ -423,4 +422,6 @@ $lang['Last Page'] = 'Poslední stránka';
$lang['Go back to the album'] = 'Zpět do alba';
$lang['First Page'] = 'První stránka';
$lang['Email'] = 'E-mail';
+$lang['Password is missing. Please enter the password.'] = 'Chybí heslo. Prosím napište heslo.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Chybí potvrzení hesla. Prosím potvrďte vybrané heslo.';
?> \ No newline at end of file
diff --git a/language/da_DK/common.lang.php b/language/da_DK/common.lang.php
index cf75b5ba9..d93c05161 100644
--- a/language/da_DK/common.lang.php
+++ b/language/da_DK/common.lang.php
@@ -245,7 +245,6 @@ $lang['login mustn\'t end with a space character'] = 'login må ikke slutte med
$lang['login mustn\'t start with a space character'] = 'login må ikke begynde med mellemrum';
$lang['this login is already used'] = 'dette login er allerede i brug';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'mailadresse skal være på formen xxx@yyy.eee (eksempel: jack@altern.org)';
-$lang['please enter your password again'] = 'Indtast din adgangskode igen';
$lang['Auto login'] = 'Autologin';
$lang['remove this tag from the list'] = 'fjern dette tag fra listen';
$lang['representative'] = 'albums miniaturebillede';
@@ -419,4 +418,6 @@ $lang['Email'] = 'E-mail';
$lang['First Page'] = 'Første side';
$lang['Go back to the album'] = 'Gå tilbage til albummet';
$lang['Last Page'] = 'Sidste side';
+$lang['Password is missing. Please enter the password.'] = 'Adgangskoden mangler. Indtast adgangskoden.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Adgangskodebekræftelse mangler. Bekræft den valgte adgangskode.';
?> \ No newline at end of file
diff --git a/language/de_DE/common.lang.php b/language/de_DE/common.lang.php
index 4415b5c2d..d3284ac73 100644
--- a/language/de_DE/common.lang.php
+++ b/language/de_DE/common.lang.php
@@ -243,7 +243,6 @@ $lang['login mustn\'t end with a space character'] = 'Benutzername darf nicht mi
$lang['login mustn\'t start with a space character'] = 'Benutzername darf nicht mit einem Leerzeichen anfangen';
$lang['this login is already used'] = 'Dieser Benutzername ist bereits vergeben';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'E-Mail-Adresse muss dem Muster xxx@yyy.eee (Beispiel: jack@altern.org) entsprechen';
-$lang['please enter your password again'] = 'Bitte geben Sie erneut Ihr Passwort ein.';
$lang['Auto login'] = 'Auto-Login';
$lang['remove this tag from the list'] = 'Entferne dieses Schlagwort von der Liste.';
$lang['representative'] = 'Album-Vorschaubild';
@@ -417,4 +416,6 @@ $lang['Email'] = 'E-Mail';
$lang['First Page'] = 'Erste Seite';
$lang['Go back to the album'] = 'Zurück zum Album';
$lang['Last Page'] = 'Letzte Seite';
+$lang['Password is missing. Please enter the password.'] = 'Das Kennwort fehlt. Bitte geben Sie Ihr Kennwort ein.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Das Kennwort zum Überprüfen fehlt. Bitte geben Sie ihr gewähltes Kennwort noch einmal ein.';
?> \ No newline at end of file
diff --git a/language/el_GR/common.lang.php b/language/el_GR/common.lang.php
index a396f375c..8305c4f52 100644
--- a/language/el_GR/common.lang.php
+++ b/language/el_GR/common.lang.php
@@ -100,7 +100,6 @@ $lang['login mustn\'t end with a space character'] = "το όνομα χρήστ
$lang['login mustn\'t start with a space character'] = "το όνομα χρήστη δεν πρέπει να ξεκινάει με κενό";
$lang['this login is already used'] = "αυτό το όνομα χρήστη χρησιμοποιείται ήδη";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "η διεύθυνση ηλεκτρονικού ταχυδρομείου πρέπει να είναι της μορφής xxx@yyy.eee (παράδειγμα: jack@altern.org)";
-$lang['please enter your password again'] = "παρακαλώ εισάγετε το κωδικό σας ξανά";
$lang['Auto login'] = "Αυτόματη σύνδεση";
$lang['remove this tag from the list'] = "αφαίρεση ετικέτας από τη λίστα";
$lang['representative'] = "αντιπροσωπευτική";
@@ -417,4 +416,6 @@ $lang['Email'] = 'Email';
$lang['Last Page'] = 'Τελευταία Σελίδα';
$lang['Go back to the album'] = 'Επιστροφή Στο Λεύκωμα';
$lang['First Page'] = 'Αρχική Σελίδα';
+$lang['Password is missing. Please enter the password.'] = 'Κωδικός λείπει. Παρακαλώ εισάγετε τον κωδικό πρόσβασης.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Η επιβεβαίωση κωδικού λείπει. Επιβεβαιώστε τον επιλεγμένο κωδικό πρόσβασης';
?> \ No newline at end of file
diff --git a/language/en_UK/common.lang.php b/language/en_UK/common.lang.php
index 79b01987a..ed1e1e1aa 100644
--- a/language/en_UK/common.lang.php
+++ b/language/en_UK/common.lang.php
@@ -281,7 +281,6 @@ $lang['Photos posted within the last %d days.'] = "Photos posted within the last
$lang['Piwigo encountered a non recoverable error'] = 'Piwigo encountered an unrecoverable error';
$lang['Piwigo Help'] = "Piwigo help";
$lang['Play of slideshow'] = "Play slideshow";
-$lang['please enter your password again'] = "please enter your password again";
$lang['Please enter your username or email address.'] = 'Please enter your username or email address.';
$lang['Please, enter a login'] = "Please, enter a login";
$lang['Post date'] = "Post date";
@@ -416,4 +415,6 @@ $lang['Your username has been successfully changed to : %s'] = 'Your username ha
$lang['Your website URL is invalid'] = 'Your website URL is invalid';
$lang['mandatory'] = 'mandatory';
$lang['Email'] = "Email";
+$lang['Password is missing. Please enter the password.'] = "Password is missing. Please enter the password.";
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = "Password confirmation is missing. Please confirm the chosen password.";
?> \ No newline at end of file
diff --git a/language/en_US/common.lang.php b/language/en_US/common.lang.php
index a748d3492..a135c0312 100644
--- a/language/en_US/common.lang.php
+++ b/language/en_US/common.lang.php
@@ -281,7 +281,6 @@ $lang['Photos posted within the last %d days.'] = "Photos posted within the last
$lang['Piwigo encountered a non recoverable error'] = 'Piwigo encountered an unrecoverable error';
$lang['Piwigo Help'] = "Piwigo help";
$lang['Play of slideshow'] = "Play slideshow";
-$lang['please enter your password again'] = "please enter your password again";
$lang['Please enter your username or email address.'] = 'Please enter your username or email address.';
$lang['Please, enter a login'] = "Please, enter a login";
$lang['Post date'] = "Post date";
@@ -416,4 +415,6 @@ $lang['Your username has been successfully changed to : %s'] = 'Your username ha
$lang['Your website URL is invalid'] = 'Your website URL is invalid';
$lang['mandatory'] = 'mandatory';
$lang['Email'] = "Email";
+$lang['Password is missing. Please enter the password.'] = "Password is missing. Please enter the password.";
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = "Password confirmation is missing. Please confirm the chosen password.";
?> \ No newline at end of file
diff --git a/language/eo_EO/common.lang.php b/language/eo_EO/common.lang.php
index 4f6c9bdcc..6deca4d70 100644
--- a/language/eo_EO/common.lang.php
+++ b/language/eo_EO/common.lang.php
@@ -240,7 +240,6 @@ $lang['login mustn\'t end with a space character'] = 'Uzantnomo ne finiĝu per s
$lang['login mustn\'t start with a space character'] = 'Uzantnomo ne komenciĝu per spaceto';
$lang['this login is already used'] = 'Tiu uzantnomo jam uziĝas';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'La retadreso devas simili al xxx@yyy.eee (ekzemple: zamenhof@bialistoko.pl)';
-$lang['please enter your password again'] = 'Bonvolu tajpi vian pasvorton denove (aŭ kopi-gluu ĝin)';
$lang['Auto login'] = 'Aŭtomata konekto';
$lang['remove this tag from the list'] = 'forigi tiun etikedon de la listo';
$lang['representative'] = 'delegito';
@@ -418,4 +417,6 @@ $lang['Email'] = 'Retmesaĝo';
$lang['First Page'] = 'Unua paĝo';
$lang['Go back to the album'] = 'Reiri al la fotaro';
$lang['Last Page'] = 'Lasta paĝo';
+$lang['Password is missing. Please enter the password.'] = 'Mankas pasvorto. Bonvolu redakti la pasvorton.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Mankas konfirmado de pasvorto. Bonvolu konfirmi la elektitan pasvorton.';
?> \ No newline at end of file
diff --git a/language/es_AR/common.lang.php b/language/es_AR/common.lang.php
index 9fa7e2bcc..4cbd7910b 100644
--- a/language/es_AR/common.lang.php
+++ b/language/es_AR/common.lang.php
@@ -245,7 +245,6 @@ $lang['login mustn\'t end with a space character'] = 'el nombre de usuario no de
$lang['login mustn\'t start with a space character'] = 'el nombre de usuario no debe empezar por un espacio';
$lang['this login is already used'] = 'ese nombre de usuario ya existe';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'la dirección de correo electrónico debe tener esta forma: xxx@yyy.eee (ejemplo : jack@altern.org)';
-$lang['please enter your password again'] = 'Por favor vuelva a ingresar su contraseña';
$lang['Auto login'] = 'Connexión automática';
$lang['remove this tag from the list'] = 'borrar este tag de la lista';
$lang['representative'] = 'Representante';
diff --git a/language/es_ES/common.lang.php b/language/es_ES/common.lang.php
index 73840cb0f..eb3dc3260 100644
--- a/language/es_ES/common.lang.php
+++ b/language/es_ES/common.lang.php
@@ -252,7 +252,6 @@ $lang['login mustn\'t end with a space character'] = 'El nombre de usuario no pu
$lang['login mustn\'t start with a space character'] = 'El nombre de usuario no puede empezar por el carácter \'espacio\'';
$lang['this login is already used'] = 'Este nombre de usuario ya lo está utilizando otro usuario';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'El formato de la dirección e-mail debe ser xxx@yyy.eee (ejemplo: jack@altern.org)';
-$lang['please enter your password again'] = 'Por favor, escriba de nuevo su contraseña';
$lang['Auto login'] = 'Recordar';
$lang['remove this tag from the list'] = 'elimine esta etiqueta de la lista';
$lang['representative'] = 'Representar';
@@ -425,4 +424,6 @@ $lang['Email'] = 'Correo electrónico';
$lang['First Page'] = 'Primera pagina';
$lang['Go back to the album'] = 'Volver al álbum';
$lang['Last Page'] = 'Ultima pagina';
+$lang['Password is missing. Please enter the password.'] = 'Falta la contraseña. Por favor, introdúzcala.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'La contraseña no ha sido confirmada. Por favor, confirme la contraseña elegida.';
?> \ No newline at end of file
diff --git a/language/et_EE/common.lang.php b/language/et_EE/common.lang.php
index ab133bbc9..76025b11a 100644
--- a/language/et_EE/common.lang.php
+++ b/language/et_EE/common.lang.php
@@ -415,7 +415,6 @@ $lang['login mustn\'t start with a space character'] = 'kasutajanimi ei saa alga
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'eposti aadress peab ühilduma malliga xxx@yyy.zzz (näiteks: keegi@siin.ee)';
$lang['medium'] = 'M — keskmine';
$lang['photos posted during the last %d days'] = 'fotod postitud viimase %d päeva vältel';
-$lang['please enter your password again'] = 'palun sisesta parool uuesti';
$lang['representative'] = 'albumi pisipilt';
$lang['return to the display of all photos'] = 'tagasi kõikide fotode kuvamisele';
$lang['searched words : %s'] = 'otsitud sõnad: %s';
@@ -443,4 +442,6 @@ $lang['Email'] = 'E-kiri';
$lang['First Page'] = 'Esimene leht';
$lang['Go back to the album'] = 'Mine tagasi albumi juurde';
$lang['Last Page'] = 'Viimane leht';
+$lang['Password is missing. Please enter the password.'] = 'Parool puudub. Palun sisesta parool.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Parooli kinnitus puudub. Palun kinnita valitud parool.';
?> \ No newline at end of file
diff --git a/language/fa_IR/common.lang.php b/language/fa_IR/common.lang.php
index faf416eee..1ad095b78 100644
--- a/language/fa_IR/common.lang.php
+++ b/language/fa_IR/common.lang.php
@@ -238,7 +238,6 @@ $lang['login mustn\'t end with a space character'] = 'اطلاعات ورود ن
$lang['login mustn\'t start with a space character'] = 'اطلاعات ورود نباید با فاصله آغاز شوند';
$lang['this login is already used'] = "این اطلاعات ورود از قبل وجود دارد";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'آدرس ایمیل باید چیزی شبیه به xxx@yyy.eee باشد. (مانند: jack@altern.org)';
-$lang['please enter your password again'] = "خواهشمند است گذرواژه خود را دوباره وارد نمایید";
$lang['Auto login'] = "ورود اتوماتیک";
$lang['remove this tag from the list'] = "پاک کردن این برچسب از لیست";
$lang['representative'] = 'عکس بندانگشتی آلبوم';
@@ -422,4 +421,6 @@ $lang['Email'] = 'ایمیل';
$lang['First Page'] = 'نخستین برگه';
$lang['Go back to the album'] = 'برگشتن به آلبوم';
$lang['Last Page'] = 'آخرین برگه';
+$lang['Password is missing. Please enter the password.'] = 'گذرواژه ای نوشته نشده است. خواهشمندیم گذرواژه‌ای بنویسید.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'پذیرش گذرواژه با گذرواژه‌ی اصلی همخوانی ندارد. خواهشمندیم گذرواژه‌ی اصلی را در بخش پذیرش گذرواژه نیز بنویسید.';
?> \ No newline at end of file
diff --git a/language/fi_FI/common.lang.php b/language/fi_FI/common.lang.php
index 06e3919b1..28adf38ed 100644
--- a/language/fi_FI/common.lang.php
+++ b/language/fi_FI/common.lang.php
@@ -273,7 +273,6 @@ $lang['Page generated in'] = 'Sivu luotu';
$lang['Password reset is not allowed for this user'] = 'Salasanan palautus ei ole sallittu tälle käyttäjälle';
$lang['Password: %s'] = 'Salasana:%s';
$lang['Play of slideshow'] = 'Käynnistä diaesitys';
-$lang['please enter your password again'] = 'kirjoita salasanasi uudelleen';
$lang['Please enter your username or email address.'] = 'Kirjoita käyttäjätunnus tai sähköpostiosoite';
$lang['posted after %s (%s)'] = 'lähetetty %s(%s) jälkeen';
$lang['posted before %s (%s)'] = 'lähetetty ennen %s(%s)';
diff --git a/language/fr_CA/common.lang.php b/language/fr_CA/common.lang.php
index e729e3e85..51040f76e 100644
--- a/language/fr_CA/common.lang.php
+++ b/language/fr_CA/common.lang.php
@@ -245,7 +245,6 @@ $lang['login mustn\'t end with a space character'] = 'le nom d\'utilisateur ne d
$lang['login mustn\'t start with a space character'] = 'le nom d\'utilisateur ne doit pas commencer par un espace';
$lang['this login is already used'] = 'ce nom d\'utilisateur est déjà pris';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'l\'adresse de courriel doit être de la forme xxx@yyy.eee (exemple : luc@altern.org)';
-$lang['please enter your password again'] = 'Merci d\'entrer à nouveau votre mot de passe';
$lang['Auto login'] = 'Connexion auto';
$lang['remove this tag from the list'] = 'retirer ce mot clé de la liste';
$lang['representative'] = 'représentante';
@@ -421,5 +420,6 @@ $lang['First Page'] = 'Première page';
$lang['Go back to the album'] = 'Retourner à l\'album';
$lang['Last Page'] = 'Dernière page';
$lang['Email'] = 'Courriel';
-
+$lang['Password is missing. Please enter the password.'] = "Le mot de passe manque. Veuillez saisir le mot de passe.";
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = "La confirmation du mot de passe manque. Veuillez confirmer le mot de passe choisi.";
?> \ No newline at end of file
diff --git a/language/fr_FR/common.lang.php b/language/fr_FR/common.lang.php
index 402b52819..3c4faecfb 100644
--- a/language/fr_FR/common.lang.php
+++ b/language/fr_FR/common.lang.php
@@ -253,7 +253,6 @@ $lang['Photos posted within the last %d day.'] = 'N\'afficher que les photos ré
$lang['Photos posted within the last %d days.'] = 'N\'afficher que les photos récentes de moins de %d jours.';
$lang['Piwigo Help'] = 'Aide de Piwigo';
$lang['Play of slideshow'] = 'Lecture du diaporama';
-$lang['please enter your password again'] = 'Merci d\'entrer à nouveau votre mot de passe';
$lang['Please enter your username or email address.'] = 'Merci d\'entrer votre nom d\'utilisateur ou votre adresse email.';
$lang['Please, enter a login'] = 'S\'il vous plaît, entrez un nom d\'utilisateur';
$lang['Post date'] = 'Date d\'ajout';
@@ -416,4 +415,6 @@ $lang['mandatory'] = 'obligatoire';
$lang['Website'] = 'Site web';
$lang['Your website URL is invalid'] = 'L\'adresse de votre site web est invalide';
$lang['Email'] = "Email";
+$lang['Password is missing. Please enter the password.'] = "Le mot de passe manque. Veuillez saisir le mot de passe.";
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = "La confirmation du mot de passe manque. Veuillez confirmer le mot de passe choisi.";
?> \ No newline at end of file
diff --git a/language/gl_ES/common.lang.php b/language/gl_ES/common.lang.php
index 166839bdc..1c0782ead 100644
--- a/language/gl_ES/common.lang.php
+++ b/language/gl_ES/common.lang.php
@@ -344,7 +344,6 @@ $lang['obligatory'] = 'obrigatorio';
$lang['password updated'] = 'clave actualizada';
$lang['photo'] = 'foto';
$lang['photos posted during the last %d days'] = 'fotos enviadas durante os últimos %d días';
-$lang['please enter your password again'] = 'insire túa clave novamente';
$lang['posted after %s (%s)'] = 'enviada despois de %s (%s)';
$lang['posted before %s (%s)'] = 'enviada antes de %s (%s)';
$lang['posted between %s (%s) and %s (%s)'] = 'enviada entre %s (%s) e %s (%s)';
@@ -411,4 +410,6 @@ $lang['Week %d'] = 'Semana %d';
$lang['Welcome'] = 'Benvido';
$lang['Welcome to your Piwigo photo gallery!'] = 'Benvido a túa galería de fotos Piwigo!';
$lang['Yes'] = 'Si';
+$lang['Password is missing. Please enter the password.'] = 'Falta a clave. Insire unha clave.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Falta a confirmación da clave. Confirma a clave escollida.';
?> \ No newline at end of file
diff --git a/language/he_IL/common.lang.php b/language/he_IL/common.lang.php
index 9abd5ab50..7ea4fd850 100644
--- a/language/he_IL/common.lang.php
+++ b/language/he_IL/common.lang.php
@@ -245,7 +245,6 @@ $lang['login mustn\'t end with a space character'] = "שם משתמש לא יכ
$lang['login mustn\'t start with a space character'] = "שם משתמש לא יכול להתחיל עם רווח";
$lang['this login is already used'] = "השם משתמש הזה קיים כבר";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "דואר אלקטרוני חייב להיות כמו adir@biton.com (לדוגמה : adir@gmail.com)";
-$lang['please enter your password again'] = "הכנס בבקשה את הסיסמה שוב";
$lang['Auto login'] = "התחברות אוטומטית";
$lang['remove this tag from the list'] = "מחק את התווית הזאת מהרשימה";
$lang['representative'] = "נבחר";
@@ -417,4 +416,6 @@ $lang['Email address is mandatory'] = 'שדה דואר אלקטרוני חובה
$lang['Username is mandatory'] = 'שדה שם משתמש חובה';
$lang['Website'] = 'אתר';
$lang['mandatory'] = 'הכרחי';
+$lang['Password is missing. Please enter the password.'] = 'סיסמה חסרה, נה להזין סיסמה..';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'אישור סיסמה חסר, נה להזיר אישור סיסמה..';
?> \ No newline at end of file
diff --git a/language/hr_HR/common.lang.php b/language/hr_HR/common.lang.php
index 9baad1f46..97ba36e05 100644
--- a/language/hr_HR/common.lang.php
+++ b/language/hr_HR/common.lang.php
@@ -248,7 +248,6 @@ $lang['login mustn\'t end with a space character'] = 'prijava ne smije završava
$lang['login mustn\'t start with a space character'] = 'prijava ne smije počinjati razmakom';
$lang['this login is already used'] = 'ovo korisničko ime se već koristi';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'e-mail adresa mora biti oblika xxx@yyy.eee (npr : pasko@stranica.org)';
-$lang['please enter your password again'] = 'molimo unesite zaporku ponovo';
$lang['Auto login'] = 'Samoprijava';
$lang['remove this tag from the list'] = 'ukloni ovaj tag iz popisa';
$lang['representative'] = 'predstavnik';
@@ -417,4 +416,6 @@ $lang['Username is mandatory'] = 'Korisničko ime je obavezno';
$lang['Website'] = 'Web sjedište';
$lang['Your website URL is invalid'] = 'URL vašeg web sjedišta nije valjan';
$lang['mandatory'] = 'obavezno';
+$lang['Password is missing. Please enter the password.'] = 'Nedostaje zaporka. Molimo unesite zaporku.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Nedostaje potvrda zaporke. Molimo potvrdite odabranu zaporku.';
?> \ No newline at end of file
diff --git a/language/hu_HU/common.lang.php b/language/hu_HU/common.lang.php
index a126dd14b..8dd5fe96c 100644
--- a/language/hu_HU/common.lang.php
+++ b/language/hu_HU/common.lang.php
@@ -246,7 +246,6 @@ $lang['login mustn\'t end with a space character'] = 'A felhasználói név nem
$lang['login mustn\'t start with a space character'] = 'A felhasználói név nem kezdődhet SPACE karakterrel';
$lang['this login is already used'] = 'Ilyen felhasználónk már van!';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'E-mail formátuma: xxx@yyy.eee (pl.: kedvenc@nyuszi.hu)';
-$lang['please enter your password again'] = 'Kérem, adja meg újra jelszavát';
$lang['Auto login'] = 'Jegyezz meg';
$lang['remove this tag from the list'] = 'Ezt a címkét távolítsa el a listáról';
$lang['representative'] = 'képviselő';
@@ -421,4 +420,6 @@ $lang['Email'] = 'E-mail';
$lang['First Page'] = 'Első oldal';
$lang['Go back to the album'] = 'Vissza az albumhoz';
$lang['Last Page'] = 'Utolsó oldal';
+$lang['Password is missing. Please enter the password.'] = 'Jelszó hiányzik. Kérem írja be a jelszót.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Jelszó megerősítése hiányzik. Kérem erősítse meg a választott jelszót.';
?> \ No newline at end of file
diff --git a/language/id_ID/common.lang.php b/language/id_ID/common.lang.php
index 938237d27..301bd8653 100644
--- a/language/id_ID/common.lang.php
+++ b/language/id_ID/common.lang.php
@@ -103,7 +103,6 @@ $lang['obligatory'] = 'diperlukan';
$lang['password updated'] = 'kata sandi diperbaharui';
$lang['photo'] = 'foto';
$lang['photos posted during the last %d days'] = 'foto dipublikasikan dalam %d hari terakhir';
-$lang['please enter your password again'] = 'harap masukkan kata sandi anda lagi';
$lang['posted after %s (%s)'] = 'dipublikasikan setelah %s (%s)';
$lang['posted before %s (%s)'] = 'dipublikasikan sebelum %s (%s)';
$lang['posted between %s (%s) and %s (%s)'] = 'dipublikasikan diantara %s (%s) dan %s (%s)';
diff --git a/language/is_IS/common.lang.php b/language/is_IS/common.lang.php
index 5add9857e..e66a214df 100644
--- a/language/is_IS/common.lang.php
+++ b/language/is_IS/common.lang.php
@@ -250,7 +250,6 @@ $lang['login mustn\'t end with a space character'] = 'notendanafn má ekki enda
$lang['login mustn\'t start with a space character'] = 'notendanafn má ekki byrja á bili';
$lang['this login is already used'] = 'þetta notendanafn er nú þegar í notkun';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'netfang verður að vera xxx@yyy.eee (example : jack@altern.org)';
-$lang['please enter your password again'] = 'vinsamlegast sláið lykilorð aftur inn';
$lang['Auto login'] = 'Sjálfvirk innskráning';
$lang['remove this tag from the list'] = 'fjarlægja merki úr lista';
$lang['representative'] = 'Fulltrúi';
diff --git a/language/it_IT/common.lang.php b/language/it_IT/common.lang.php
index 2e134cc7f..a3ef03089 100644
--- a/language/it_IT/common.lang.php
+++ b/language/it_IT/common.lang.php
@@ -250,7 +250,6 @@ $lang['Photos posted within the last %d day.'] = 'Foto pubblicate nelle ultime 2
$lang['Photos posted within the last %d days.'] = 'Foto pubblicate negli ultimi %d giorni.';
$lang['Piwigo Help'] = 'Aiuto di Piwigo';
$lang['Play of slideshow'] = 'Avvia proiezione';
-$lang['please enter your password again'] = 'si prega di inserire nuovamente la password';
$lang['Please enter your username or email address.'] = 'Inserisci il tuo nome utente o indirizzo e-mail.';
$lang['Please, enter a login'] = 'Per favore, inserire nome utente';
$lang['Post date'] = 'Data d\'invio';
@@ -416,4 +415,6 @@ $lang['Email'] = 'Email';
$lang['Go back to the album'] = 'Ritorna all\'album';
$lang['Last Page'] = 'Ultima pagina';
$lang['First Page'] = 'Prima pagina';
+$lang['Password is missing. Please enter the password.'] = 'Campo password vuoto. Prego inserire la password.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Campo conferma della password vuoto. Si prega di confermare la password scelta.';
?> \ No newline at end of file
diff --git a/language/ja_JP/common.lang.php b/language/ja_JP/common.lang.php
index 02febe086..474670194 100644
--- a/language/ja_JP/common.lang.php
+++ b/language/ja_JP/common.lang.php
@@ -242,7 +242,6 @@ $lang['login mustn\'t end with a space character'] = 'ユーザIDの末尾にス
$lang['login mustn\'t start with a space character'] = 'ユーザIDの最初にスペースを使用しないでください。';
$lang['this login is already used'] = 'このユーザIDは、すでに使用されています。';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'メールアドレスは、xxx@yyy.eee のようなフォーマットを使用してください (例 : jack@altern.org)。';
-$lang['please enter your password again'] = 'あなたのパスワードを再度入力してください。';
$lang['Auto login'] = '自動ログイン';
$lang['remove this tag from the list'] = 'このタグをリストから削除する';
$lang['representative'] = '見本';
@@ -416,4 +415,6 @@ $lang['Email'] = 'メールアドレス';
$lang['First Page'] = '初めのページ';
$lang['Go back to the album'] = 'アルバムに戻る';
$lang['Last Page'] = '最後のページ';
+$lang['Password is missing. Please enter the password.'] = 'パスワードがありません。パスワードを入力して下さい。';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'パスワードの再確認がありません。パスワードの再確認を確認して下さい。';
?> \ No newline at end of file
diff --git a/language/ka_GE/common.lang.php b/language/ka_GE/common.lang.php
index 4e2b7a1d5..2550772d1 100644
--- a/language/ka_GE/common.lang.php
+++ b/language/ka_GE/common.lang.php
@@ -248,7 +248,6 @@ $lang['login mustn\'t end with a space character'] = 'სახელი(ლო
$lang['login mustn\'t start with a space character'] = 'სახელი(ლოგინი) არ უნდა იწყებოდეს ცარიელი ადგილით(პრობელით)';
$lang['this login is already used'] = 'ეს სახელი(ლოგინი) უკვე არსებობს';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'ელ.ფოსტის მისამართი უნდა გამოიყურებოდეს ესე xxx@yyy.eee (მაგალითად: jack@altern.org)';
-$lang['please enter your password again'] = 'პაროლი კიდევ ერთხელ';
$lang['Auto login'] = 'დამიმახსოვრე';
$lang['remove this tag from the list'] = 'გადავაგდოთ ეს ტეგი სიიდან';
$lang['representative'] = 'წარმომადგენელი';
@@ -418,4 +417,6 @@ $lang['thumb'] = 'ხატულა';
$lang['xlarge'] = 'XL -ძალიან დიდი';
$lang['xsmall'] = 'XS - ძალიან პატარა';
$lang['xxlarge'] = 'XXL - უდიდესი';
+$lang['Password is missing. Please enter the password.'] = 'პაროლი არა სწორია. გთხოვთ გაიმეოროთ.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'პაროლის დადასტურება არ არის. გთხოვთ დაადასტურეთ არჩეული პაროლი.';
?> \ No newline at end of file
diff --git a/language/km_KH/common.lang.php b/language/km_KH/common.lang.php
index 33bb80883..93e750152 100644
--- a/language/km_KH/common.lang.php
+++ b/language/km_KH/common.lang.php
@@ -246,7 +246,6 @@ $lang['login mustn\'t end with a space character'] = 'ការ​ភ្ជា
$lang['login mustn\'t start with a space character'] = 'ការ​ភ្ជាប់​ចូល​ត្រូវ​តែ​ មិន​ចាប់​ផ្តើម​ជាមួយ​ដក​ឃ្លា​';
$lang['this login is already used'] = 'ការ​ភ្ជាប់​ចូល​ជាមួយ​ឈ្មោះ​នេះ​ បាន​ប្រើ​ប្រាស់​រួច​ហើយ';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'អាស័យដ្ឋាន​សារ​អេឡិច​ត្រូនិច​ត្រូវ​តែ​ក្នុង​ទំ​រង់​ xxx@yyy.eee (example : jack@altern.org)';
-$lang['please enter your password again'] = 'សូម​បញ្ចូល​អក្សរ​សម្ងាត់​របស់​អ្នក​ម្តង​ទៀត​';
$lang['Auto login'] = 'ភ្ជាប់​ចូល​ដោយ​ស្វ័យ​ប្រវត្តិ';
$lang['remove this tag from the list'] = 'លុបស្លាក​នេះ​ចេញ​ពី​តារាង​';
$lang['representative'] = 'រូប​ជា​គំរប​នៃ​សៀវ​ភៅ​រូប​ថត​';
diff --git a/language/kn_IN/common.lang.php b/language/kn_IN/common.lang.php
index 65b524999..136e85454 100644
--- a/language/kn_IN/common.lang.php
+++ b/language/kn_IN/common.lang.php
@@ -269,7 +269,6 @@ $lang['Photos posted within the last %d days.'] = "ಕಳೆದ %d ದಿನಗ
$lang['Piwigo encountered a non recoverable error'] = 'Piwigo ದಲ್ಲಿ ಮರುಸರಿಪಡಿಸಲಾಗದ ಒಂದು ತಪ್ಪು ಉಂಟಾಗಿದೆ';
$lang['Piwigo Help'] = "Piwigo ಸಹಾಯ";
$lang['Play of slideshow'] = "ಪ್ರದರ್ಶಿಕೆಯನ್ನು ಚಾಲಿಸಿ";
-$lang['please enter your password again'] = "ದಯವಿಟ್ಟು ನಿಮ್ಮ ಗುಪ್ತಪದವನು ಮತ್ತೊಮ್ಮೆ ಬಳಸಿ";
$lang['Please enter your username or email address.'] = 'ದಯವಿಟ್ಟು ನಿಮ್ಮ ಬಳಕೆದಾರರ ಹೆಸರು ಅಥವಾ ಮಿಂಚೆ ವಿಳಾಸವನ್ನು ನಮೂದಿಸಿ';
$lang['Please, enter a login'] = "ದಯವಿಟ್ಟು ಲಾಗಿನ್ ಅನ್ನು ನಮೂದಿಸಿ";
$lang['Post date'] = "ಪ್ರಕಟಣೆಯ ದಿನಾಂಕ";
diff --git a/language/ko_KR/common.lang.php b/language/ko_KR/common.lang.php
index 5b3a9472b..cbab599da 100644
--- a/language/ko_KR/common.lang.php
+++ b/language/ko_KR/common.lang.php
@@ -246,7 +246,6 @@ $lang['login mustn\'t end with a space character'] = '공백문자로 끝낼 수
$lang['login mustn\'t start with a space character'] = '공백문자로 시작할 수 없습니다';
$lang['this login is already used'] = '이 정보는 이미 사용중입니다';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = '메일 주소는 xxx@yyy.eee 처럼 되야 합니다. (예 : jack@altern.org)';
-$lang['please enter your password again'] = '비밀번호를 다시 입력 해 주세요';
$lang['Auto login'] = '자동 로그인';
$lang['remove this tag from the list'] = '목록에서 이 태그를 삭제';
$lang['representative'] = '대표사진';
diff --git a/language/lt_LT/common.lang.php b/language/lt_LT/common.lang.php
index 63548b81a..8db2b76bb 100644
--- a/language/lt_LT/common.lang.php
+++ b/language/lt_LT/common.lang.php
@@ -219,7 +219,6 @@ $lang['login mustn\'t end with a space character'] = "Prisijungimo vardas negali
$lang['login mustn\'t start with a space character'] = "Prisijungimo vardas negali prasideti tarpu";
$lang['this login is already used'] = 'Šis prisijungimo vardas jau naudojamas';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'Elektroninio pašto adresas turi būti toks: xxx@yyy.eee (pavyzdys : jack@altern.org)';
-$lang['please enter your password again'] = 'Pakartokite savo slaptažodį';
$lang['Auto login'] = "Automatinis prisijungimas";
$lang['remove this tag from the list'] = 'ištrinti šią žymą iš šio sąrašo';
$lang['representative'] = "atstovauti";
@@ -430,4 +429,7 @@ $lang['Email'] = 'Elektroninis paštas';
$lang['First Page'] = 'Pirmas puslapis';
$lang['Go back to the album'] = 'Grįžti į albumą';
$lang['Last Page'] = 'Paskutinis puslapis';
+$lang['Password is missing. Please enter the password.'] = 'Nėra slaptažodžio. Prašome įvesti slaptažodį';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Nėra slaptažodžio patvirtinimo. Prašome pakartoti slaptažodį';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Nav paroles apstiprinājuma. Lūdzu apstipriniet paroli.';
?> \ No newline at end of file
diff --git a/language/lv_LV/common.lang.php b/language/lv_LV/common.lang.php
index 19267d065..dddc07866 100644
--- a/language/lv_LV/common.lang.php
+++ b/language/lv_LV/common.lang.php
@@ -243,7 +243,6 @@ $lang['login mustn\'t end with a space character'] = "logins nedrīkst beigties
$lang['login mustn\'t start with a space character'] = "logins nedrīkst sākties ar tukšumu - spacebar";
$lang['this login is already used'] = "šo loginu jau lieto";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "e-pasta adresei jāizskatās xxx@yyy.eee (piemēram : jack@altern.org)";
-$lang['please enter your password again'] = "lūdzu ievadiet savu paroli vēlreiz";
$lang['Auto login'] = "Auto logins";
$lang['remove this tag from the list'] = "izņemt šo tagu no saraksta";
$lang['representative'] = "pārstāvis";
@@ -417,4 +416,5 @@ $lang['Email'] = 'e-pasts';
$lang['Go back to the album'] = 'Iet atpakaļ uz albūmu';
$lang['Last Page'] = 'Pēdējā lapa';
$lang['First Page'] = 'Pirmā lapa';
+$lang['Password is missing. Please enter the password.'] = 'Nepareiza parole. Lūdzu atkārtojiet mēģinājumu.';
?> \ No newline at end of file
diff --git a/language/mk_MK/common.lang.php b/language/mk_MK/common.lang.php
index a2884ebb6..fb621e7d2 100644
--- a/language/mk_MK/common.lang.php
+++ b/language/mk_MK/common.lang.php
@@ -256,7 +256,6 @@ $lang['login mustn\'t end with a space character'] = 'Корисничкото
$lang['login mustn\'t start with a space character'] = 'Корисничкото име не може да започнува со space место';
$lang['this login is already used'] = 'Корисничкото име веќе постои. Ве молиме одберете друго.';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'e-mail адресата мора да изгледа вака xxx@yyy.eee (пример: pero@makedonija.com.mk)';
-$lang['please enter your password again'] = 'Ве молиме повторно внесете ја вашата лозинка.';
$lang['Auto login'] = 'Логирај ме автоматски на секоја моја посета';
$lang['remove this tag from the list'] = 'избриши ја оваа етикета од листата';
$lang['representative'] = 'главна икона';
diff --git a/language/mn_MN/common.lang.php b/language/mn_MN/common.lang.php
index 94447dbf0..03f324b92 100644
--- a/language/mn_MN/common.lang.php
+++ b/language/mn_MN/common.lang.php
@@ -206,7 +206,6 @@ $lang['remove this tag from the list'] = 'жагсаалтаас энэ үгий
$lang['this email address is already in use'] = 'энэ имэйл хаягаар бүртгүүлсэн байна';
$lang['the beginning'] = 'эхнээс нь';
$lang['the username must be given'] = 'хэрэглэгчийн нэр заавал шаардлагатай';
-$lang['please enter your password again'] = 'нууц үгээ давтан оруулна уу';
$lang['created after %s (%s)'] = '%s (%s)-с хойш авсан';
$lang['created before %s (%s)'] = '%s (%s)-с өмнө авсан';
$lang['customize the appareance of the gallery'] = 'галерейн харагдах байдлыг засах';
@@ -415,4 +414,5 @@ $lang['Email'] = 'и-мэйл';
$lang['First Page'] = 'эхний хуудас';
$lang['Go back to the album'] = 'Цомог уруу буцах';
$lang['Last Page'] = 'сүүлийн хуудас';
+$lang['Password is missing. Please enter the password.'] = 'Уучлаарай. Нууц үгээ оруулна уу.';
?> \ No newline at end of file
diff --git a/language/nb_NO/common.lang.php b/language/nb_NO/common.lang.php
index f28aae4f8..1410c56ce 100644
--- a/language/nb_NO/common.lang.php
+++ b/language/nb_NO/common.lang.php
@@ -281,7 +281,6 @@ $lang['login mustn\'t end with a space character'] = 'login må ikke ende med et
$lang['login mustn\'t start with a space character'] = 'login må ikke starte med et mellomrom';
$lang['this login is already used'] = 'denne innloggingen er allerede i bruk';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'mail addresse må være tilsvarende xxx@yyy.eee (eksempel : jack@altern.org)';
-$lang['please enter your password again'] = 'vennligst skriv ditt passord på ny';
$lang['Auto login'] = 'Auto innlogging';
$lang['%d Kb'] = '%d Kb';
$lang['Week %d'] = 'Uke %d';
@@ -416,4 +415,6 @@ $lang['Email'] = 'Epost';
$lang['First Page'] = 'Første side';
$lang['Go back to the album'] = 'Tilbake til albumet';
$lang['Last Page'] = 'Siste side';
+$lang['Password is missing. Please enter the password.'] = 'Passord mangler. Vennligst skriv passord.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Passord bekreftelse mangler. Vennligst bekreft det valgte passord.';
?> \ No newline at end of file
diff --git a/language/nl_NL/common.lang.php b/language/nl_NL/common.lang.php
index f4909e9ed..a065c1db1 100644
--- a/language/nl_NL/common.lang.php
+++ b/language/nl_NL/common.lang.php
@@ -245,7 +245,6 @@ $lang['login mustn\'t end with a space character'] = 'Gebruikersnaam mag niet ei
$lang['login mustn\'t start with a space character'] = 'Gebruikersnaam mag niet beginnen met een spatie';
$lang['this login is already used'] = 'Deze gebruikersnaam is al in gebruik';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'email-adres moet zijn xxx@yyy.eee (bijvoorbeeld : jack@altern.org)';
-$lang['please enter your password again'] = 'vul uw wachtwoord nogmaals in';
$lang['Auto login'] = 'Auto login';
$lang['remove this tag from the list'] = 'Verwijder dit label uit de lijst';
$lang['representative'] = 'album klikplaatje';
@@ -424,4 +423,6 @@ $lang['Email'] = 'Email';
$lang['First Page'] = 'Eerste bladzijde';
$lang['Go back to the album'] = 'Ga terug naar het album';
$lang['Last Page'] = 'Laatste bladzijde';
+$lang['Password is missing. Please enter the password.'] = 'Wachtwoord ontbreekt. Geef uw wachtwoord aub.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Wachtwoord-bevestiging ontbreekt. Bevestig aub uw gekozen wachtwoord.';
?> \ No newline at end of file
diff --git a/language/nn_NO/common.lang.php b/language/nn_NO/common.lang.php
index 7ebeeaf38..98c95a8d0 100644
--- a/language/nn_NO/common.lang.php
+++ b/language/nn_NO/common.lang.php
@@ -182,7 +182,6 @@ $lang['obligatory'] = 'påkrevd';
$lang['password updated'] = 'passordet er oppdatera';
$lang['photo'] = 'bilete';
$lang['photos posted during the last %d days'] = 'bilete lagt inn dei siste %d dagane';
-$lang['please enter your password again'] = 'skriv inn passord på nytt';
$lang['posted after %s (%s)'] = 'lagt til etter %s (%s)';
$lang['posted before %s (%s)'] = 'lagt til før %s (%s)';
$lang['posted between %s (%s) and %s (%s)'] = 'lagt til mellom %s (%s) og %s (%s)';
@@ -416,4 +415,6 @@ $lang['Email'] = 'E-post';
$lang['First Page'] = 'Fyrste side';
$lang['Go back to the album'] = 'Attende til album';
$lang['Last Page'] = 'Siste side';
+$lang['Password is missing. Please enter the password.'] = 'Passord manglar. Skriv inn eit passord.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Stadfesting av passord manglar. Skriv inn stadfesting av passord.';
?> \ No newline at end of file
diff --git a/language/pl_PL/common.lang.php b/language/pl_PL/common.lang.php
index c3dc8d138..302b76178 100644
--- a/language/pl_PL/common.lang.php
+++ b/language/pl_PL/common.lang.php
@@ -246,7 +246,6 @@ $lang['login mustn\'t end with a space character'] = 'Login nie może posiadać
$lang['login mustn\'t start with a space character'] = 'Login nie może zaczynać się od znaku specjalnego';
$lang['this login is already used'] = 'ten login już istnieje';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'mail musi być w postaci xxx@yyy.eee (przykład : jack@altern.org)';
-$lang['please enter your password again'] = 'wprowadź hasło jeszcze raz';
$lang['Auto login'] = 'Pamiętaj mnie';
$lang['remove this tag from the list'] = 'usuń ten tag z listy';
$lang['representative'] = 'reprezentant';
@@ -420,4 +419,6 @@ $lang['Email'] = 'E-mail';
$lang['First Page'] = 'Pierwsza strona';
$lang['Go back to the album'] = 'Wróć do albumu';
$lang['Last Page'] = 'Ostatnia strona';
+$lang['Password is missing. Please enter the password.'] = 'Brak hasła. Proszę wprowadzić hasło.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Brak potwierdzenia hasła. Proszę potwierdzić wybrane hasło.';
?> \ No newline at end of file
diff --git a/language/pt_BR/common.lang.php b/language/pt_BR/common.lang.php
index 9b5b3a6fe..21bb10236 100644
--- a/language/pt_BR/common.lang.php
+++ b/language/pt_BR/common.lang.php
@@ -244,7 +244,6 @@ $lang['login mustn\'t end with a space character'] = 'O nome de usuário não de
$lang['login mustn\'t start with a space character'] = 'O nome de usuário não deve começar com um espaço';
$lang['this login is already used'] = 'Este nome de usuário já existe';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'O formato do email deve ser do tipo: xxx@yyy.eee (exemplo : jack@altern.org)';
-$lang['please enter your password again'] = 'Por favor, digite sua senha novamente';
$lang['Auto login'] = 'Auto login (autenticação automática)';
$lang['remove this tag from the list'] = 'remover esta tag da lista';
$lang['representative'] = 'representante';
@@ -417,4 +416,6 @@ $lang['First Page'] = 'Primeira Página';
$lang['Go back to the album'] = 'Retornar para o album';
$lang['Last Page'] = 'Última página';
$lang['day']['4'] = 'Quinta-feira';
+$lang['Password is missing. Please enter the password.'] = 'Senha perdida. Por favor entre com a senha.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Confirmação de senhas perdida. Por favor confirme a senha escolhida.';
?> \ No newline at end of file
diff --git a/language/pt_PT/common.lang.php b/language/pt_PT/common.lang.php
index 852621538..5ab8f7d9e 100644
--- a/language/pt_PT/common.lang.php
+++ b/language/pt_PT/common.lang.php
@@ -248,7 +248,6 @@ $lang['login mustn\'t end with a space character'] = 'O nome de utilizador não
$lang['login mustn\'t start with a space character'] = 'O nome de utilizador não deve começar com um espaço';
$lang['this login is already used'] = 'Este nome de utilizador já existe';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'O formato do email deve ser do tipo: xxx@yyy.eee (exemplo : jack@altern.org)';
-$lang['please enter your password again'] = 'Por favor, escreva a sua senha novamente';
$lang['Auto login'] = 'Iníciar sessão automáticamente';
$lang['remove this tag from the list'] = 'Remover esta etiqueta da lista';
$lang['representative'] = 'Foto de Capa';
@@ -421,4 +420,6 @@ $lang['Email'] = 'Email';
$lang['First Page'] = 'Primeira página';
$lang['Go back to the album'] = 'Voltar ao album';
$lang['Last Page'] = 'Última página';
+$lang['Password is missing. Please enter the password.'] = 'Senha em falta. Por favor escreva a Senha.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Confirmao da Senha em falta. Por favor confirme a Palavra Passe escolhida.';
?> \ No newline at end of file
diff --git a/language/ro_RO/common.lang.php b/language/ro_RO/common.lang.php
index df20f2889..5838ccee6 100644
--- a/language/ro_RO/common.lang.php
+++ b/language/ro_RO/common.lang.php
@@ -231,7 +231,6 @@ $lang['login mustn\'t end with a space character'] = 'numele de utilizator nu tr
$lang['login mustn\'t start with a space character'] = 'numele de utilizator nu trebuie sa înceapă cu un spaţiu';
$lang['this login is already used'] = 'acest nume este deja folosit';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'adresa de e-mail trebuie să fie de genul xxx@yyy.eee (de exemplu: jack@altern.org)';
-$lang['please enter your password again'] = 'vă rugăm să introduceţi parola din nou';
$lang['Auto login'] = 'Conectare automatică';
$lang['remove this tag from the list'] = 'eliminaţi această etichetă de pe lista';
$lang['representative'] = 'reprezentant';
@@ -418,4 +417,6 @@ $lang['Email'] = 'Email';
$lang['First Page'] = 'Prima pagină';
$lang['Go back to the album'] = 'Înapoi la album';
$lang['Last Page'] = 'Ultima pagină';
+$lang['Password is missing. Please enter the password.'] = 'Parola lipseşte. Te rog sa introduci parola-';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Lipseşte confirmarea parolei. Te rog să confirmi parola aleasă.';
?> \ No newline at end of file
diff --git a/language/ru_RU/common.lang.php b/language/ru_RU/common.lang.php
index 7df8658b2..9589d5bca 100644
--- a/language/ru_RU/common.lang.php
+++ b/language/ru_RU/common.lang.php
@@ -243,7 +243,6 @@ $lang['login mustn\'t end with a space character'] = 'логин не долже
$lang['login mustn\'t start with a space character'] = 'логин не должен начинаться с пробела';
$lang['this login is already used'] = 'такой логин уже есть';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'адрес электронной почты должен выглядеть как-то типа xxx@yyy.eee (например: jack@altern.org)';
-$lang['please enter your password again'] = 'введите пароль еще раз';
$lang['Auto login'] = 'Запомнить меня';
$lang['remove this tag from the list'] = 'удалить этот тэг из списка';
$lang['representative'] = 'миниатюра альбома';
@@ -420,4 +419,6 @@ $lang['Email'] = 'Электронная почта';
$lang['First Page'] = 'Первая страница';
$lang['Go back to the album'] = 'Вернуться в альбом';
$lang['Last Page'] = 'Последняя страница';
+$lang['Password is missing. Please enter the password.'] = 'Пароль не верен. Пожалуйста, повторите попытку.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Подтверждение пароля отсутствует. Пожалуйста, подтвердите выбранный пароль.';
?> \ No newline at end of file
diff --git a/language/sh_RS/common.lang.php b/language/sh_RS/common.lang.php
index f76b74fc4..69c820e93 100644
--- a/language/sh_RS/common.lang.php
+++ b/language/sh_RS/common.lang.php
@@ -248,7 +248,6 @@ $lang['login mustn\'t end with a space character'] = 'prijava ne sme završavati
$lang['login mustn\'t start with a space character'] = 'prijava ne sme počinjati razmakom';
$lang['this login is already used'] = 'ovo korisničko ime se već koristi';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'e-mail adresa mora biti oblika xxx@yyy.eee (npr : korisnik@stranica.org)';
-$lang['please enter your password again'] = 'molimo unesite lozinku ponovo';
$lang['Auto login'] = 'Upamti me';
$lang['remove this tag from the list'] = 'ukloni ovaj tag iz popisa';
$lang['representative'] = 'predstavnik';
@@ -404,4 +403,6 @@ $lang['Rating score, low &rarr; high'] = 'Ocena, niska &rarr; visoka';
$lang['Visits, high &rarr; low'] = 'Posete, više &rarr; manje';
$lang['Visits, low &rarr; high'] = 'Posete, manje &rarr; više';
$lang['%d rate'] = '%d ocena';
+$lang['Password is missing. Please enter the password.'] = 'Lozinka nedostaje. Molim unesite lozinku.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Potvrda lozinke nedostaje. Molim potvrdite izabranu lozinku.';
?> \ No newline at end of file
diff --git a/language/sk_SK/common.lang.php b/language/sk_SK/common.lang.php
index 92f8d7b43..d4ca24b49 100644
--- a/language/sk_SK/common.lang.php
+++ b/language/sk_SK/common.lang.php
@@ -249,7 +249,6 @@ $lang['login mustn\'t end with a space character'] = 'používateľské meno nes
$lang['login mustn\'t start with a space character'] = 'používateľské meno nesmie začínať medzerou';
$lang['this login is already used'] = 'tieto prihlasovacie údaje už sú používané';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'E-mail musí byť vo formáte xxx@yyy.eee (napríklad: kovac@zoznam.sk)';
-$lang['please enter your password again'] = 'prosím zadajte znovu heslo';
$lang['Auto login'] = 'Automatické prihlásenie';
$lang['remove this tag from the list'] = 'odstrániť toto kľúčové slovo zo zoznamu';
$lang['representative'] = 'vzorový';
@@ -426,4 +425,6 @@ $lang['Email'] = 'Email';
$lang['Go back to the album'] = 'Späť do albumu';
$lang['Last Page'] = 'Posledná strana';
$lang['First Page'] = 'Prvá strana';
+$lang['Password is missing. Please enter the password.'] = 'Chýba heslo. Prosím napíšte heslo.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Chýba potvrdenie hesla. Prosím potvrďte vybrané heslo.';
?> \ No newline at end of file
diff --git a/language/sl_SI/common.lang.php b/language/sl_SI/common.lang.php
index 6c36dc8c4..539ab1c26 100644
--- a/language/sl_SI/common.lang.php
+++ b/language/sl_SI/common.lang.php
@@ -219,7 +219,6 @@ $lang['login mustn\'t end with a space character'] = 'prijava se ne sme končati
$lang['login mustn\'t start with a space character'] = 'prijava se ne sme začeti s presledkom';
$lang['this login is already used'] = 'ta uporabnik je že prijavljen';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'e-mail mora biti oblike xxx@yyy.eee (primer : nekdo@domena.org)';
-$lang['please enter your password again'] = 'prosimo ponovno vpišite svoje geslo';
$lang['Auto login'] = 'Samodejna prijava';
$lang['remove this tag from the list'] = 'odstrani oznako s seznama';
$lang['representative'] = 'sličica albuma';
@@ -415,4 +414,6 @@ $lang['Email'] = 'E-pošta';
$lang['First Page'] = 'Prva stran';
$lang['Go back to the album'] = 'Nazaj na album';
$lang['Last Page'] = 'Zadnja stran';
+$lang['Password is missing. Please enter the password.'] = 'Manjka geslo. Prosimo vpišite geslo.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Manjka potrditev gesla. Prosimo potrdite izbrano geslo.';
?> \ No newline at end of file
diff --git a/language/sr_RS/common.lang.php b/language/sr_RS/common.lang.php
index cfc71efbd..7a0596aee 100644
--- a/language/sr_RS/common.lang.php
+++ b/language/sr_RS/common.lang.php
@@ -242,7 +242,6 @@ $lang['login mustn\'t end with a space character'] = 'пријава не сме
$lang['login mustn\'t start with a space character'] = 'пријава не сме почињати размаком';
$lang['this login is already used'] = 'ово корисничко име се већ користи';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'адреса електронске поште мора бити облика xxx@yyy.eee (нпр. : korisnik@stranica.org)';
-$lang['please enter your password again'] = 'молимо унесите лозинку поново';
$lang['Auto login'] = 'Упамти ме';
$lang['remove this tag from the list'] = 'уклони ову ознаку из пописа';
$lang['representative'] = 'представник';
@@ -413,4 +412,6 @@ $lang['Username is mandatory'] = 'Корисничко име је обавез
$lang['mandatory'] = 'обавезан';
$lang['Website'] = 'Међумрежно место';
$lang['Your website URL is invalid'] = 'Ваша адреса на глобалној мрежи (URL) је неисправна';
+$lang['Password is missing. Please enter the password.'] = 'Лозинка недостаје. Молим унесите лозинку.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Потврда лозинке недостаје. Молим потврдите изабрану лозинку.';
?> \ No newline at end of file
diff --git a/language/sv_SE/common.lang.php b/language/sv_SE/common.lang.php
index 92da78545..15d38e270 100644
--- a/language/sv_SE/common.lang.php
+++ b/language/sv_SE/common.lang.php
@@ -281,7 +281,6 @@ $lang['login mustn\'t end with a space character'] = 'användarnamn får inte sl
$lang['login mustn\'t start with a space character'] = 'användarnamn får inte börja med ett mellanslag';
$lang['this login is already used'] = 'Detta användarnamn används redan';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'e-postadress måste vara av formen ”arne@anka.org';
-$lang['please enter your password again'] = 'vänligen ange ditt lösenord igen';
$lang['Auto login'] = 'Automatisk inloggning';
$lang['remove this tag from the list'] = 'ta bort taggen från listan';
$lang['representative'] = 'representant';
@@ -421,4 +420,6 @@ $lang['Email'] = 'Email';
$lang['First Page'] = 'Första sidan';
$lang['Go back to the album'] = 'Gå tillbaka till album';
$lang['Last Page'] = 'Sista sidan';
+$lang['Password is missing. Please enter the password.'] = 'Lösenord saknas. Ange lösenord.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Bekräftelse av lösenord saknas. Vänligen bekräfta ditt valda lösenord.';
?> \ No newline at end of file
diff --git a/language/ta_IN/common.lang.php b/language/ta_IN/common.lang.php
index a32f1907a..485611cb6 100644
--- a/language/ta_IN/common.lang.php
+++ b/language/ta_IN/common.lang.php
@@ -294,7 +294,6 @@ $lang['xlarge'] = 'XL - மிகப் பெரியது';
$lang['xsmall'] = 'XS - மிகப் சிறியது';
$lang['xxlarge'] = 'XXL - பிரம்மாண்டமான';
$lang['photos posted during the last %d days'] = 'கடந்த %d நாட்களில் இடப்பட்ட புகைப்படங்கள்';
-$lang['please enter your password again'] = 'மீண்டும் உங்கள் கடவுச்சொல்லை உள்ளிடவும்';
$lang['posted after %s (%s)'] = 'பிறகு பதிவிடப்பட்டது %s (%s)';
$lang['posted before %s (%s)'] = 'முன்னர் பதிவிடப்பட்டது %s (%s)';
$lang['posted between %s (%s) and %s (%s)'] = 'இடையே பதிவிடப்பட்டது %s (%s) மறும் %s (%s)';
diff --git a/language/th_TH/common.lang.php b/language/th_TH/common.lang.php
index dfd8855a2..f53ee2666 100644
--- a/language/th_TH/common.lang.php
+++ b/language/th_TH/common.lang.php
@@ -243,7 +243,6 @@ $lang['login mustn\'t end with a space character'] = "ชื่อเข้า
$lang['login mustn\'t start with a space character'] = "ชื่อเข้าสู่ระบบไม่ต้องเริ่มต้นด้วยอักขระช่องว่าง";
$lang['this login is already used'] = "ชื่อเข้าสู่ระบบนี้ถูกใช้ไปแล้ว";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "ที่อยู่อีเมลจะต้องมีลักษณะ xxx@yyy.eee (ตัวอย่าง : jack@altern.org)";
-$lang['please enter your password again'] = "กรุณากรอกรหัสผ่านของคุณอีกครั้ง";
$lang['Auto login'] = "เข้าสู่ระบบอัตโนมัติ";
$lang['remove this tag from the list'] = "ลบแท็กนี้จากรายการ";
$lang['representative'] = 'รูปภาพขนาดย่อประจำอัลบั้ม';
@@ -417,4 +416,6 @@ $lang['Email'] = 'อีเมล';
$lang['First Page'] = 'หน้าแรก';
$lang['Go back to the album'] = 'กลับไปยังอัลบั้ม';
$lang['Last Page'] = 'หน้าสุดท้าย';
+$lang['Password is missing. Please enter the password.'] = "คุณยังไม่ได้กำหนดรหัสผ่าน. กรุณากรอรหัสผ่าน.";
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = "คุณยังไม่ได้ยืนยันรหัสผ่าน. กรุณายืนยันรหัสผ่านเดิมอีกครั้ง.";
?> \ No newline at end of file
diff --git a/language/tr_TR/common.lang.php b/language/tr_TR/common.lang.php
index 6e720d802..5a62799aa 100644
--- a/language/tr_TR/common.lang.php
+++ b/language/tr_TR/common.lang.php
@@ -251,7 +251,6 @@ $lang['Photos posted within the last %d day.'] = 'Sadece son %d gün içinde yü
$lang['Photos posted within the last %d days.'] = 'Sadece son %d gün içinde yüklenen fotoğraflar.';
$lang['Piwigo Help'] = 'Piwigo yardım';
$lang['Play of slideshow'] = 'Slayt gösterisini yürüt';
-$lang['please enter your password again'] = 'lütfen şifrenizi tekrar giriniz';
$lang['Please enter your username or email address.'] = 'Lütfen kullanıcı adınızı veya e-posta adresinizi giriniz.';
$lang['Please, enter a login'] = 'Lütfen kullanıcı adınızı giriniz';
$lang['Post date'] = 'Gönderim tarihi';
@@ -416,4 +415,6 @@ $lang['Email'] = 'E-posta';
$lang['First Page'] = 'İlk sayfa';
$lang['Go back to the album'] = 'Albüme geri dön';
$lang['Last Page'] = 'Son sayfa';
+$lang['Password is missing. Please enter the password.'] = 'Şifre eksik. Lütfen şifrenizi girin.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Şifre doğrulama eksik. Lütfen seçtiğiniz şifreyi doğrulayın.';
?> \ No newline at end of file
diff --git a/language/uk_UA/common.lang.php b/language/uk_UA/common.lang.php
index 246036cc0..3f1e4022e 100644
--- a/language/uk_UA/common.lang.php
+++ b/language/uk_UA/common.lang.php
@@ -272,7 +272,6 @@ $lang['login mustn\'t end with a space character'] = 'лоґін не повин
$lang['login mustn\'t start with a space character'] = 'лоґін не повинен починатися з пробілу';
$lang['this login is already used'] = 'цей лоґін вже використовується';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'адреса електронної пошти повинна бути у вигляді xxx@yyy.eee (наприклад : jack@altern.org)';
-$lang['please enter your password again'] = 'будь ласка, введіть свій пароль ще раз';
$lang['Auto login'] = 'Автолоґін';
$lang['remove this tag from the list'] = 'видалити цей теґ зі списку';
$lang['representative'] = 'зразок';
@@ -416,4 +415,6 @@ $lang['Email'] = 'Електронна пошта';
$lang['First Page'] = 'Перша сторінка';
$lang['Go back to the album'] = 'Повернутися до альбому';
$lang['Last Page'] = 'Остання сторінка';
+$lang['Password is missing. Please enter the password.'] = 'Пароль відсутній. Будь ласка введіть пароль.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Відсутнє підтвердження пароля. Будь ласка, підтвердіть вибраний пароль.';
?> \ No newline at end of file
diff --git a/language/vi_VN/common.lang.php b/language/vi_VN/common.lang.php
index 5cebc42aa..33fa5b249 100644
--- a/language/vi_VN/common.lang.php
+++ b/language/vi_VN/common.lang.php
@@ -241,7 +241,6 @@ $lang['login mustn\'t end with a space character'] = 'tên tài khoản không
$lang['login mustn\'t start with a space character'] = 'tên tài khoản không được có ký tự trắng đầu tiên';
$lang['this login is already used'] = 'tài khoản này đã được đăng ký trước đó';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'địa chỉ email phải có dạng xxx@yyy.eee (ví dụ : jack@altern.org)';
-$lang['please enter your password again'] = 'vui lòng nhập lại mật khẩu';
$lang['Auto login'] = 'Tự động đăng nhập';
$lang['remove this tag from the list'] = 'bỏ tag này khỏi danh sách';
$lang['representative'] = 'đại diện';
@@ -417,4 +416,6 @@ $lang['Email'] = 'Email';
$lang['First Page'] = 'Trang đầu';
$lang['Go back to the album'] = 'Quay trở lại album';
$lang['Last Page'] = 'Trang cuối';
+$lang['Password is missing. Please enter the password.'] = 'Thiếu mật khẩu. Vui lòng nhập mật khẩu.';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = 'Xác nhận mật khẩu bị thiếu. Vui lòng xác nhận lại mật khẩu đã chọn.';
?> \ No newline at end of file
diff --git a/language/zh_CN/common.lang.php b/language/zh_CN/common.lang.php
index ad0ce4aa6..6299332c2 100644
--- a/language/zh_CN/common.lang.php
+++ b/language/zh_CN/common.lang.php
@@ -242,7 +242,6 @@ $lang['login mustn\'t end with a space character'] = '用户名不能以空格
$lang['login mustn\'t start with a space character'] = '用户名不能以空格开头';
$lang['this login is already used'] = '此用户名已存在';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = '邮箱地址格式必须符合标准的 xxx@yyy.eee (例如: jack@altern.org)';
-$lang['please enter your password again'] = '请再次输入密码';
$lang['Auto login'] = '自动登录';
$lang['remove this tag from the list'] = '从列表中删除此标签';
$lang['representative'] = '相册缩略图';
@@ -419,4 +418,6 @@ $lang['Email'] = '电子邮件';
$lang['First Page'] = '第一页';
$lang['Go back to the album'] = '返回相册';
$lang['Last Page'] = '最后一页';
+$lang['Password is missing. Please enter the password.'] = '密码未输入,请输入密码。';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = '密码确认未完成,请确认所选定的密码。';
?> \ No newline at end of file
diff --git a/language/zh_HK/common.lang.php b/language/zh_HK/common.lang.php
index b1e2cd4cd..2076f87f9 100644
--- a/language/zh_HK/common.lang.php
+++ b/language/zh_HK/common.lang.php
@@ -295,7 +295,6 @@ $lang['in %d sub-albums'] = '在子相簿 %d 中';
$lang['in %d sub-album'] = '在子相簿 %d 中';
$lang['in this album'] = '在這相簿中';
$lang['password updated'] = '密碼已更新';
-$lang['please enter your password again'] = '請再輸入密碼';
$lang['remove this tag from the list'] = '在列表中刪除此標籤';
$lang['representative'] = '相簿縮圖';
$lang['searched words : %s'] = '搜尋詞語: %s';
diff --git a/language/zh_TW/common.lang.php b/language/zh_TW/common.lang.php
index f478309bc..b7576e2a7 100644
--- a/language/zh_TW/common.lang.php
+++ b/language/zh_TW/common.lang.php
@@ -242,7 +242,6 @@ $lang['login mustn\'t end with a space character'] = '用戶名不能以空格
$lang['login mustn\'t start with a space character'] = '用戶名不能以空格開頭';
$lang['this login is already used'] = '用戶名已存在';
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = '郵件地址格式必須符合標準郵件地址格式 xxx@yyy.eee (例如 : jack@altern.org)';
-$lang['please enter your password again'] = '請輸入新密碼';
$lang['Auto login'] = '自動登入';
$lang['remove this tag from the list'] = '刪除此標籤';
$lang['representative'] = '相冊縮略圖';
@@ -417,4 +416,6 @@ $lang['Email'] = '電子郵件';
$lang['First Page'] = '第一頁';
$lang['Go back to the album'] = '返回相冊';
$lang['Last Page'] = '最後一頁';
+$lang['Password is missing. Please enter the password.'] = '密碼沒有輸入,請輸入密碼。';
+$lang['Password confirmation is missing. Please confirm the chosen password.'] = '密碼確認未完成,請確認所選定的密碼。';
?> \ No newline at end of file
diff --git a/register.php b/register.php
index 2fce11d52..4e55fe70d 100644
--- a/register.php
+++ b/register.php
@@ -47,9 +47,17 @@ if (isset($_POST['submit']))
$page['errors'][] = l10n('Invalid/expired form key');
}
- if ($_POST['password'] != $_POST['password_conf'])
+ if(empty($_POST['password']))
{
- $page['errors'][] = l10n('please enter your password again');
+ $page['errors'][] = l10n('Password is missing. Please enter the password.');
+ }
+ else if(empty($_POST['password_conf']))
+ {
+ $page['errors'][] = l10n('Password confirmation is missing. Please confirm the chosen password.');
+ }
+ else if ($_POST['password'] != $_POST['password_conf'])
+ {
+ $page['errors'][] = l10n('The passwords do not match');
}
register_user($_POST['login'],