mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
26 lines
705 B
JavaScript
26 lines
705 B
JavaScript
import React from "react"
|
|
import useLocalStorageState from "../../hooks/useLocalStorageState"
|
|
import ContextLanguage from "../../contexts/ContextLanguage"
|
|
import LocalizationStrings from "../../LocalizationStrings"
|
|
|
|
|
|
/**
|
|
* Provides {@link ContextLanguage} to all contained elements.
|
|
*
|
|
* Defaults to using Italian.
|
|
*
|
|
* @param children
|
|
* @returns {JSX.Element}
|
|
* @constructor
|
|
*/
|
|
export default function GlobalLanguage({ children }) {
|
|
const [lang, setLang] = useLocalStorageState("language", "it")
|
|
|
|
const strings = LocalizationStrings[lang]
|
|
|
|
return (
|
|
<ContextLanguage.Provider value={{ lang, setLang, strings }}>
|
|
{children}
|
|
</ContextLanguage.Provider>
|
|
)
|
|
}
|