diff options
author | Andreas Fischer <bantu@phpbb.com> | 2011-11-15 16:46:08 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-11-15 16:46:08 +0100 |
commit | 39f8592312933eba903818f1a4de6bc5ac2b3dd0 (patch) | |
tree | 2b95f370bb32717192454c90a8a1748fa7c727e3 /phpBB/language/en | |
parent | f7286e1abe5ae2b0ec81f8f7ce39ca0b3062ed16 (diff) | |
parent | f1a53659bdacdc045943b8a09240e6ecadcc5360 (diff) | |
download | forums-39f8592312933eba903818f1a4de6bc5ac2b3dd0.tar forums-39f8592312933eba903818f1a4de6bc5ac2b3dd0.tar.gz forums-39f8592312933eba903818f1a4de6bc5ac2b3dd0.tar.bz2 forums-39f8592312933eba903818f1a4de6bc5ac2b3dd0.tar.xz forums-39f8592312933eba903818f1a4de6bc5ac2b3dd0.zip |
Merge remote-tracking branch 'rxu/ticket/10419' into develop-olympus
* rxu/ticket/10419:
[ticket/10419] Reword the language strings
[ticket/10419] Reword some language strings, minor code changes
[ticket/10419] Add mbstring PHP ini parameters checks to ACP
Diffstat (limited to 'phpBB/language/en')
-rw-r--r-- | phpBB/language/en/acp/common.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/phpBB/language/en/acp/common.php b/phpBB/language/en/acp/common.php index 8c71e936b3..ef8d6f1cb3 100644 --- a/phpBB/language/en/acp/common.php +++ b/phpBB/language/en/acp/common.php @@ -327,6 +327,16 @@ $lang = array_merge($lang, array( 'DATABASE_SERVER_INFO' => 'Database server', 'DATABASE_SIZE' => 'Database size', + // Enviroment configuration checks, mbstring related + 'ERROR_MBSTRING_FUNC_OVERLOAD' => 'Function overloading is improperly configured', + 'ERROR_MBSTRING_FUNC_OVERLOAD_EXPLAIN' => '<var>mbstring.func_overload</var> must be set to either 0 or 4. You can check the current value on the <samp>PHP information</samp> page.', + 'ERROR_MBSTRING_ENCODING_TRANSLATION' => 'Transparent character encoding is improperly configured', + 'ERROR_MBSTRING_ENCODING_TRANSLATION_EXPLAIN' => '<var>mbstring.encoding_translation</var> must be set to 0. You can check the current value on the <samp>PHP information</samp> page.', + 'ERROR_MBSTRING_HTTP_INPUT' => 'HTTP input character conversion is improperly configured', + 'ERROR_MBSTRING_HTTP_INPUT_EXPLAIN' => '<var>mbstring.http_input</var> must be set to <samp>pass</samp>. You can check the current value on the <samp>PHP information</samp> page.', + 'ERROR_MBSTRING_HTTP_OUTPUT' => 'HTTP output character conversion is improperly configured', + 'ERROR_MBSTRING_HTTP_OUTPUT_EXPLAIN' => '<var>mbstring.http_output</var> must be set to <samp>pass</samp>. You can check the current value on the <samp>PHP information</samp> page.', + 'FILES_PER_DAY' => 'Attachments per day', 'FORUM_STATS' => 'Board statistics', |