How to configure the tool-tip for a plugin/translation memory?

how to edit/set this tool-tip data?

The object TranslationProviderDisplayInfo.TooltipText only configures tooltip in the "project settings". Any help would be appreciated and I aplogize it this is something that is easily found in the documentation.

Parents
  • Hi Karlis,

    You should try adding additional field properties to each of the TU's; this specific information will be displayed on the 4th (or 5th :-) ) column of the results window; make reference to the screenshot.

    Example:

           TranslationUnit tu = new TranslationUnit();
    [...]

    [...]
                MultiplePicklistFieldValue fieldValue = new MultiplePicklistFieldValue("FieldValueName");
                fieldValue.Add("Field Value Text");
                tu.FieldValues.Add(fieldValue);

    Hope this helps,

    Patrick.


    Patrick Andrew Hartnett | Developer Experience | Team Lead | RWS Group

Reply
  • Hi Karlis,

    You should try adding additional field properties to each of the TU's; this specific information will be displayed on the 4th (or 5th :-) ) column of the results window; make reference to the screenshot.

    Example:

           TranslationUnit tu = new TranslationUnit();
    [...]

    [...]
                MultiplePicklistFieldValue fieldValue = new MultiplePicklistFieldValue("FieldValueName");
                fieldValue.Add("Field Value Text");
                tu.FieldValues.Add(fieldValue);

    Hope this helps,

    Patrick.


    Patrick Andrew Hartnett | Developer Experience | Team Lead | RWS Group

Children