翻译错误消息Material-ui

时间:2016-07-11 08:14:40

标签: reactjs react-router material-ui

我有一个使用Material-ui TextField的表单,我正在翻译我的所有字段:

 <TextField autoFocus={true} name='formName'
                   placeholder={this.context.intl.formatMessage( translations.formNameInputPlaceholder )}
                   value={value || ''}
                   fullWidth={true}
                   errorText={ this.shouldShowError( fieldValidity ) ? <FormattedMessage { ...translations.notValid} /> : null }
                   onChange={ e => onChange( e.target.value ) }/>

但是,errorText永远不会被翻译并继续使用默认语言环境。

1 个答案:

答案 0 :(得分:0)

好的,这个问题在15.2.1反应中得到了解决。

https://github.com/callemall/material-ui/issues/2494