Termbase Search not showing definition or status

Hi all, 

we have a problem showing additional information from our terminology provider plugin. 

The source and target term are showing up. 

We followed the tutorial and checked different other open plugins and the hitlist settings are showing the fields for definition (entry level) and status (term level) . 

 

My method to create the entries is only the bare minimum with dummy values, except for the id and the targetlanguage.

 

IEntry thisEntry = new Entry
{
Id = Convert.ToInt32(id)

};

// Add the target language
IEntryLanguage trgLanguage = new EntryLanguage
{
Name = targetLanguage
};

IEntryTerm _term = new EntryTerm
{
Value = "Test"
};
trgLanguage.Terms.Add(_term);
var entryField = new EntryField
{
Name = "Status",
Value = "Approved"
};
_term.Fields.Add(entryField);
thisEntry.Languages.Add(trgLanguage);
// Create the target term


// Also add the definition (if available)
IEntryField _definition = new EntryField
{
Name = "Definition",
Value = "Test"
};

thisEntry.Fields.Add(_definition);

 

Could you please hint me in the right direction what I'm missing

If you need further information, I can provide them.

Attached are the screenshot of the settings and searchresults

 

Trados Studio Field Selection dialog box with 'Definition' and 'Status' fields visible under the 'Term' category.Trados Studio interface showing the 'Korrektur' tab with 'Test' and 'Korrektur zur Betriebsanleitung' entries displayed.

 

Thank you all in advance



Generated Image Alt-Text
[edited by: Trados AI at 1:04 PM (GMT 0) on 5 Mar 2024]