docs_vue2/plugins/l10n.js

44 lines
471 B
JavaScript
Raw Normal View History

2020-08-13 11:47:56 +08:00
import i18n from 'veui/managers/i18n'
i18n.register(
'zh-Hans',
{
showCode: '显示代码',
hideCode: '隐藏代码'
},
{
ns: 'onedemo'
}
)
i18n.register(
'en-US',
{
showCode: 'Show code',
hideCode: 'Hide code'
},
{
ns: 'onedemo'
}
)
i18n.register(
'zh-Hans',
{
toTop: '回到顶部'
},
{
ns: 'onebacktotop'
}
)
i18n.register(
'en-US',
{
toTop: 'Back to top'
},
{
ns: 'onebacktotop'
}
)