react-localization
react-localization copied to clipboard
Support for externally stored strings
Hi! I am in the middle of integrating localization in my project, but I was wondering if there is there a way to include strings stored in ex. a Google sheet, or a separate repo, which it fetches every X amount of time?
What about something like this:
const stringsJson = await fetch('https://somesitewithmystrings.com/strings.json')
let strings = new LocalizedStrings(stringsJson)
:-)