Sir,
i am searching for, how to convert english language into any another language. I am working in JAVA enviornment. Is thier any source code or any package to be included in our project.
give an idea how to develop this source code for me
please, send response as quick as possible.
I'm not sure I totally understand your question. Are you asking for a tool or package to include that will convert all strings labels in your application from english to another language? From what I know, there isn't such a tool.
Typically, you need to map all your variables to a single 'resource' file, which contains the mappings for the specific language. So, your US English, you'd have a en-us resource file that contains a name value pair of your variable and english form, such as:
TEXT1LABEL=Full Name
TEXT2LABEL=Address 1
... etc
Then, to support another language, simply take that resource file to a 'localization' company or someone or some site that can generate language specific strings.
Then, in your application, you need a mechanism to switch to alternate languages, or key off something with the operating system. Once changed, your code should switch to use a different language resource file.
Kind of a simplistic view of this I know, but don't want to dig much deeper without understanding your question further. Does this help?
123 views
Usually answered in minutes!
×