/*! For license information please see 8384.53877c3d.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["8384"],{84689:function(n,t,d){"use strict";d.r(t);var a=d("80681");let s=["innerHTML"];t.default={setup:()=>({html:""}),render:()=>((0,a.wg)(),(0,a.iD)("div",{class:"van-doc-markdown-body",innerHTML:'
Vant uses Chinese as the default language. If you want to use other languages, please follow the instructions below.
\nVant supports multiple languages with the Locale component, and the Locale.use
method allows you to switch to different languages.
import { Locale } from 'vant';\nimport enUS from 'vant/es/locale/lang/en-US';\n\nLocale.use('en-US', enUS);\n
\nUse Locale.add
method to modify the default configs.
import { Locale } from 'vant';\n\nconst messages = {\n 'en-US': {\n vanPicker: {\n confirm: 'Close',\n },\n },\n};\n\nLocale.add(messages);\n
\nCurrent supported languages:
\nLanguage | \nFilename | \nVersion | \n
---|---|---|
Arabic | \nar-SA | \nv3.5.0 | \n
Bulgarian | \nbg-BG | \nv3.5.0 | \n
Bangla (Bangladesh) | \nbn-BD | \nv3.4.5 | \n
Danish | \nda-DK | \nv3.4.8 | \n
German | \nde-DE | \n- | \n
German (formal) | \nde-DE-formal | \n- | \n
Greek | \nel-GR | \nv3.5.0 | \n
English | \nen-US | \n- | \n
Esperanto | \neo-EO | \nv4.0.9 | \n
Spanish (Spain) | \nes-ES | \n- | \n
Farsi | \nfa-IR | \nv3.5.0 | \n
French | \nfr-FR | \n- | \n
Hebrew | \nhe-IL | \nv3.5.0 | \n
Hindi | \nhi-IN | \nv3.4.3 | \n
Indonesian | \nid-ID | \nv3.4.5 | \n
Icelandic | \nis-IS | \nv3.4.7 | \n
Italian | \nit-IT | \nv3.4.5 | \n
Japanese | \nja-JP | \n- | \n
Khmer | \nkm-KH | \nv4.1.2 | \n
Korean | \nko-KR | \nv3.4.3 | \n
Lao | \nla-LA | \nv3.4.7 | \n
Mongolian | \nmm-MN | \nv4.0.5 | \n
Norwegian | \nnb-NO | \n- | \n
Dutch | \nnl-NL | \nv4.0.5 | \n
Portuguese (Brazil) | \npt-BR | \nv3.3.3 | \n
Romanian | \nro-RO | \n- | \n
Russian | \nru-RU | \nv3.1.5 | \n
Serbian | \nsr-RS | \nv4.6.4 | \n
Swedish | \nsv-SE | \nv3.4.7 | \n
Thai | \nth-TH | \n- | \n
Turkish | \ntr-TR | \n- | \n
Ukrainian | \nuk-UA | \nv3.4.5 | \n
Vietnamese | \nvi-VN | \nv3.4.5 | \n
Chinese | \nzh-CN | \n- | \n
Traditional Chinese (HK) | \nzh-HK | \n- | \n
Traditional Chinese (TW) | \nzh-TW | \n- | \n
\n\nView all language configs Here.
\n
If you can\u2019t 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 PR.
\nYou can get the current language using useCurrentLang
method.
function useCurrentLang(): Ref<string>;\n
\nimport { useCurrentLang } from 'vant';\n\nconst currentLang = useCurrentLang();\n\nconsole.log(currentLang.value); // --> 'en-US'\n
\n