mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-05-17 03:59:18 +08:00
52 lines
1.2 KiB
Markdown
52 lines
1.2 KiB
Markdown
# Internationalization
|
|
|
|
### Intro
|
|
|
|
The default language of Vant is Chinese. If you want to use other languages, you can follow the instructions below.
|
|
|
|
### Switch languages
|
|
|
|
Vant supports multiple languages with the Locale component, and the `Locale.use` method allows you to switch to different languages.
|
|
|
|
```js
|
|
import { Locale } from 'vant';
|
|
import enUS from 'vant/lib/locale/lang/en-US';
|
|
|
|
Locale.use('en-US', enUS);
|
|
```
|
|
|
|
### Modify default configs
|
|
|
|
Use `Locale.add` method to modify the default configs.
|
|
|
|
```js
|
|
import { Locale } from 'vant';
|
|
|
|
const messages = {
|
|
'en-US': {
|
|
vanPicker: {
|
|
confirm: 'Close',
|
|
},
|
|
},
|
|
};
|
|
|
|
Locale.add(messages);
|
|
```
|
|
|
|
### Config files
|
|
|
|
Current supported languages:
|
|
|
|
| Language | Filename |
|
|
| ------------------------ | -------- |
|
|
| Chinese | zh-CN |
|
|
| Traditional Chinese (HK) | zh-HK |
|
|
| Traditional Chinese (TW) | zh-TW |
|
|
| English | en-US |
|
|
| Turkish | tr-TR |
|
|
| Spanish (Spain) | es-ES |
|
|
| Japanese | ja-JP |
|
|
| Romanian | ro-RO |
|
|
|
|
> View all language configs [Here](https://github.com/youzan/vant/tree/dev/src/locale/lang).
|