Changeset 45082 for trunk/src/wp-admin/includes/ms.php
- Timestamp:
- 04/01/2019 12:23:54 PM (7 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/ms.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ms.php
r44905 r45082 227 227 if ( ( $space_allowed - $space_used ) < 0 ) { 228 228 if ( $echo ) { 229 _e( 'Sorry, you have used your space allocation. Please delete some files to upload more files.' ); 229 printf( 230 /* translators: %s: allowed space allocation */ 231 __( 'Sorry, you have used your space allocation of %s. Please delete some files to upload more files.' ), 232 size_format( $space_allowed * MB_IN_BYTES ) 233 ); 230 234 } 231 235 return true; … … 1003 1007 1004 1008 submit_button( __( 'Confirm Deletion' ), 'primary' ); 1005 ?>1009 ?> 1006 1010 </form> 1007 1011 <?php
Note: See TracChangeset
for help on using the changeset viewer.