Use t() 's native method

This commit is contained in:
Pellaeon Lin 2014-01-16 17:51:00 +08:00
parent dbbbfee7de
commit cd6ab29313
1 changed files with 8 additions and 2 deletions

View File

@ -236,13 +236,19 @@ $(document).ready(function() {
// check PHP upload limit // check PHP upload limit
if (selection.totalBytes > $('#upload_limit').val()) { if (selection.totalBytes > $('#upload_limit').val()) {
data.textStatus = 'sizeexceedlimit'; data.textStatus = 'sizeexceedlimit';
data.errorThrown = t('files', 'Total file size {size1} exceeds upload limit {size2}').replace('{size1}', humanFileSize(selection.totalBytes)).replace('{size2}', humanFileSize($('#upload_limit').val())); data.errorThrown = t('files', 'Total file size {size1} exceeds upload limit {size2}', {
'size1': humanFileSize(selection.totalBytes),
'size2': humanFileSize($('#upload_limit').val())
});
} }
// check free space // check free space
if (selection.totalBytes > $('#free_space').val()) { if (selection.totalBytes > $('#free_space').val()) {
data.textStatus = 'notenoughspace'; data.textStatus = 'notenoughspace';
data.errorThrown = t('files', 'Not enough free space, you are uploading {size1} but only {size2} is left').replace('{size1}', humanFileSize(selection.totalBytes)).replace('{size2}', humanFileSize($('#free_space').val())); data.errorThrown = t('files', 'Not enough free space, you are uploading {size1} but only {size2} is left', {
'{size1}': humanFileSize(selection.totalBytes),
'{size2}': humanFileSize($('#free_space').val())
});
} }
// end upload for whole selection on error // end upload for whole selection on error