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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 13 deletions

View File

@ -20,12 +20,6 @@ _LOGGER = logging.getLogger(__name__)
TRANSLATION_LOAD_LOCK = "translation_load_lock"
TRANSLATION_FLATTEN_CACHE = "translation_flatten_cache"
MOVED_TRANSLATIONS_DIRECTORY_MSG = (
"%s: the '.translations' directory has been moved, the new name is 'translations', "
"starting with Home Assistant 0.111 your translations will no longer "
"load if you do not move/rename this "
)
def recursive_flatten(prefix: Any, data: Dict) -> Dict[str, Any]:
"""Return a flattened representation of dict data."""
@ -71,13 +65,8 @@ def component_translation_path(
else:
filename = f"{language}.json"
translation_legacy_path = integration.file_path / ".translations"
translation_path = integration.file_path / "translations"
if translation_legacy_path.is_dir() and not translation_path.is_dir():
_LOGGER.warning(MOVED_TRANSLATIONS_DIRECTORY_MSG, domain)
return str(translation_legacy_path / filename)
return str(translation_path / filename)

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):