mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
17 lines
588 B
JavaScript
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,
|
|
})
|