When you set autorun: false it gives you an object with a start function. Is there a stop function? We are trying to use locizify to auto-translate only one page in React.
Using i18next will mean using the Trans component and we would have to manually enter hundreds if not thousands of keys to the i18nKey props. We are trying to avoid this by using locizify.
We observed that translations is currently bleeding into multiple components whereas we would like to restrict it to a single component say ArtistComponent. Using start helps to start the translation, bu we would like the option of stopping when a user moves away from that component.
When you set autorun: false it gives you an object with a start function. Is there a stop function? We are trying to use locizify to auto-translate only one page in React.
Using i18next will mean using the Trans component and we would have to manually enter hundreds if not thousands of keys to the i18nKey props. We are trying to avoid this by using locizify.
We observed that translations is currently bleeding into multiple components whereas we would like to restrict it to a single component say
ArtistComponent. Usingstarthelps to start the translation, bu we would like the option of stopping when a user moves away from that component.