mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
I18N: Merge similar strings about allowed space allocation in Multisite.
Props ramiy, Jonathandejong, pento. Fixes #42223. git-svn-id: https://develop.svn.wordpress.org/trunk@45082 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -226,7 +226,11 @@ function upload_is_user_over_quota( $echo = true ) {
|
||||
|
||||
if ( ( $space_allowed - $space_used ) < 0 ) {
|
||||
if ( $echo ) {
|
||||
_e( 'Sorry, you have used your space allocation. Please delete some files to upload more files.' );
|
||||
printf(
|
||||
/* translators: %s: allowed space allocation */
|
||||
__( 'Sorry, you have used your space allocation of %s. Please delete some files to upload more files.' ),
|
||||
size_format( $space_allowed * MB_IN_BYTES )
|
||||
);
|
||||
}
|
||||
return true;
|
||||
} else {
|
||||
@@ -1002,7 +1006,7 @@ function confirm_delete_users( $users ) {
|
||||
endif;
|
||||
|
||||
submit_button( __( 'Confirm Deletion' ), 'primary' );
|
||||
?>
|
||||
?>
|
||||
</form>
|
||||
<?php
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user