mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-22 19:07:27 +01:00
[ticket/11192] Add Tebibyte to get_formatted_filesize().
PHPBB3-11192
This commit is contained in:
parent
3ebabc8da2
commit
c699b88bc5
@ -301,6 +301,12 @@ function get_formatted_filesize($value, $string_only = true, $allowed_units = fa
|
||||
global $user;
|
||||
|
||||
$available_units = array(
|
||||
'tb' => array(
|
||||
'min' => 1099511627776, // pow(2, 40)
|
||||
'index' => 4,
|
||||
'si_unit' => 'TB',
|
||||
'iec_unit' => 'TIB',
|
||||
),
|
||||
'gb' => array(
|
||||
'min' => 1073741824, // pow(2, 30)
|
||||
'index' => 3,
|
||||
|
@ -568,9 +568,11 @@ $lang = array_merge($lang, array(
|
||||
'SUBJECT' => 'Subject',
|
||||
'SUBMIT' => 'Submit',
|
||||
|
||||
'TB' => 'TB',
|
||||
'TERMS_USE' => 'Terms of use',
|
||||
'TEST_CONNECTION' => 'Test connection',
|
||||
'THE_TEAM' => 'The team',
|
||||
'TIB' => 'TiB',
|
||||
'TIME' => 'Time',
|
||||
|
||||
'TOO_LARGE' => 'The value you entered is too large.',
|
||||
|
Loading…
x
Reference in New Issue
Block a user