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.
|
|
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. |
||
|
|
|
|
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:
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. |
||
|
|
|
|
winmerge |
||||||
|
|
|
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. |
||
|
|
|
You could code something up using XmlDiff |
||
|
|
|
|
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 |
||
|
|
