diff options
author | Graham Eames <grahamje@users.sourceforge.net> | 2006-04-08 18:34:13 +0000 |
---|---|---|
committer | Graham Eames <grahamje@users.sourceforge.net> | 2006-04-08 18:34:13 +0000 |
commit | 5b24c3a7fb5eaef0c6a1374eff1435322097f0b9 (patch) | |
tree | 8445861b356b3263d84956c4954c7acbadfb0236 /phpBB/language | |
parent | 3db70734152d6d4d88b8b9775d48e30dad34f587 (diff) | |
download | forums-5b24c3a7fb5eaef0c6a1374eff1435322097f0b9.tar forums-5b24c3a7fb5eaef0c6a1374eff1435322097f0b9.tar.gz forums-5b24c3a7fb5eaef0c6a1374eff1435322097f0b9.tar.bz2 forums-5b24c3a7fb5eaef0c6a1374eff1435322097f0b9.tar.xz forums-5b24c3a7fb5eaef0c6a1374eff1435322097f0b9.zip |
Check the password set in the install against the default rules
git-svn-id: file:///svn/phpbb/trunk@5776 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language')
-rwxr-xr-x | phpBB/language/en/install.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/language/en/install.php b/phpBB/language/en/install.php index 336819d020..3d186b5cd9 100755 --- a/phpBB/language/en/install.php +++ b/phpBB/language/en/install.php @@ -32,6 +32,7 @@ $lang = array_merge($lang, array( 'ADMIN_CONFIG' => 'Admin Configuration', 'ADMIN_PASSWORD' => 'Administrator password', 'ADMIN_PASSWORD_CONFIRM' => 'Confirm administrator password', + 'ADMIN_PASSWORD_EXPLAIN' => '(Please enter a password between 6 and 30 characters is length)', 'ADMIN_TEST' => 'Check administrator settings', 'ADMIN_USERNAME' => 'Administrator username', 'APP_MAGICK' => 'Imagemagick support [ Attachments ]', @@ -127,7 +128,9 @@ $lang = array_merge($lang, array( 'INST_ERR_FTP_LOGIN' => 'Could not login to ftp server, check your username and password', 'INST_ERR_MISSING_DATA' => 'You must fill out all fields in this block', 'INST_ERR_NO_DB' => 'Cannot load the PHP module for the selected database type', - 'INST_ERR_PASSWORD_MISMATCH'=> 'The passwords you entered did not match.', + 'INST_ERR_PASSWORD_MISMATCH' => 'The passwords you entered did not match.', + 'INST_ERR_PASSWORD_TOO_LONG' => 'The password you entered is too long. The maximum length is 30 characters.', + 'INST_ERR_PASSWORD_TOO_SHORT' => 'The password you entered is too short. The minimum length is 6 characters.', 'INST_ERR_PREFIX' => 'Tables with the specified prefix already exist, please choose an alternative.', 'NEXT_STEP' => 'Proceed to next step', |