MDUIDocs
Copy llms.txt linkCopy llms-full.txt linkView this page in MarkdownDiscuss this page with ChatGPTDiscuss full project docs with ChatGPT
Preset Colors
Custom Color
Extract from Wallpaper
Please select a wallpaper
Getting Started
AI-Assisted Development
Styles
Integration with Frameworks
Components
Functions
jq Library dialog alert confirm prompt snackbar getTheme setTheme getColorFromImage setColorScheme removeColorScheme loadLocale setLocale getLocale throttle observeResize breakpoint
Libraries

setLocale

The setLocale function sets the current locale code. For more details, see Localization.

Usage

Import the function:

import { setLocale } from 'mdui/functions/setLocale.js';

Example:

setLocale('zh-cn').then(() => {
  // The locale switch is complete once the promise resolves
});

API

setLocale(LocaleCode): Promise<void>

This function accepts a locale code as an argument and returns a Promise. The locale switch is complete once the Promise resolves.

Refer to Supported Languages for a list of locale codes.

On this page