vote up 4 vote down star
3

How can I compare the content of two (or more) large .resx files? With hundreds of Name/Value pairs in each file, it'd be very helpful to view a combined version. I'm especially interested in Name/Value pairs which are present in the neutral culture but are not also specified in a culture-specific version.

flag

6 Answers

vote up 0 vote down

You can use a tool like TortoiseSVN's diff (if you're using windows), just select both files, right click and then select "diff" form the tortoise submenu.

link|flag
vote up 2 vote down

Using simple diff on XML files can be totally useless, if the matching elements do not appear in the same order in both files. I have been looking for an XML-specific diff tool too, so far without success.

In the meantime, the workaround I have been using is this:

  • Open the resx files in the VS.
  • Select all [CTRL-A] and cut [CTRL-X] (this may take a while for large files - be patient)
  • Paste [CTRL-V] and save (this will re-create the resx files sorted by keys)

When both files are thus re-ordered, normal diff'ing becomes so much easier. You can quickly locate the missing keys by skimming through the diff now.

link|flag
vote up 0 vote down

winmerge

http://www.winmerge.org/

link|flag
Does it have real XML support? – Ishmaeel Oct 9 '08 at 9:28
What is "real" xml support? – Greg Dean Oct 10 '08 at 4:55
What I mean by that is element-based comparison. Simple text diff will show changed lines, but ignore the XML hierarchy. I'll cook up an example that illustrates the problem as I see it. – Ishmaeel Oct 10 '08 at 5:30
vote up 5 vote down

Although it's not a diff tool per se, RESX Synchronizer may help you out here. Its main use is to update the localized .resx files with new entries from the neutral language one, and remove any deleted items.

Possibly, the output generated by using it with the /v command line switch will be what you need. Otherwise, it does come with full C# source code, so possibly you can adapt it for your needs.

link|flag
simply awesome. thx – Konstantinos Sep 24 at 12:27
vote up 0 vote down

You could code something up using XmlDiff

http://msdn.microsoft.com/en-us/library/aa302294.aspx

link|flag
vote up 2 vote down

There is a great freeware tool to edit resx files where you can see multiple languages at once and clearly see what is missing or extra - Zeta Resource Editor

link|flag

Your Answer

Get an OpenID
or

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