All articles I've read about localization of a WinForms application assume that I already have all the strings translated. According to the articles, I should just set the Localizable property to true and edit all the controls.
But how do I get all the original (English) strings from the form? Assume I have a complete application, which wasn't localized so far. Should I somehow manually parse the strings from the Designer file or is there any other, simpler approach?
I need to send the strings to the translators in Excel or Word. Since the translators don't have any experience with resources, I will finally move all the translated strings back to my forms and change the controls' sizes, positions etc. where needed.
EDIT: thanks to Rob's answer and comments, the solution is first to set the Localizable property to true. Then, I can easily copy all strings from the resx files that belong to the forms.