diff options
author | cash <cash.costello@gmail.com> | 2011-10-05 21:28:30 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-10-05 21:28:30 -0400 |
commit | 4706f47ca0b19d9baa45742ae7c8d270c42e9490 (patch) | |
tree | a89a44d6138c448e0f26030096179369d9a4350d /languages | |
parent | 2be122cb5032567e88bb926b8aac250fd488cf68 (diff) | |
download | elgg-4706f47ca0b19d9baa45742ae7c8d270c42e9490.tar.gz elgg-4706f47ca0b19d9baa45742ae7c8d270c42e9490.tar.bz2 |
Fixes #3704 displaying error messages when adding users through admin interface
Diffstat (limited to 'languages')
-rw-r--r-- | languages/en.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/languages/en.php b/languages/en.php index c4eb212c4..f1bc8e3b7 100644 --- a/languages/en.php +++ b/languages/en.php @@ -473,13 +473,14 @@ $english = array( 'registerok' => "You have successfully registered for %s.", 'registerbad' => "Your registration was unsuccessful because of an unknown error.", 'registerdisabled' => "Registration has been disabled by the system administrator", + 'register:fields' => 'All fields are required', 'registration:notemail' => 'The email address you provided does not appear to be a valid email address.', 'registration:userexists' => 'That username already exists', 'registration:usernametooshort' => 'Your username must be a minimum of %u characters long.', 'registration:passwordtooshort' => 'The password must be a minimum of %u characters long.', 'registration:dupeemail' => 'This email address has already been registered.', - 'registration:invalidchars' => 'Sorry, your username contains the following invalid character: %s. All of these characters are invalid: %s', + 'registration:invalidchars' => 'Sorry, your username contains the character %s which is invalid. The following characters are invalid: %s', 'registration:emailnotvalid' => 'Sorry, the email address you entered is invalid on this system', 'registration:passwordnotvalid' => 'Sorry, the password you entered is invalid on this system', 'registration:usernamenotvalid' => 'Sorry, the username you entered is invalid on this system', |