Skip to content

Instantly share code, notes, and snippets.

@petervojtek
Last active March 16, 2018 15:09
Show Gist options
  • Save petervojtek/c30fe6553bb6c1a6d520e326c9537f38 to your computer and use it in GitHub Desktop.
Save petervojtek/c30fe6553bb6c1a6d520e326c9537f38 to your computer and use it in GitHub Desktop.
EN/FR react-intl messages
// https://stackoverflow.com/questions/49104657/is-it-possible-to-override-locale-of-one-specific-intl-formatmessage/49275604?noredirect=1#comment85596893_49275604
import { defineMessages } from 'react-intl';
const messages = defineMessages({
hello: {
id: 'app.hello',
defaultMessage: 'Hello in english',
}
}
fr.messages.json:
{
"app.hello": "Hello in french"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment