addLayerDictionaryEntry.Rd
This function adds a new entry to the dictionary that manages a given layer, and updates all affected tokens in the corpus. Words can have multiple entries.
addLayerDictionaryEntry(labbcat.url, layer.id, key, entry)
URL to the LaBB-CAT instance
The ID of the layer with a dictionary configured to manage it.
The key (word) in the dictionary to add an entry for.
The value (definition) for the given key.
NULL if the entry was added, or a list of error messages if not.
You must have edit privileges in LaBB-CAT in order to be able to use this function.
if (FALSE) {
## Add a pronunciation for the word "robert" to the phonemes layer dictionary
addLayerDictionaryEntry(labbcat.url, "phonemes", "robert", "'rQ-b@t")
}