mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-07 01:06:48 +02:00
some fixes.
David, could you check the pass_complex expressions? They are: .* PASS_TYPE_ANY (any characters are allowed, no check) [a-zA-Z] PASS_TYPE_CASE (password must contain alphanumerics) [a-zA-Z0-9] PASS_TYPE_ALPHA (password must contain alphanumerics and numbers) [a-zA-Z\W] PASS_TYPE_SYMBOL (password must contain alphanumers, numbers and symbols) At the moment the pass complexity check is done within validate_password(), but the expressions are wrong. :) git-svn-id: file:///svn/phpbb/trunk@6317 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -41,7 +41,7 @@ $lang = array_merge($lang, array(
|
||||
|
||||
'LOG_SESSION' => 'Log mail session to critical log',
|
||||
|
||||
'SEND_IMMEDIATLY' => 'Send immediatly',
|
||||
'SEND_IMMEDIATLY' => 'Send immediately',
|
||||
'SEND_TO_GROUP' => 'Send to group',
|
||||
'SEND_TO_USERS' => 'Send to users',
|
||||
'SEND_TO_USERS_EXPLAIN' => 'Entering names here will override any group selected above. Enter each username on a new line.',
|
||||
|
@@ -53,7 +53,7 @@ $lang = array_merge($lang, array(
|
||||
'BBCODE_S_HELP' => 'Font color: [color=red]text[/color] Tip: you can also use color=#FF0000',
|
||||
'BBCODE_U_HELP' => 'Underline text: [u]text[/u] (alt+u)',
|
||||
'BBCODE_W_HELP' => 'Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url] (alt+w)',
|
||||
'BBCODE_D_HELP' => 'Flash: [flash=height,width]http://url[/flash] (alt+d)',
|
||||
'BBCODE_D_HELP' => 'Flash: [flash=width,height]http://url[/flash] (alt+d)',
|
||||
'BUMP_ERROR' => 'You cannot bump this topic so soon after the last post.',
|
||||
|
||||
'CANNOT_DELETE_REPLIED' => 'Sorry but you may only delete posts which have not been replied to.',
|
||||
|
@@ -120,7 +120,6 @@ $lang = array_merge($lang, array(
|
||||
'CANNOT_REMOVE_FOLDER' => 'This folder can not be removed.',
|
||||
'CHANGE_DEFAULT_GROUP' => 'Change default group',
|
||||
'CHANGE_PASSWORD' => 'Change password',
|
||||
'CHANGE_PASSWORD_EXPLAIN' => 'Must be between %1$d and %2$d characters.',
|
||||
'CLICK_RETURN_FOLDER' => '%1$sReturn to your "%3$s" folder%2$s',
|
||||
'CONFIRMATION' => 'Confirmation of registration',
|
||||
'CONFIRM_EMAIL' => 'Confirm email address',
|
||||
@@ -225,6 +224,8 @@ $lang = array_merge($lang, array(
|
||||
|
||||
'IF_FOLDER_FULL' => 'If folder is full',
|
||||
'IMPORTANT_NEWS' => 'Important announcements',
|
||||
'INVALID_CHARS_USERNAME' => 'The username contains forbidden characters.',
|
||||
'INVALID_CHARS_NEW_PASSWORD'=> 'The password does not contain the required characters.',
|
||||
'ITEMS_REQUIRED' => 'The items marked with * are required profile fields and need to be filled out',
|
||||
|
||||
'JOIN_SELECTED' => 'Join selected',
|
||||
@@ -261,7 +262,6 @@ $lang = array_merge($lang, array(
|
||||
'NEW_FOLDER_NAME' => 'New folder name',
|
||||
'NEW_PASSWORD' => 'Password',
|
||||
'NEW_PASSWORD_ERROR' => 'The passwords you entered do not match.',
|
||||
'NEW_PASSWORD_EXPLAIN' => 'Must be between %1$d and %2$d characters.',
|
||||
'NOTIFY_METHOD' => 'Notification method',
|
||||
'NOTIFY_METHOD_BOTH' => 'Both',
|
||||
'NOTIFY_METHOD_EMAIL' => 'Email only',
|
||||
@@ -313,6 +313,10 @@ $lang = array_merge($lang, array(
|
||||
'NO_WATCHED_FORUMS' => 'You are not watching any forums.',
|
||||
'NO_WATCHED_TOPICS' => 'You are not watching any topics.',
|
||||
|
||||
'PASS_TYPE_ALPHA_EXPLAIN' => 'Password must be between %1$d and %2$d chars long and must contain alphanumerics',
|
||||
'PASS_TYPE_ANY_EXPLAIN' => 'Must be between %1$d and %2$d characters.',
|
||||
'PASS_TYPE_CASE_EXPLAIN' => 'Password must be between %1$d and %2$d chars long and must be mixed case',
|
||||
'PASS_TYPE_SYMBOL_EXPLAIN' => 'Password must be between %1$d and %2$d chars long and must contain symbols',
|
||||
'PASSWORD_ACTIVATED' => 'Your new password has been activated',
|
||||
'PASSWORD_UPDATED' => 'Your password has been sent successfully to your original email address.',
|
||||
'PERMISSIONS_RESTORED' => 'Successfully restored original permissions.',
|
||||
|
Reference in New Issue
Block a user