1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Remove loading of legacy translations (#37021)

This commit is contained in:
Joakim Sørensen
2020-06-23 10:58:11 +02:00
committed by GitHub
parent 9d16edc1dc
commit 835f433cf7
2 changed files with 2 additions and 13 deletions

View File

@@ -32,7 +32,7 @@ REMOVED_TITLE_MSG = (
MOVED_TRANSLATIONS_DIRECTORY_MSG = (
"The '.translations' directory has been moved, the new name is 'translations', "
"starting with Home Assistant 0.111 your translations will no longer "
"starting with Home Assistant 0.112 your translations will no longer "
"load if you do not move/rename this "
)
@@ -47,7 +47,7 @@ def check_translations_directory_name(integration: Integration) -> None:
return
if legacy_translations.is_dir():
integration.add_warning("translations", MOVED_TRANSLATIONS_DIRECTORY_MSG)
integration.add_error("translations", MOVED_TRANSLATIONS_DIRECTORY_MSG)
def find_references(strings, prefix, found):