epalm
epalm

Reputation: 4423

Strategies for .NET localization using resource files

Questions:

  1. How can you ensure all keys are identical across all resource files? What stops a translator from fat-fingering one of the keys?

  2. How do translators edit all these strings? The .resx files are really awful xml files, no one can be expected to edit them by hand. So every translator needs their own copy of Visual Studio? And your entire source code?

Upvotes: 1

Views: 117

Answers (1)

Reda
Reda

Reputation: 2289

Answers:

  1. See 2.

  2. Provide them with a ressource editor. There are many available for free:

    http://www.zeta-resource-editor.com/index.html

    https://code.google.com/p/simpleresxeditor/

    http://resex.codeplex.com/

    http://sourceforge.net/projects/resx/

Upvotes: 1

Related Questions