${image.isUploading === true ? '' + i18nText('Uploading...') + '
' : ''}
${image.hasError === true ? '' + i18nText('Error') + '
' : ''}
${image.predictions.map(function(prediction) {
return '' + prediction.label + ' = ' + format.percent(prediction.probability, 5) + '
'
}).join('')}