<Trans ns="onboarding" i18n={props.i18n}>
Thank you, {{firstName: props.firstName}}!
<br />
Welcome to the party
</Trans>
The extraction is attempting to overwrite a key I have defined already:
-"Thank you, {{firstName}}!<br/>Welcome to the party": "Thank you, {{firstName}}!<br/>Welcome to the party"
+"Thank you, {{firstName}}!<3>Welcome to the party": "Thank you, {{firstName}}!<3>Welcome to the party",
I'm using the babel plugin as part of a webpack stack.
.babelrc
There are two specific
react
options in the react-i18next package which I think aren't supported as part of extraction. (from https://react.i18next.com/latest/i18next-instance)With the following
Trans
component.The extraction is attempting to overwrite a key I have defined already:
I'm using the babel plugin as part of a webpack stack.
.babelrc