Disable Vocab Word

This parameter omits a particular vocabulary word in a task from being included in enrollment training. If the site is using a task with a pre-configured vocabulary that contains words that are not in use, then the workers do not have to train templates for that word.

If the vocabulary word that you wish to disable contains a space, replace it with "_" in the parameter name. The format is DisableVocabWord_{word}.

  • 0 = Word is usable, and it is included in enrollment training
  • 1 = {word} is not in use, and it is omitted from enrollment training

The example below shows the vocab words that are disabled

A700x

Set the DisableVocabWord parameter using the Advanced Settings on the Device Settings tab of the task package.

DisableVocabWord_stop=1
DisableVocabWord_select=1
DisableVocabWord_code=1

Android

Set the Disbale Vocabulary Words parameter in the ApplicationSettings.config file.

Vocabulary words may be disabled for an entire application, or if the application has multiple work flows, the vocabulary may be disabled for just some of the work flows defined.

//For Global, All
    "DisabledVocabWords": ["<vocab1>", "<vocab2>", ...],
//By Workflow
    "DisabledVocabWords_ByWorkflow": {
        "<workflowname>": ["<vocab>", "<vocab>", ...],
        "<workflowname>": ["<vocab>", "<vocab>", ...]
    }