When using the Multilingual App Toolkit, our resx and xlf files contain lots of junk that we don't want translating (like a control's size and location).
Is there anyway to automatically exclude all the extra information?
If not, is the only way to manually go through the XLIFF file using the Multilingual Editor and change translatable to False?
The problem is even worse when the resource file contains images...


A few days after asking here, I tried asking the same question at the official support page for Multilingual App Toolkit, but I didn't get a reply there either.
So, as a workaround to the problem I've written a python script to set all of the properties other than
.Textin the XLIFF files so that they are marked astranslate="No". The Multilingual Editor doesn't have an option to set "Translatable" as a bulk operation, and doing this manually would take forever.In Visual Studio, I also had to manually open every form and set the
Localizableproperty toTrueso that the.Textvalues are saved in the corresponding.resxwhere the Multilingual App Toolkit can process them.