Skip to content

Instantly share code, notes, and snippets.

@iliran11
Last active May 11, 2020 13:25
Show Gist options
  • Save iliran11/195ab2d3431a29fc7ed6d05eadd88ff5 to your computer and use it in GitHub Desktop.
Save iliran11/195ab2d3431a29fc7ed6d05eadd88ff5 to your computer and use it in GitHub Desktop.
i18NextManager gets a requested language, and returns the t function
const i18next = require("i18next");
i18next.init({
lng,
resources: {
en: {
translation: {
greeting_key: "hello",
},
},
es: {
translation: {
greeting_key: "hola",
},
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment