feat: publicize doc implemetation
This commit is contained in:
43
plugins/l10n.js
Normal file
43
plugins/l10n.js
Normal file
@@ -0,0 +1,43 @@
|
||||
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'
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user