Adding react-intl i18n to the frontend. No translations yet
This commit is contained in:
@ -1,8 +1,9 @@
|
||||
import { connect } from 'react-redux';
|
||||
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
||||
import { connect } from 'react-redux';
|
||||
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
||||
import StatusListContainer from '../ui/containers/status_list_container';
|
||||
import Column from '../ui/components/column';
|
||||
import Column from '../ui/components/column';
|
||||
import { refreshTimeline } from '../../actions/timelines';
|
||||
import { injectIntl } from 'react-intl';
|
||||
|
||||
const HomeTimeline = React.createClass({
|
||||
|
||||
@ -17,8 +18,10 @@ const HomeTimeline = React.createClass({
|
||||
},
|
||||
|
||||
render () {
|
||||
const { intl } = this.props;
|
||||
|
||||
return (
|
||||
<Column icon='home' heading='Home'>
|
||||
<Column icon='home' heading={intl.formatMessage({ id: 'column.home', defaultMessage: 'Home' })}>
|
||||
<StatusListContainer {...this.props} type='home' />
|
||||
</Column>
|
||||
);
|
||||
@ -26,4 +29,4 @@ const HomeTimeline = React.createClass({
|
||||
|
||||
});
|
||||
|
||||
export default connect()(HomeTimeline);
|
||||
export default connect()(injectIntl(HomeTimeline));
|
||||
|
Reference in New Issue
Block a user