2

When I created the assistant, I chose the Spanish Language. However, the label of the drop-down menu is still in English: "Select an option"

enter image description here

Is there a way to change that label? (From "Select an option" to another language or whatever label I might want to use)

Tomer Shetah
  • 8,413
  • 7
  • 27
  • 35
Acubam
  • 23
  • 2
  • What is your browser setting for language? – data_henrik Aug 17 '20 at 08:10
  • @data_henrik It was English. I changed it to Spanish on both Chrome and Firefox, but still the text says: "Select an option" in English. Thanks a lot for commenting! – Acubam Aug 18 '20 at 15:51

1 Answers1

2

You can use instance.updateLanguagePack()

const customLanguagePack = {
  "options_select": "Select"
};
instance.updateLanguagePack(customLanguagePack);
Tomer Shetah
  • 8,413
  • 7
  • 27
  • 35
Takuya
  • 21
  • 2