How can i translate whole meteor-react app or website in Arabic?
I have tried universe:i18n packages, but its not working.
Here is what i have done:
import i18n from 'meteor/universe:i18n';
i18n.setLocale('ar-SA');
i18n.getLocale();
const T = i18n.createComponent();
Then i added div inside the component i have created for translation.
<T> Here is my content </T>
But it gives me same result as before(i.e. English).
Is there any quick way to translate full App/Website?