CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 8 of 8
  1. #1
    Join Date
    Sep 1999
    Location
    Idaho, Moscow
    Posts
    239

    Translation tool

    Hi

    Anyone knows that there is such tranlation tool exists or not. This translation tool can read a exe file's resource text and write back the translted text to the exe file.

    Thanks,

  2. #2
    Join Date
    Sep 2002
    Location
    14° 39'19.65"N / 121° 1'44.34"E
    Posts
    9,815

    Re: Translation tool

    Quote Originally Posted by li0000
    Anyone knows that there is such tranlation tool exists or not. This translation tool can read a exe file's resource text and write back the translted text to the exe file.
    You mean a localization tool? Take a look at Visual Localize from AIT.

  3. #3
    Join Date
    Nov 2003
    Posts
    2,185

    Re: Translation tool

    You can also use RC Wintrans, I heard some good things about it.

  4. #4
    Join Date
    Sep 1999
    Location
    Idaho, Moscow
    Posts
    239

    Re: Translation tool

    I just check the tool. Its price is $2410. TOO EXPENSIVE. I don't that much money to buy it. Where can I can a free one?

    If I want to design one, how can I do it?

    How can I find the "Text" location in the EXE file? Can I just remember the offset and length of the "Text", translate it, and write it back to EXE file? It will work?

    Thanks

  5. #5
    Join Date
    Sep 2002
    Location
    14° 39'19.65"N / 121° 1'44.34"E
    Posts
    9,815

    Re: Translation tool

    Quote Originally Posted by li0000
    Where can I can a free one?
    Have you tried google with "free resource editor"?

    Quote Originally Posted by li0000
    If I want to design one, how can I do it?

    How can I find the "Text" location in the EXE file? Can I just remember the offset and length of the "Text", translate it, and write it back to EXE file? It will work?
    You would typically use BeginUpdateResource() to get access to the resources in an executable file, UpdateResource() to modify them, and EndUpdateResource() to close the file handle. See MSDN for details.

    Note however that just accessing and modifying the resources in an executable is the simplest part (and you can even do that with the resource editor integrated in Visual Studio). The value of localization tools is the database they maintain to simplify recurring translations, and the management functions to maintain different localized versions across several releases (and hence the need to retranslate just the differences).

  6. #6
    Join Date
    Nov 2003
    Posts
    2,185

    Re: Translation tool

    RC-WinTrans Lite Edition: Full featured version of RC-WinTrans with a limitation in the maximum size of a translation project. Mainly thought as a free trial version to see how RC-WinTrans works.
    So it isn't that expensive if you don't have a large project.

  7. #7
    Join Date
    May 2002
    Location
    Germany
    Posts
    487

    Re: Translation tool

    You might search for "rc localize". It is currently in version 3.0.

    Not freeware, but AFAIR not expensive and a free trial available.

    But I also think that there must be a freeware-tool anywhere.

    Just supporting a developer in translating the resources can't be a big deal....

    Any other tools around?

    Marc

  8. #8
    Join Date
    Oct 2012
    Posts
    2

    Re: Translation tool

    for a free localization tool, if there's people still interested (i see this in an old thread), you can go to http://poeditor.com/

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured