简体   繁体   中英

Displaying entire JAVA Web application in Chinese language

I am having a java application. My goal is to display the web pages in Chinese language.CONSTRAINT: Client is not happy with GOOGLE TRANSLATE.

-Is there any other way to display it in Chinese language with out using these kind of translators.

We had to display ours in Japanese. Only way to do it right is to use resource bundles and have someone actually translate it. You need someone who understands the context being used in each language.

For example, "Close Window" when translated using translators like Google translated to something like "close window" (the type you have in your room). So there is not always a direct literal translation.

You need to provide various ResourceBundles for i18N. Then first in your application identify the locale and use that to load the ResourceBundle. Locale specific bundles should have all the translated messages otherwise you can opt to supply the default value too. http://docs.oracle.com/javase/tutorial/i18n/locale/index.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM