> 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: siteLanguages() # Method package: wixWindowFrontend # Method menu location: wixWindowFrontend --> Multilingual --> siteLanguages # Method Link: https://dev.wix.com/docs/velo/apis/wix-window-frontend/multilingual/site-languages.md # Method Description: Gets information about a site's languages. The `siteLanguages` property returns an array of `SiteLanguage` objects containing information about all the languages that a site is set to display in. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get information about a site's languages ```javascript import wixWindowFrontend from 'wix-window-frontend'; // ... let languages = wixWindowFrontend.multilingual.siteLanguages; /* languages is: * [ * { * "name": "English", * "locale": "en-us", * "languageCode": "en", * "countryCode": "USA", * "isPrimaryLanguage": true * }, { * "name": "Spanish", * "locale": "es-es", * "languageCode": "es", * "countryCode": "ESP", * "isPrimaryLanguage": false * }, { * "name": "Chinese", * "locale": "zh-cn", * "languageCode": "zh", * "countryCode": "CHN", * "isPrimaryLanguage": false * } * ] */ ``` ## 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; }); }); ``` ---