UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

10 lines 400 B
import { ConfigurationState } from "../config/configurationState"; /** * Sets the language to display literals in your application * @param lang The language to set * @returns 0 if the language can be set, a value greater than 0 if it cannot be set */ export const setLanguage = (lang) => { return ConfigurationState.getInstance().setLanguage(lang); }; //# sourceMappingURL=setLanguage.js.map