| 767 | | __( 'The uploaded file exceeds the upload_max_filesize directive in php.ini.' ), |
| 768 | | __( 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.' ), |
| | 767 | sprintf( |
| | 768 | /* translators: 1: upload_max_filesize 2: php.ini */ |
| | 769 | __( 'The uploaded file exceeds the %1$s directive in %2$s.' ), |
| | 770 | 'upload_max_filesize', |
| | 771 | 'php.ini' |
| | 772 | ), |
| | 773 | sprintf( |
| | 774 | /* translators: %s: MAX_FILE_SIZE */ |
| | 775 | __( 'The uploaded file exceeds the %s directive that was specified in the HTML form.' ), |
| | 776 | 'MAX_FILE_SIZE' |
| | 777 | ), |