mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 17:48:01 +01:00
Update upload quota filled message to mention the limit and not suggest file deletion. fixes #13479
git-svn-id: http://svn.automattic.com/wordpress/trunk@14897 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7d1d1015f5
commit
e3ffb4c442
@ -1434,7 +1434,7 @@ jQuery(document).ready(function($){
|
||||
<?php
|
||||
// Check quota for this blog if multisite
|
||||
if ( is_multisite() && !is_upload_space_available() ) {
|
||||
echo '<p>' . __('Sorry, you must delete files before you can upload any more.') . '</p>';
|
||||
echo '<p>' . sprintf( __( 'Sorry, you have filled your storage quota (%s MB).' ), get_space_allowed() ) . '</p>';
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user