Hi, Iām using the following code to check if a specific entry is smart or not:
var collection = LocalizationEditorSettings.GetStringTableCollection(tableName);
var englishTable = collection.StringTables[0];
var entry = englishTable.GetEntry(entryName);
var isSmart = entry.IsSmart;
The problem is that I cannot build the application because LocalizationEditorSettings can be used only in editor.
Is there an alternative to achieve the same solution?
Thank you