> On Behalf Of Gururaj Rao
> Yes. Since you asked, I suppose this function of automatically inserting all
> glossary entries into the text to be translated does not exist.
> Wasn't there an automatic translating function (inserting all 100% matches into
> the text)? If that is possible, I presume inserting glossary entries would also be
> possible?
Sorry to double post. I did make the macro public, but it doesn't do quite what you ask. It instead replaces all glossary entries in the selection. Shouldn't be too hard to modify it to insert them alongside instead.
http://felix-cat.com/blog/2010/10/03/some-word-macros-for-use-with-felix/
Download ReplaceGlossMatches, and replace the following line:
.Replacement.Text = glossMatch(1)
With this:
.Replacement.Text = glossMatch(1) + " " + glossMatch(0)
(You could also wrap the source (glossMatch(0)) with parens, should be simple to figure out)
You could assign a keyboard shortcut for this macro, so although it wouldn't be completely automatic, it gets you a lot of the way there. Another macro in that post goes through the entire document; maybe that's what you want.
Regards,
Ryan