henderunal
henderunal

Reputation: 749

Windows forms application localization problem?

I have a windows form application. It has textboxs, checkboxs, labels and devxpress xtragrids etc. I need to apply localization to my application. I searched the net and came over some solutions about .resx . But its taking time to apply this method and if i need more languages in the future i need to create a new resx than customize that resx for that form.

Is there any other way to create a xml file so that i or translator change only the xml files. Regards.

Upvotes: 0

Views: 437

Answers (1)

Paweł Dyda
Paweł Dyda

Reputation: 18662

Resx files are in XML to begin with. You don't need to "add more resx" when you add language, at least you do not have to add them to your solution/project. What you need is to apply proper build process (I suspect that you build your application directly from Visual Studio, which is not very good idea) - you could use MSBuild to do that. In that case, all you need to do is to place translated files in their right paths and start building.
There are also other localization methods for Winforms applications - for example you might want to try WinRes.

Upvotes: 1

Related Questions