mirror of
https://github.com/home-assistant/core.git
synced 2025-08-03 20:55:10 +02:00
Don't load component when fetching translations (#23196)
This commit is contained in:
@@ -52,11 +52,9 @@ async def component_translation_file(hass: HomeAssistantType, component: str,
|
||||
filename = "{}.{}.json".format(parts[0], language)
|
||||
return str(integration.file_path / '.translations' / filename)
|
||||
|
||||
module = integration.get_component()
|
||||
|
||||
# If it's a component that is just one file, we don't support translations
|
||||
# Example custom_components/my_component.py
|
||||
if module.__name__ != module.__package__:
|
||||
if integration.file_path.name != domain:
|
||||
return None
|
||||
|
||||
filename = '{}.json'.format(language)
|
||||
|
Reference in New Issue
Block a user