views:

53

answers:

2

I am needing to localize an existing app written in C# with WPF/XAML. I have found the Rgreatex plugin to Resharper that helps find and move strings found in C# to resource files. But, it only works with *.cs files. Does anyone know of a tool that helps find localizable strings in XAML?

A: 

You can use the LocBaml tool to do much of this. I'd recommend reading the WPF Globalization and Localization section on MSDN, since this is usually done a bit differently in WPF than it was in Windows Forms.

Reed Copsey
A: 

Unfortunately, I can't use the LocBaml tool since management believes it to be very beta. I have been unable to find anything else to do this so I guess I'll writer my own utility similar to the Resharper plugin but for XAML.

bsh152s