Localising Multi-Form project + other Resource files
How exactly does VS deal with localising multiple .resx files in the same project? Assuming I turn on Localisable = true for every form, plus use (possibly several) other .resx files in the project for error messages, use messages, help, info and various other text that is not tied directly to a Winform, what am I going to end up with when I add say "German"?
One assembly file per .resx? Form1.de.dll + Form2.de.dll + OtherText.de.dll -- Or can I compile the entire .de culture into something like Project1.de.dll
Is it wise to mix using the "automatic" localisation in Winforms with self loaded resources? I was planning on just sending out the resultant Form1.resx to external translation, not toggling the culture setting on every form and retyping in control text and the like (as I have seen suggested in several places).
I just would rather not have to write code to populate every Winform control with text if I can get the IDE/Compiler to do that for me

