{getLangText('Drag files here')}
+{getLangText('Drag %s here', this.props.fileClassToUpload.plural)}
{getLangText('or')}
- {getLangText('choose files to upload')} + {getLangText('choose %s to upload', this.props.fileClassToUpload.plural)} ); } else { - let dialog = queryParams.method === 'hash' ? getLangText('choose a file to hash') : getLangText('choose a file to upload'); + let dialog = queryParams.method === 'hash' ? getLangText('choose a %s to hash', this.props.fileClassToUpload.singular) : getLangText('choose a file to upload'); return ( -{getLangText('Drag a file here')}
+{getLangText('Drag a %s here', this.props.fileClassToUpload.singular)}
{getLangText('or')}
+ enableLocalHashing={this.props.enableLocalHashing} + fileClassToUpload={this.props.fileClassToUpload}/> ); }