When globalizing a wpf application with static resx classes, it's very easy to miss the odd label or button that has its Content
property set to a hard coded string in a particular language, ie English. These should of course be moved off to a {x:Static ...}
so they can be localised for each culture.
Are there any tools which can spot this and warn you? Built in to VS would be ideal, but I'm thinking that 'style cop' type build tools would do the job as well.
David Anson posted just such a tool a few weeks ago. It's a pseudo-localization tool that alters all the strings defined in ResX files so that they stand out from static strings. It changes letters to their accented forms, and also adds padding to strings so you can test for layout changes in languages with longer translations.