You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Components that require localized strings are exported after wrapping them in injectIntl().
e.g. export default injectIntl(DraggableSidebarItem);
Doing this will pass the intl as a prop to the component. Then, the component can use intl.formatMessage() which will localize the message.
Currently, the client does not have the ability to detect the locale of a developer and understand the developer’s native language. However, instructions on doing this can be found here.