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:
markjaquith 2010-05-25 17:53:31 +00:00
parent 7d1d1015f5
commit e3ffb4c442
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}