i want to see the dashboard showing in Chinese when i run :
gulp serve
// or gulp serve:prod
I have looked through the build\i18n.js,but can,t find the answer.
what should i do ?
thanks!
Just change yor browser main language to Chinese:

You will be able to see translations:

Will you be able to help us with providing more Chinese translations? We track it from https://github.com/kubernetes/dashboard/issues/2077. I am working on translation guide in https://github.com/kubernetes/dashboard/pull/2103. Your help would be appreciated very much!
it not work anyway
i use this
export LANG="zh_CN.UTF-8"
change my system language
then i run
"gulp serve"
i access url http://ip:9090
it still display English
Which browser do you use?
i use IE , not local access , use external style
Please follow this tutorial: https://www.youtube.com/watch?v=XpoFlwJ_y9s
thanks very much! @maciaszczykm
Will you be able to help us with providing more Chinese translations? We track it from #2077. I am working on translation guide in #2103. Your help would be appreciated very much!
my pleasure ! I'd like have a try ! you do a great job !
@maciaszczykm,
my outsite ie is using Chinese, but still not work
@chunnallu do you know how to display Chinese
I have solve the problem in my project !
build/i18n.js, search if (fileExists(translationBundle)){
command = `${command} --translations_file ${translationBundle}`;
}
the code fileExists(translationBundle) can't not work in my ubuntu although the translationBundle
path exist ! It would cause your i18n folder be overrideed everytime you run gulp serve:prod , by the default english version.
you can quick fix it by replace by :
if (fileExists.sync(translationBundle)){
command = `${command} --translations_file ${translationBundle}`;
}
or update to last version
gulp serve , you should run with gulp serve:prod instead!@kaasia
Most helpful comment
Just change yor browser main language to Chinese:
You will be able to see translations: