vant/src/locale/README.md
2020-10-24 17:38:14 +08:00

61 lines
1.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Internationalization
### Intro
Vant uses Chinese as the default language. If you want to use other languages, please follow the instructions below.
## Usage
### 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/es/locale/lang/en-US';
Locale.use('en-US', enUS);
```
### Override 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 |
| German | de-DE |
| German (formal) | de-DE-formal |
| Norwegian | nb-NO |
| Japanese | ja-JP |
| Romanian | ro-RO |
| Spanish (Spain) | es-ES |
| Turkish | tr-TR |
> View all language configs [Here](https://github.com/youzan/vant/tree/dev/src/locale/lang).
### Add new language
If you cant find the language you need, please send us a Pull Request to add the new language pack, you can refer to [Add German language pack](https://github.com/youzan/vant/pull/7245) PR.