From bf69494f8441ad20a7bafacf4a1c3ac7f154d239 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Tue, 25 May 2010 17:53:31 +0000 Subject: [PATCH] Update upload quota filled message to mention the limit and not suggest file deletion. fixes #13479 git-svn-id: https://develop.svn.wordpress.org/trunk@14897 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/media.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/media.php b/wp-admin/includes/media.php index 9282444228..029f6f1c19 100644 --- a/wp-admin/includes/media.php +++ b/wp-admin/includes/media.php @@ -1434,7 +1434,7 @@ jQuery(document).ready(function($){ ' . __('Sorry, you must delete files before you can upload any more.') . '

'; + echo '

' . sprintf( __( 'Sorry, you have filled your storage quota (%s MB).' ), get_space_allowed() ) . '

'; return; }