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)

Arguments

labbcat.url

URL to the LaBB-CAT instance

layer.id

The ID of the layer with a dictionary configured to manage it.

key

The key (word) in the dictionary to add an entry for.

entry

The value (definition) for the given key.

Value

NULL if the entry was added, or a list of error messages if not.

Details

You must have edit privileges in LaBB-CAT in order to be able to use this function.

See also

Examples

if (FALSE) {
## Add a pronunciation for the word "robert" to the phonemes layer dictionary
addLayerDictionaryEntry(labbcat.url, "phonemes", "robert", "'rQ-b@t")
}