mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
docs: fix missing demo locale (#9255)
This commit is contained in:
parent
a6b34d24b0
commit
f0f2059d91
2
.gitignore
vendored
2
.gitignore
vendored
@ -16,5 +16,5 @@ es
|
|||||||
lib
|
lib
|
||||||
dist
|
dist
|
||||||
vetur
|
vetur
|
||||||
site
|
./site
|
||||||
changelog.generated.md
|
changelog.generated.md
|
||||||
|
@ -1,77 +1,79 @@
|
|||||||
import Locale from '../../src/locale';
|
import Locale from '../../src/locale';
|
||||||
import enUS from '../../src/locale/lang/en-US';
|
import enUS from '../../src/locale/lang/en-US';
|
||||||
|
|
||||||
Locale.add({
|
export function initDemoLocale() {
|
||||||
'en-US': enUS,
|
Locale.add({
|
||||||
});
|
'en-US': enUS,
|
||||||
|
});
|
||||||
|
|
||||||
// switch lang after routing
|
// switch lang after routing
|
||||||
if (window.vueRouter) {
|
if (window.vueRouter) {
|
||||||
window.vueRouter.afterEach((to) => {
|
window.vueRouter.afterEach((to) => {
|
||||||
const { lang } = to.meta || {};
|
const { lang } = to.meta || {};
|
||||||
|
|
||||||
if (lang) {
|
if (lang) {
|
||||||
Locale.use(lang);
|
Locale.use(lang);
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// add some basic locale messages
|
||||||
|
Locale.add({
|
||||||
|
'zh-CN': {
|
||||||
|
add: '增加',
|
||||||
|
decrease: '减少',
|
||||||
|
red: '红色',
|
||||||
|
orange: '橙色',
|
||||||
|
yellow: '黄色',
|
||||||
|
purple: '紫色',
|
||||||
|
tab: '标签',
|
||||||
|
tag: '标签',
|
||||||
|
desc: '描述信息',
|
||||||
|
back: '返回',
|
||||||
|
title: '标题',
|
||||||
|
status: '状态',
|
||||||
|
button: '按钮',
|
||||||
|
option: '选项',
|
||||||
|
search: '搜索',
|
||||||
|
content: '内容',
|
||||||
|
custom: '自定义',
|
||||||
|
username: '用户名',
|
||||||
|
password: '密码',
|
||||||
|
disabled: '禁用状态',
|
||||||
|
uneditable: '不可编辑',
|
||||||
|
basicUsage: '基础用法',
|
||||||
|
advancedUsage: '高级用法',
|
||||||
|
loadingStatus: '加载状态',
|
||||||
|
usernamePlaceholder: '请输入用户名',
|
||||||
|
passwordPlaceholder: '请输入密码',
|
||||||
|
},
|
||||||
|
'en-US': {
|
||||||
|
add: 'Add',
|
||||||
|
decrease: 'Decrease',
|
||||||
|
red: 'Red',
|
||||||
|
orange: 'Orange',
|
||||||
|
yellow: 'Yellow',
|
||||||
|
purple: 'Purple',
|
||||||
|
tab: 'Tab',
|
||||||
|
tag: 'Tag',
|
||||||
|
desc: 'Description',
|
||||||
|
back: 'Back',
|
||||||
|
title: 'Title',
|
||||||
|
status: 'Status',
|
||||||
|
button: 'Button',
|
||||||
|
option: 'Option',
|
||||||
|
search: 'Search',
|
||||||
|
content: 'Content',
|
||||||
|
custom: 'Custom',
|
||||||
|
username: 'Username',
|
||||||
|
password: 'Password',
|
||||||
|
loadingStatus: 'Loading',
|
||||||
|
disabled: 'Disabled',
|
||||||
|
uneditable: 'Uneditable',
|
||||||
|
basicUsage: 'Basic Usage',
|
||||||
|
advancedUsage: 'Advanced Usage',
|
||||||
|
usernamePlaceholder: 'Username',
|
||||||
|
passwordPlaceholder: 'Password',
|
||||||
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// add some basic locale messages
|
|
||||||
Locale.add({
|
|
||||||
'zh-CN': {
|
|
||||||
add: '增加',
|
|
||||||
decrease: '减少',
|
|
||||||
red: '红色',
|
|
||||||
orange: '橙色',
|
|
||||||
yellow: '黄色',
|
|
||||||
purple: '紫色',
|
|
||||||
tab: '标签',
|
|
||||||
tag: '标签',
|
|
||||||
desc: '描述信息',
|
|
||||||
back: '返回',
|
|
||||||
title: '标题',
|
|
||||||
status: '状态',
|
|
||||||
button: '按钮',
|
|
||||||
option: '选项',
|
|
||||||
search: '搜索',
|
|
||||||
content: '内容',
|
|
||||||
custom: '自定义',
|
|
||||||
username: '用户名',
|
|
||||||
password: '密码',
|
|
||||||
disabled: '禁用状态',
|
|
||||||
uneditable: '不可编辑',
|
|
||||||
basicUsage: '基础用法',
|
|
||||||
advancedUsage: '高级用法',
|
|
||||||
loadingStatus: '加载状态',
|
|
||||||
usernamePlaceholder: '请输入用户名',
|
|
||||||
passwordPlaceholder: '请输入密码',
|
|
||||||
},
|
|
||||||
'en-US': {
|
|
||||||
add: 'Add',
|
|
||||||
decrease: 'Decrease',
|
|
||||||
red: 'Red',
|
|
||||||
orange: 'Orange',
|
|
||||||
yellow: 'Yellow',
|
|
||||||
purple: 'Purple',
|
|
||||||
tab: 'Tab',
|
|
||||||
tag: 'Tag',
|
|
||||||
desc: 'Description',
|
|
||||||
back: 'Back',
|
|
||||||
title: 'Title',
|
|
||||||
status: 'Status',
|
|
||||||
button: 'Button',
|
|
||||||
option: 'Option',
|
|
||||||
search: 'Search',
|
|
||||||
content: 'Content',
|
|
||||||
custom: 'Custom',
|
|
||||||
username: 'Username',
|
|
||||||
password: 'Password',
|
|
||||||
loadingStatus: 'Loading',
|
|
||||||
disabled: 'Disabled',
|
|
||||||
uneditable: 'Uneditable',
|
|
||||||
basicUsage: 'Basic Usage',
|
|
||||||
advancedUsage: 'Advanced Usage',
|
|
||||||
usernamePlaceholder: 'Username',
|
|
||||||
passwordPlaceholder: 'Password',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
import './demo-locale';
|
import { initDemoLocale } from './demo-locale';
|
||||||
import Lazyload from '../../src/lazyload';
|
import Lazyload from '../../src/lazyload';
|
||||||
|
|
||||||
|
initDemoLocale();
|
||||||
|
|
||||||
const { app } = window;
|
const { app } = window;
|
||||||
if (app) {
|
if (app) {
|
||||||
app.use(Lazyload, {
|
app.use(Lazyload, {
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
import { h, defineComponent } from 'vue';
|
import { h, defineComponent } from 'vue';
|
||||||
import Locale from '../src/locale';
|
import Locale from '../src/locale';
|
||||||
import { mount, later } from '.';
|
import { mount, later } from '.';
|
||||||
import '../docs/site/demo-locale';
|
import { initDemoLocale } from '../docs/site/demo-locale';
|
||||||
|
|
||||||
|
initDemoLocale();
|
||||||
|
|
||||||
const EmptyComponent = defineComponent({
|
const EmptyComponent = defineComponent({
|
||||||
inheritAttrs: false,
|
inheritAttrs: false,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user