> 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 ## Resource: Introduction ## Article: Introduction (Multilingual) ## Article Link: https://dev.wix.com/docs/sdk/host-modules/site/multilingual-manager/introduction.md ## Article Content: # About the Multilingual Manager API The Multilingual Manager API allows you to retrieve all of the languages a site supports from frontend code. For example, you can use it to build a custom language picker widget or to display content based on the languages available on the site. > **Note:** To manage locales, translations, or machine translation, use the backend [Multilingual APIs](https://dev.wix.com/docs/sdk/frontend-modules/window/multilingual/current-language.md). To get or set the site's current display language, call [multilingual.currentLanguage()](https://dev.wix.com/docs/sdk/frontend-modules/window/multilingual/current-language.md) from the [Window API](https://dev.wix.com/docs/sdk/frontend-modules/window/introduction.md). ## Setup @package_metadata:@wix/site To use the Multilingual API, install the `@wix/site` package. ### Import the package To import the package in your code: ```js import { multilingual } from "@wix/site"; ``` ## Usage To use the Multilingual API when [developing sites](https://dev.wix.com/docs/develop-websites-sdk.md) or in [Wix-hosted apps](https://dev.wix.com/docs/sdk/articles/get-started/about-the-wix-java-script-sdk.md#wix-hosted-apps), import the multilingual module in your code and call its methods directly. ```javascript import { multilingual } from "@wix/site"; const languages = multilingual.listSupportedLanguages(); languages.forEach(lang => console.log(lang.displayName)); ```