> 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: multilingualManager.listSupportedLanguages() # Method Link: https://dev.wix.com/docs/sdk/host-modules/site/multilingual-manager/list-supported-languages.md # Method Description: Retrieves a list of all languages supported by a site. Languages supported on a site are defined in the site's multilingual settings. # Method Permissions: # Method Permissions Scopes IDs: undefined # Method Code Examples: ## List supported languages ```javascript ```typescript import { listSupportedLanguages } from '@wix/site'; const languages = listSupportedLanguages(); console.log('Available languages:', languages); // [ // { // id: "en", // displayName: "English", // regionalFormat: "en-US", // url: "https://mysite.com/en", // primary: true, // resolutionMethod: "SUBDIRECTORY" // }, // { // id: "fr", // displayName: "Français", // regionalFormat: "fr-FR", // url: "https://mysite.com/fr", // primary: false, // resolutionMethod: "SUBDIRECTORY" // } // ] ``` ```