I am trying to do language translation using react-intl
. When I use this <FormattedMessage id='importantNews' />
, it is working perfect. But when I use the following code with intl.formatMessage()
, it is not working and throwing some errors. I don't know what is wrong in it.
import { injectIntl, FormattedMessage } from 'react-intl';
function HelloWorld(props) {
const { intl } = props;
const x = intl.formatMessage('hello') + ' ' + intl.formatMessage('world'); //not working
const y = <FormattedMessage id='hello' />; //working
return (
<button>{x}</button>
);
}
export default injectIntl(HelloWorld);
My root component is like this,
import ReactDOM from 'react-dom';
import { addLocaleData, IntlProvider } from 'react-intl';
import enLocaleData from 'react-intl/locale-data/en';
import taLocaleData from 'react-intl/locale-data/ta';
import HelloWorld from './hello-world';
addLocaleData([
...enLocaleData,
...taLocaleData
]);
const messages = {
en: {
hello: 'Hello',
world: 'World'
},
ta: {
hello: 'வணக்கம்',
world: 'உலகம்'
}
};
ReactDOM.render(
<IntlProvider key={'en'} locale={'en'} messages={messages['en']}>
<HelloWorld />
</IntlProvider>,
document.getElementById('root')
);
Can someone help me to solve this issue? Thanks in advance.
You need to call
formatMessage
withMessageDescriptor
, not justid
:To better remember this - component is called with prop
id
:Props are in fact a key-value dictionary:
Now,
formatMessage
function accepts the same props asFormatMessage
component: