> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: currentLanguage() # Method package: wixWindowFrontend # Method menu location: wixWindowFrontend --> Multilingual --> currentLanguage # Method Link: https://dev.wix.com/docs/velo/apis/wix-window-frontend/multilingual/current-language.md # Method Description: Sets or gets a site's current display language. Setting the `currentLanguage` property changes a site's display language. The current page is reloaded in the newly set language. Set the current language using a 2-letter language code. The code must represent one of [the languages set to show on a site](https://support.wix.com/en/article/wix-multilingual-managing-languages-in-a-multilingual-site). You can retrieve a site's languages and corresponding language codes using the `siteLanguages` property. Getting the `currentLanguage` property gets the 2-letter language code of a site's current display language. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get a site's current display language ```javascript import wixWindowFrontend from 'wix-window-frontend'; // ... let language = wixWindowFrontend.multilingual.currentLanguage; // "en" ``` ## Set a site's current display language ```javascript import wixWindowFrontend from 'wix-window-frontend'; // ... wixWindowFrontend.multilingual.currentLanguage = "es"; ``` ## Create a button used to toggle between 2 languages ```javascript import wixWindowFrontend from 'wix-window-frontend'; // ... $w.onReady( function () { $w("#toggleLanguage").onClick( (event) => { if(wixWindowFrontend.multilingual.currentLanguage === "en"){ wixWindowFrontend.multilingual.currentLanguage = "es"; } else { wixWindowFrontend.multilingual.currentLanguage = "en"; } } ); } ); ``` ## Create a dropdown used to change between available languages ```javascript import wixWindowFrontend from 'wix-window-frontend'; // ... $w.onReady(function () { const languages = wixWindowFrontend.multilingual.siteLanguages; let languageOptions = languages.map((obj) => { return { label: obj.name, value: obj.languageCode }; }); const currentLanguage = wixWindowFrontend.multilingual.currentLanguage; const filteredLanguageOptions = languageOptions.filter(obj => obj.value !== currentLanguage); $w('#languageDropdown').options = filteredLanguageOptions; $w("#languageDropdown").onChange((event) => { wixWindowFrontend.multilingual.currentLanguage = event.target.value; }); }); ``` ## Filter a dataset based on the site's current display language ```javascript import wixWindowFrontend from 'wix-window-frontend'; import wixData from 'wix-data'; // ... $w.onReady( function () { let language = wixWindowFrontend.multilingual.currentLanguage; $w("#myDataset").setFilter( wixData.filter().eq("language", language) ); } ); ``` ---