> 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: siteWindow.siteLanguages() # Method Link: https://dev.wix.com/docs/sdk/frontend-modules/window/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 Permissions: # Method Permissions Scopes IDs: undefined # Method Code Examples: ## Get information about a site's languages ```javascript import { multilingual } from '@wix/site-window'; // ... let languages = await 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 { multilingual } from '@wix/site-window'; // ... $w.onReady(function () { const languages = await multilingual.siteLanguages(); let languageOptions = languages.map((obj) => { return { label: obj.name, value: obj.languageCode }; }); const currentLanguage = await multilingual.currentLanguage; const filteredLanguageOptions = languageOptions.filter(obj => obj.value !== currentLanguage); $w('#languageDropdown').options = filteredLanguageOptions; $w("#languageDropdown").onChange((event) => { multilingual.currentLanguage = event.target.value; }); }); ```