mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 17:48:01 +01:00
Help translators with meaning of MB and GB. They are definitely not Macbook and Great Britain
git-svn-id: http://svn.automattic.com/wordpress/trunk@14177 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fda80bc7f6
commit
16989ec444
@ -30,9 +30,9 @@ function check_upload_size( $file ) {
|
|||||||
$space_left = $space_allowed - $space_used;
|
$space_left = $space_allowed - $space_used;
|
||||||
$file_size = filesize( $file['tmp_name'] );
|
$file_size = filesize( $file['tmp_name'] );
|
||||||
if ( $space_left < $file_size )
|
if ( $space_left < $file_size )
|
||||||
$file['error'] = sprintf( __( 'Not enough space to upload. %1$s Kb needed.' ), number_format( ($file_size - $space_left) /1024 ) );
|
$file['error'] = sprintf( __( 'Not enough space to upload. %1$s KB needed.' ), number_format( ($file_size - $space_left) /1024 ) );
|
||||||
if ( $file_size > ( 1024 * get_site_option( 'fileupload_maxk', 1500 ) ) )
|
if ( $file_size > ( 1024 * get_site_option( 'fileupload_maxk', 1500 ) ) )
|
||||||
$file['error'] = sprintf(__('This file is too big. Files must be less than %1$s Kb in size.'), get_site_option( 'fileupload_maxk', 1500 ) );
|
$file['error'] = sprintf(__('This file is too big. Files must be less than %1$s KB in size.'), get_site_option( 'fileupload_maxk', 1500 ) );
|
||||||
if ( upload_is_user_over_quota( false ) ) {
|
if ( upload_is_user_over_quota( false ) ) {
|
||||||
$file['error'] = __( 'You have used your space quota. Please delete files before uploading.' );
|
$file['error'] = __( 'You have used your space quota. Please delete files before uploading.' );
|
||||||
}
|
}
|
||||||
@ -447,8 +447,10 @@ function display_space_usage() {
|
|||||||
|
|
||||||
if ( $space > 1000 ) {
|
if ( $space > 1000 ) {
|
||||||
$space = number_format( $space / 1024 );
|
$space = number_format( $space / 1024 );
|
||||||
|
/* translators: Gigabytes */
|
||||||
$space .= __( 'GB' );
|
$space .= __( 'GB' );
|
||||||
} else {
|
} else {
|
||||||
|
/* translators: Megabytes */
|
||||||
$space .= __( 'MB' );
|
$space .= __( 'MB' );
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user