Hi
I have small function to export files to tmx:
TranslationMemoryExporter exporter = new TranslationMemoryExporter(tm.LanguageDirection);
string f = tm.FilePath.Replace(System.IO.Path.GetFileName(tm.FilePath), System.IO.Path.GetFileNameWithoutExtension(tm.FilePath) + ".tmx");
if(File.Exists(f)==true)File.Delete(f);
exporter.Export(f, true);
I'm trying to find out how i can set up export filters. Does anyomne have any ideas how to do this?