Changeset 45082 for trunk/src/wp-admin/includes/media.php
- Timestamp:
- 04/01/2019 12:23:54 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/media.php
r44785 r45082 2899 2899 */ 2900 2900 function multisite_over_quota_message() { 2901 echo '<p>' . sprintf( __( 'Sorry, you have used all of your storage quota of %s MB.' ), get_space_allowed() ) . '</p>'; 2901 echo '<p>' . sprintf( 2902 /* translators: %s: allowed space allocation */ 2903 __( 'Sorry, you have used your space allocation of %s. Please delete some files to upload more files.' ), 2904 size_format( get_space_allowed() * MB_IN_BYTES ) 2905 ) . '</p>'; 2902 2906 } 2903 2907
Note: See TracChangeset
for help on using the changeset viewer.