Update alexa/const.py to reflect docs (#45806)

The current docs say the Alexa integration is compatible with languages not currently present in the conf validator.

See: https://www.home-assistant.io/integrations/alexa.smart_home/#alexa-locale
This commit is contained in:
Daniel Pereira 2021-02-02 10:38:13 -03:00 committed by GitHub
parent 463a32819c
commit a96a80e78d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,10 +53,13 @@ CONF_SUPPORTED_LOCALES = (
"en-US",
"es-ES",
"es-MX",
"es-US",
"fr-CA",
"fr-FR",
"hi-IN",
"it-IT",
"ja-JP",
"pt-BR",
)
API_TEMP_UNITS = {TEMP_FAHRENHEIT: "FAHRENHEIT", TEMP_CELSIUS: "CELSIUS"}