mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 13:28:55 +00:00
[ticket/10419] Reword some language strings, minor code changes
PHPBB3-10419
This commit is contained in:
parent
88b31c2ab3
commit
2918fbc970
2 changed files with 8 additions and 8 deletions
|
@ -600,15 +600,15 @@ class acp_main
|
|||
$template->assign_var('S_WRITABLE_CONFIG', (bool) (@fileperms($phpbb_root_path . 'config.' . $phpEx) & 0x0002));
|
||||
}
|
||||
|
||||
if (@extension_loaded('mbstring'))
|
||||
if (extension_loaded('mbstring'))
|
||||
{
|
||||
$template->assign_vars(array(
|
||||
'S_MBSTRING_LOADED' => true,
|
||||
'S_MBSTRING_FUNC_OVERLOAD_FAIL' => (intval(@ini_get('mbstring.func_overload')) & (MB_OVERLOAD_MAIL|MB_OVERLOAD_STRING)),
|
||||
'S_MBSTRING_FUNC_OVERLOAD_FAIL' => (intval(@ini_get('mbstring.func_overload')) & (MB_OVERLOAD_MAIL | MB_OVERLOAD_STRING)),
|
||||
'S_MBSTRING_ENCODING_TRANSLATION_FAIL' => (@ini_get('mbstring.encoding_translation') != 0),
|
||||
'S_MBSTRING_HTTP_INPUT_FAIL' => (@ini_get('mbstring.http_input') != 'pass'),
|
||||
'S_MBSTRING_HTTP_OUTPUT_FAIL' => (@ini_get('mbstring.http_output') != 'pass'))
|
||||
);
|
||||
'S_MBSTRING_HTTP_OUTPUT_FAIL' => (@ini_get('mbstring.http_output') != 'pass'),
|
||||
));
|
||||
}
|
||||
|
||||
// Fill dbms version if not yet filled
|
||||
|
|
|
@ -328,13 +328,13 @@ $lang = array_merge($lang, array(
|
|||
'DATABASE_SIZE' => 'Database size',
|
||||
|
||||
// Enviroment configuration checks, mbstring related
|
||||
'ERROR_MBSTRING_FUNC_OVERLOAD' => 'Functions overloading setting failed',
|
||||
'ERROR_MBSTRING_FUNC_OVERLOAD' => 'Function overloading setting is invalid',
|
||||
'ERROR_MBSTRING_FUNC_OVERLOAD_EXPLAIN' => '<var>mbstring.func_overload</var> must be set to either 0 or 4. You can check current value on <samp>PHP information</samp> page.',
|
||||
'ERROR_MBSTRING_ENCODING_TRANSLATION' => 'Transparent character encoding setting failed',
|
||||
'ERROR_MBSTRING_ENCODING_TRANSLATION' => 'Transparent character encoding setting is invalid',
|
||||
'ERROR_MBSTRING_ENCODING_TRANSLATION_EXPLAIN' => '<var>mbstring.encoding_translation</var> must be set to 0. You can check current value on <samp>PHP information</samp> page.',
|
||||
'ERROR_MBSTRING_HTTP_INPUT' => 'HTTP input character conversion setting failed',
|
||||
'ERROR_MBSTRING_HTTP_INPUT' => 'HTTP input character conversion setting is invalid',
|
||||
'ERROR_MBSTRING_HTTP_INPUT_EXPLAIN' => '<var>mbstring.http_input</var> must be set to <samp>pass</samp>. You can check current value on <samp>PHP information</samp> page.',
|
||||
'ERROR_MBSTRING_HTTP_OUTPUT' => 'HTTP output character conversion setting failed',
|
||||
'ERROR_MBSTRING_HTTP_OUTPUT' => 'HTTP output character conversion setting is invalid',
|
||||
'ERROR_MBSTRING_HTTP_OUTPUT_EXPLAIN' => '<var>mbstring.http_output</var> must be set to <samp>pass</samp>. You can check current value on <samp>PHP information</samp> page.',
|
||||
|
||||
'FILES_PER_DAY' => 'Attachments per day',
|
||||
|
|
Loading…
Add table
Reference in a new issue