From ac70a1b77a01165d2a293f60c270f4f0f1181380 Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Thu, 4 Jun 2009 18:49:45 -0700 Subject: Fix internationalization to use one long string and placeholders. Removed the
though since we're trying to avoid structural HTML in internationalized strings. --- modules/gallery/views/simple_uploader.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/gallery/views/simple_uploader.html.php b/modules/gallery/views/simple_uploader.html.php index 81e8c437..79919d50 100644 --- a/modules/gallery/views/simple_uploader.html.php +++ b/modules/gallery/views/simple_uploader.html.php @@ -150,7 +150,7 @@ switch (error_code) { case SWFUpload.QUEUE_ERROR.FILE_EXCEEDS_SIZE_LIMIT: fp.title.html(file.name); - fp.set_status("error", "
upload_max_filesize () php.ini."); + fp.set_status("error", "File is too big. A likely error source is a too low value for upload_max_filesize (%upload_max_filesize) in your php.ini.", array("upload_max_filesize" => ini_get("upload_max_filesize"))) ?>"); break; case SWFUpload.QUEUE_ERROR.ZERO_BYTE_FILE: fp.title.html(file.name); -- cgit v1.2.3