1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/nest_frontend/contexts/ContextLanguage.js

17 lines
588 B
JavaScript

import { createContext } from "react"
import LocalizationStrings from "../LocalizationStrings"
/**
* A context containing an object with the following values:
* - `lang`: a string corresponding to the ISO 639-1 code of the current language
* - `setLang`: a function to change the current language
* - `strings`: an object containing all strings of the current language
*
* Defaults to Italian.
*/
export default createContext({
lang: "it",
setLang: () => console.error("Trying to setLang while outside a ContextServer.Provider!"),
strings: LocalizationStrings.it,
})