diff options
author | matthias.grimm <matthias.grimm@users.sourceforge.net> | 2005-05-08 22:01:29 +0200 |
---|---|---|
committer | matthias.grimm <matthias.grimm@users.sourceforge.net> | 2005-05-08 22:01:29 +0200 |
commit | cab2716ac2fbdb0903e4d1c357c8fb630fdd6b0d (patch) | |
tree | 60e0f46e797d406c3f15c6d9275b5208596476bf /lang/en/lang.php | |
parent | 7c37db8ace6aa37def9e7e926b8e8be34d4cde82 (diff) | |
download | rpg-cab2716ac2fbdb0903e4d1c357c8fb630fdd6b0d.tar.gz rpg-cab2716ac2fbdb0903e4d1c357c8fb630fdd6b0d.tar.bz2 |
user registration without email
This patch extends the user registration with a more direct
way without the need for an valid email address. The user
password is queried in the registration form and not automatically
generated and sent by email. This mode could be configured with the
new option 'autopasswd'. Some new texts were added for translation
but only english and german translation databases have been updated
yet.
darcs-hash:20050508200129-45302-ad4f2cf1d18514c76373cb6d6015e74712638402.gz
Diffstat (limited to 'lang/en/lang.php')
-rw-r--r-- | lang/en/lang.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lang/en/lang.php b/lang/en/lang.php index 935398d6d..b56e489c4 100644 --- a/lang/en/lang.php +++ b/lang/en/lang.php @@ -32,6 +32,7 @@ $lang['btn_delete'] = 'Delete'; $lang['loggedinas'] = 'Logged in as'; $lang['user'] = 'Username'; $lang['pass'] = 'Password'; +$pass['passchk'] = 'once again'; $lang['remember'] = 'Remember me'; $lang['fullname'] = 'Full name'; $lang['email'] = 'E-Mail'; @@ -40,9 +41,11 @@ $lang['badlogin'] = 'Sorry, username or password was wrong.'; $lang['regmissing'] = 'Sorry, you must fill in all fields.'; $lang['reguexists'] = 'Sorry, a user with this login already exists.'; -$lang['regsuccess'] = 'The user was created. The password was sent by mail.'; +$lang['regsuccess'] = 'The user has been created and the password was sent by email.'; +$lang['regsuccess2']= 'The user has been created.'; $lang['regmailfail']= 'Looks like there was an error on sending the password mail. Please contact the admin!'; $lang['regbadmail'] = 'The given email address looks invalid - if you think this is an error, contact the admin'; +$lang['regbadpass'] = 'The two given passwords are not identically, please try again.'; $lang['regpwmail'] = 'Your DokuWiki password'; $lang['reghere'] = 'You don\'t have an account yet? Just get one'; |