Jump to content

Make application translatable

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
5 replies to this topic

#1
Shaddix

Shaddix

    Programmer

  • Members
  • PipPipPipPip
  • 102 posts
what is the best way to make an application translatable?

#2
ZekeDragon

ZekeDragon

    Writes binary right handed and hex left handed

  • Moderators
  • 2,103 posts
You mean to a different language, for Internationalization?
Wow I changed my sig!

#3
Shaddix

Shaddix

    Programmer

  • Members
  • PipPipPipPip
  • 102 posts
yes, I've heard there are ways that you can translate an application without any knowledge of the source code

#4
ZekeDragon

ZekeDragon

    Writes binary right handed and hex left handed

  • Moderators
  • 2,103 posts
If the program has been set up to be internationalized, than you can. Software set up this way uses external files to contain the text instead of hard coding the text into the program itself. The Java Trails have some great information on how translation can be done, but mostly explains how to set up the software for translation. It does rely on the programmer building the program to be able to accommodate translation, so unless that was done you'll need to go through the code. :-\
Wow I changed my sig!

#5
Guest_Jordan_*

Guest_Jordan_*
  • Guests
Agreed with ZekeDragon. I've worked with a few products that were translated into multiple languages. They have all used external files to contain "phrases" which can then be easily translated into multiple languages. The program can detect all language files and present a list to the user.

#6
Shaddix

Shaddix

    Programmer

  • Members
  • PipPipPipPip
  • 102 posts
ok, that was kind of what I was looking for, because I had in mind that if I continued to make apps, it could come in handy if there was an option to translate them without having to build a version for every language