Number parameters

This commit is contained in:
Siebrand Mazeland 2010-07-28 22:17:54 +02:00
parent 97728791a1
commit e694da24a9
1 changed files with 2 additions and 2 deletions

View File

@ -182,8 +182,8 @@ class File extends Memcached_DataObject
function isRespectsQuota($user,$fileSize) {
if ($fileSize > common_config('attachments', 'file_quota')) {
return sprintf(_('No file may be larger than %d bytes ' .
'and the file you sent was %d bytes. Try to upload a smaller version.'),
return sprintf(_('No file may be larger than %1$d bytes ' .
'and the file you sent was %2$d bytes. Try to upload a smaller version.'),
common_config('attachments', 'file_quota'), $fileSize);
}