Adding react-intl i18n to the frontend. No translations yet
This commit is contained in:
		
					parent
					
						
							
								546c4718e7
							
						
					
				
			
			
				commit
				
					
						01e43c3e57
					
				
			
		
					 31 changed files with 263 additions and 223 deletions
				
			
		|  | @ -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)); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue