diff options
| author | rxu <rxu@mail.ru> | 2010-10-20 00:25:31 +0800 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2010-10-25 21:47:13 +0200 |
| commit | 257e264af74e57b55238de18f1f97e0e5b7a299a (patch) | |
| tree | ad3133d3086a365b9d80b468fd8425a95c8e42e9 /phpBB/language/en/common.php | |
| parent | d503272645d0f14daa2c2664e04dbdc33da9379e (diff) | |
| download | forums-257e264af74e57b55238de18f1f97e0e5b7a299a.tar forums-257e264af74e57b55238de18f1f97e0e5b7a299a.tar.gz forums-257e264af74e57b55238de18f1f97e0e5b7a299a.tar.bz2 forums-257e264af74e57b55238de18f1f97e0e5b7a299a.tar.xz forums-257e264af74e57b55238de18f1f97e0e5b7a299a.zip | |
[ticket/9478] Validate maximum number of allowed recipients per PM value.
Do not allow to enter the value larger than it's allowed by MySQL mediumnt(8).
PHPBB3-9478
Diffstat (limited to 'phpBB/language/en/common.php')
| -rw-r--r-- | phpBB/language/en/common.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php index bc38c1563d..e79e5a6de3 100644 --- a/phpBB/language/en/common.php +++ b/phpBB/language/en/common.php @@ -566,6 +566,9 @@ $lang = array_merge($lang, array( 'TEST_CONNECTION' => 'Test connection', 'THE_TEAM' => 'The team', 'TIME' => 'Time', + + 'TOO_LARGE' => 'The value you entered is too large.', + 'TOO_LARGE_MAX_RECIPIENTS' => 'The value of <strong>Maximum number of allowed recipients per private message</strong> setting you entered is too large.', 'TOO_LONG' => 'The value you entered is too long.', @@ -608,6 +611,9 @@ $lang = array_merge($lang, array( 'TOO_SHORT_EMAIL_CONFIRM' => 'The e-mail address confirmation you entered is too short.', 'TOO_SHORT_WEBSITE' => 'The website address you entered is too short.', 'TOO_SHORT_YIM' => 'The Yahoo! Messenger name you entered is too short.', + + 'TOO_SMALL' => 'The value you entered is too small.', + 'TOO_SMALL_MAX_RECIPIENTS' => 'The value of <strong>Maximum number of allowed recipients per private message</strong> setting you entered is too small.', 'TOPIC' => 'Topic', 'TOPICS' => 'Topics', |
