Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Are there any tools, that ease work with localization in .NET? I mean work with resx files in VS is done pretty ugly from a developer point of view. For example, if I need to add a string to resources, I have to manually add it to all resource files with different cultures. And I do not know of any tools, that can tell me if there are strings missing in a resource file of particular cultures, and so on.

share|improve this question
+1 Oh I can feel your pain! – bitbonk Jan 22 at 8:44
@LexLi thanks, but "Extract to resource" is the feature of Resharper which I use all the time, but that is not enough. And second does not seems to work in VS 2010 (judging from comments on site and last update in 2007). More then that - ResEx website is not working =). – DarkDeny Jan 22 at 11:35
ResEx is now open source and hosted on CodePlex, resex.codeplex.com I will later update my post to reflect this change. – Lex Li Jan 23 at 3:08
@LexLi and still last activity 2008 - 5 years from now... – DarkDeny Jan 23 at 10:35
show 2 more comments

closed as off topic by Andrew Barber May 7 at 14:46

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

6 Answers

I have tried crowdin.net and it worked fairly well. It's a free online too.

  • Nice, quick support.
  • It's easy to edit resx files.
  • Also supports a wide range of other resource files.
  • It's easy to invite volonteers to help you translate the project if desired.
share|improve this answer
That's a nice service, thanks! But I need tools that work on my computer with my .NET solutions, preferrably inside Visual Studio 2010 or 2012. – DarkDeny Jan 22 at 11:32

I sell a professional localization tool for Visual Studio developers and their translators. It does specifically what you're asking but I stand to profit from it so I don't want to overtly promote it here (to conform with the site's rules). See my profile for the link address.

share|improve this answer
Thank you, I will check it out. – DarkDeny Jan 22 at 14:09
Ok, np. A new version will be released very shortly however, with some new features in the translator's version. Contact me directly if you prefer to test with the beta release, since this version will soon replace the existing version. Any further issues should be discussed offline (since this isn't the appropriate place). – Larry Jan 22 at 15:18

Google for .NET Localization and you will find plenty of 3rd party tools.

I suggest looking into ResGen.exe, which comes with Visual Studio http://msdn.microsoft.com/en-US/library/ccec7sz1(v=vs.80).aspx

Another suggestion: Create an Excel file with your resources, and using formulas, construct final output to be placed in txt file.

Afterwards, just use ResGen to create the resx files.

On a related note: Always use resx files when creating an app. You shall reap the benefits later when someone asks you: "Can this app be localized into Yiddish?". Hopefully you won't answer: Oy Vey. :D

share|improve this answer
Thanks for your answer, but that is what I want to be more comfortable. Not command-line interface of resgen, not manually checked Excel file, etc... – DarkDeny Jan 22 at 11:29
Then i guess you are out of luck, then my friend. :) – Anarud Jan 28 at 10:27
Not sure, I've found what I was looking for. Please read my own answer below. – DarkDeny Jan 28 at 19:17

ResGen comes with Visual Studio. It is a basic editor that shows what files need to change when localizing .net. I would not recommend building a localization process around it.

Quality tools dedicated to the task will give you much better support. they promote best practise and have connections to industry standard translation memory, terminology, etc. These are important concepts for localization.

The better ones can be automated so that your language assemblies are generated immediately following new builds in the source language.

Google .net software localization for good solutions.

share|improve this answer
I've googled, and found nothing useful. I am not trying to find a way around ResGen. I am trying to find comfortable tools which would work in VS with resx files, which then will be compiled by ResGen. Have you tried to work with a solutions localized to several languages? If yes, then you should know how it is annoying to add same named string to several resx files. Then you probably know how to find out that some strings are missing in some languages, etc, etc, etc. – DarkDeny Jan 22 at 13:58
up vote 0 down vote accepted

I just found simple VS addon with what I was looking for! http://visualstudiogallery.msdn.microsoft.com/3b64e04c-e8de-4b97-8358-06c73a97cc68 And it is free! ResXManager!

share|improve this answer

Instead of managing the .resx files by hand, you could put all your translations key-value pairs in a spreadsheet and generate the source files from there.

That's how I've solved it in my project. I've created an Excel spreadsheet with VBA macro that generates the .resx files. Managing a spreadsheet is much easier. You can just insert or remove rows, spot and fill in missing values, and generate the sourcefiles again.

You can download my example here (also works for xcode or eclipse btw): http://members.home.nl/bas.de.reuver/files/multilanguage.zip

share|improve this answer
And again this supposed manual work with resources at generation stage and later when adding more text to resources... – DarkDeny Jan 23 at 10:33

Not the answer you're looking for? Browse other questions tagged or ask your own question.