Page 1 of 1

Software for handling localization files?

Posted: Wed Nov 23, 2011 5:53 pm
by c4s
Do you guys know a (small, portable, quick and simple) software specifically aimed at programmers for making the creation, handling and maintaining of localization text files easier?

Currently I'm doing all this with plain text files which isn't easy to handle for the translator and for me to maintain. However, I don't really want to program it myself because I know a link to such a tool was already posted 1-2 years ago. Unfortunately I don't know what to search for (here on the forum or the www).

Do you have some recommendations?

Re: Software for handling localization files?

Posted: Wed Nov 23, 2011 6:09 pm
by IdeasVacuum
...You can give the translation helper that I made a try:

http://www.purebasic.fr/english/viewtop ... +Translate

I have in fact improved it a little bit as it is going to be bundled with another app in the near future, so if you think the original will do the job, I'll make the improved one available.

Re: Software for handling localization files?

Posted: Wed Nov 23, 2011 8:28 pm
by Danilo
- Gettext + Poedit
- XLIFF
- The Translate Toolkit can convert between various different translation formats (such as Gettext PO formats, XLIFF, OpenOffice.org, and Mozilla formats).

- http://edutechwiki.unige.ch/en/Software_localization

Re: Software for handling localization files?

Posted: Wed Nov 23, 2011 8:45 pm
by c4s
@IdeasVacuum
Thanks, but I would need something more powerful with support for categories, display of text strings that need to be updated etc.

Some bugs & ideas:
- Needless scrollbar on the right?!
- Not possible to disable always on top of the window
- The help video is opened every time I start the program, why not make it optional by clicking on help somewhere?
- The file type option of OpenFileRequester() displays garbage after "*.txt"
- Unicode doesn't work?
- Text field of StringGadget() isn't focused when trying to edit something


@Danilo
Thanks, this looks good! I'm going to check them out now.

Re: Software for handling localization files?

Posted: Wed Nov 23, 2011 8:50 pm
by Danilo
c4s wrote:@Danilo
Thanks, this looks good! I'm going to check them out now.
More tools (free & proprietary software) are listed at Wikipedia - Computer-assisted translation

Re: Software for handling localization files?

Posted: Wed Nov 23, 2011 9:14 pm
by c4s
Virtaal and maybe Poedit seem to be nice.

However, I just noticed that it wouldn't be that good if those user wanting to translate my program first have to download and install another 15 MB (for Virtaal) software. I hoped for a max. 1 MB, portable tool. :|

Re: Software for handling localization files?

Posted: Thu Nov 24, 2011 12:09 am
by IdeasVacuum
Some bugs & ideas:
- Needless scrollbar on the right?!
- Not possible to disable always on top of the window
- The help video is opened every time I start the program, why not make it optional by clicking on help somewhere?
- The file type option of OpenFileRequester() displays garbage after "*.txt"
- Unicode doesn't work?
- Text field of StringGadget() isn't focused when trying to edit something
Hi c4s, did you compile the source code? If so, that might be where the Unicode issue/garbage is from - In Compiler Options, select "Create Unicode executable" and in the Library Subsystem field enter "UserlibUnicodeThreadsafe", the PureRESIZE library is used. This app is in use on a regular basis in three different countries for translating English/Dutch/German/Chinese, has always worked for them.

Your other comments are mostly about your preferences and it is easy to modify the source to make it work the way you wish.

Re: Software for handling localization files?

Posted: Thu Nov 24, 2011 10:06 am
by c4s
@IdeasVacuum
No, I did not compile the source code. I just wanted to give you some hints to improve it for those who just want the executable. :wink: