Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.google_translate.config_flow Namespace Reference

Classes

class  GoogleTranslateConfigFlow
 

Variables

 STEP_USER_DATA_SCHEMA
 

Detailed Description

Config flow for Google Translate text-to-speech integration.

Variable Documentation

◆ STEP_USER_DATA_SCHEMA

homeassistant.components.google_translate.config_flow.STEP_USER_DATA_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Optional(CONF_LANG, default=DEFAULT_LANG): vol.In(SUPPORT_LANGUAGES),
4  vol.Optional(CONF_TLD, default=DEFAULT_TLD): vol.In(SUPPORT_TLD),
5  }
6 )

Definition at line 21 of file config_flow.py.