mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-24 10:31:57 +02:00
[ticket/13055] Add string profile fields validation options to support unicode
PHPBB3-13055
This commit is contained in:
@@ -119,6 +119,12 @@ $lang = array_merge($lang, array(
|
||||
|
||||
'LANG_SPECIFIC_OPTIONS' => 'Language specific options [<strong>%s</strong>]',
|
||||
|
||||
'LETTER_NUM_DOTS' => 'Any letters, numbers and dots (periods)',
|
||||
'LETTER_NUM_ONLY' => 'Any letters and numbers',
|
||||
'LETTER_NUM_PUNCTUATION' => 'Any letters, numbers, comma, dots, underscores and dashes beginning with any letter',
|
||||
'LETTER_NUM_SPACERS' => 'Any letters, numbers and spacers',
|
||||
'LETTER_NUM_UNDERSCORE' => 'Any letters, numbers and underscores',
|
||||
|
||||
'MAX_FIELD_CHARS' => 'Maximum number of characters',
|
||||
'MAX_FIELD_NUMBER' => 'Highest allowed number',
|
||||
'MIN_FIELD_CHARS' => 'Minimum number of characters',
|
||||
|
@@ -214,6 +214,11 @@ $lang = array_merge($lang, array(
|
||||
'FIELD_INVALID_CHARS_ALPHA_PUNCTUATION' => 'The field “%s” has invalid characters, only alphanumeric or _,-. characters are allowed and the first character must be alphabetic.',
|
||||
'FIELD_INVALID_CHARS_ALPHA_SPACERS' => 'The field “%s” has invalid characters, only alphanumeric, space or -+_[] characters are allowed.',
|
||||
'FIELD_INVALID_CHARS_ALPHA_UNDERSCORE' => 'The field “%s” has invalid characters, only alphanumeric or _ characters are allowed.',
|
||||
'FIELD_INVALID_CHARS_LETTER_NUM_DOTS' => 'The field “%s” has invalid characters, only letter, number or . characters are allowed.',
|
||||
'FIELD_INVALID_CHARS_LETTER_NUM_ONLY' => 'The field “%s” has invalid characters, only letter and number characters are allowed.',
|
||||
'FIELD_INVALID_CHARS_LETTER_NUM_PUNCTUATION' => 'The field “%s” has invalid characters, only letter, number or _,-. characters are allowed and the first character must be alphabetic.',
|
||||
'FIELD_INVALID_CHARS_LETTER_NUM_SPACERS' => 'The field “%s” has invalid characters, only letter, number, space or -+_[] characters are allowed.',
|
||||
'FIELD_INVALID_CHARS_LETTER_NUM_UNDERSCORE' => 'The field “%s” has invalid characters, only letter, number or _ characters are allowed.',
|
||||
'FIELD_INVALID_DATE' => 'The field “%s” has an invalid date.',
|
||||
'FIELD_INVALID_URL' => 'The field “%s” has an invalid url.',
|
||||
'FIELD_INVALID_VALUE' => 'The field “%s” has an invalid value.',
|
||||
|
Reference in New Issue
Block a user