> 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: getLanguageCode() ## Article: getLanguageCode() ## Article Link: https://dev.wix.com/docs/sdk/host-modules/editor/info/get-language-code.md ## Article Content: # getLanguageCode() Returns the language code of the language currently used in the editor interface. Use the language code to localize the content in your settings panel. ## Syntax ```js function getLanguageCode(): Promise ``` ## Parameters This method does not take any parameters. ## Returns `Promise` The editor's language code. ## Example ```js import { editor, info } from '@wix/editor'; import { createClient } from '@wix/sdk'; const client = createClient({ host: editor.host(), modules: { info } }); async function getLanguageCode() { const response = await client.info.getLanguageCode(); } ```