From a96a80e78d032cc6d77077f4d8590ba169dc240a Mon Sep 17 00:00:00 2001 From: Daniel Pereira Date: Tue, 2 Feb 2021 10:38:13 -0300 Subject: [PATCH] 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 --- homeassistant/components/alexa/const.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/homeassistant/components/alexa/const.py b/homeassistant/components/alexa/const.py index a5a1cde2e15..402cb9e1fb2 100644 --- a/homeassistant/components/alexa/const.py +++ b/homeassistant/components/alexa/const.py @@ -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"}