diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2008-02-27 15:09:04 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2008-02-27 15:09:04 +0000 |
commit | 30f32e8bb7e3f1c36d4931c3a9fc263f00aa1f4d (patch) | |
tree | d758e1d47e14db5dadd7ef6d04df4be5809a1558 /phpBB/language | |
parent | eaf97f2a672af99f9704171ecedc5676cf3dad7b (diff) | |
download | forums-30f32e8bb7e3f1c36d4931c3a9fc263f00aa1f4d.tar forums-30f32e8bb7e3f1c36d4931c3a9fc263f00aa1f4d.tar.gz forums-30f32e8bb7e3f1c36d4931c3a9fc263f00aa1f4d.tar.bz2 forums-30f32e8bb7e3f1c36d4931c3a9fc263f00aa1f4d.tar.xz forums-30f32e8bb7e3f1c36d4931c3a9fc263f00aa1f4d.zip |
Adding new validation options for ACP values
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8406 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language')
-rw-r--r-- | phpBB/language/en/acp/common.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/language/en/acp/common.php b/phpBB/language/en/acp/common.php index 0c6014bc24..c3f884bc8e 100644 --- a/phpBB/language/en/acp/common.php +++ b/phpBB/language/en/acp/common.php @@ -262,6 +262,11 @@ $lang = array_merge($lang, array( 'SELECT_ANONYMOUS' => 'Select anonymous user', 'SELECT_OPTION' => 'Select option', + 'SETTING_TOO_LOW' => 'The entered value for the setting %s is too low. The minimal allowed value is %d.', + 'SETTING_TOO_BIG' => 'The entered value for the setting %s is too big. The maximal allowed value is %d.', + 'SETTING_TOO_LONG' => 'The entered value for the setting %s is too long. The maximal allowed length is %d.', + 'SETTING_TOO_SHORT' => 'The entered value for the setting %s is not long enough. The minimal allowed length is %d.', + 'UCP' => 'User Control Panel', 'USERNAMES_EXPLAIN' => 'Place each username on a separate line.', 'USER_CONTROL_PANEL' => 'User Control Panel', |