diff --git a/facefusion/locales.py b/facefusion/locales.py index 90942f92..bcc982f2 100644 --- a/facefusion/locales.py +++ b/facefusion/locales.py @@ -4,7 +4,6 @@ LOCALES : Locales =\ { 'en': { - 'conda_not_activated': 'conda is not activated', 'python_not_supported': 'python version is not supported, upgrade to {version} or higher', 'dependency_not_installed': '{dependency} is not installed', 'creating_temp': 'creating temporary resources', @@ -96,8 +95,6 @@ LOCALES : Locales =\ 'exclamation_mark': '!', 'help': { - 'install_dependency': 'choose the variant of {dependency} to install', - 'skip_conda': 'skip the conda environment check', 'config_path': 'choose the config file to override defaults', 'temp_path': 'specify the directory for the temporary resources', 'jobs_path': 'specify the directory to store jobs', diff --git a/tests/test_translator.py b/tests/test_translator.py index 3773cb9e..909e966f 100644 --- a/tests/test_translator.py +++ b/tests/test_translator.py @@ -9,6 +9,6 @@ def test_load() -> None: def test_get() -> None: - assert translator.get('conda_not_activated') == 'conda is not activated' - assert translator.get('help.skip_conda') == 'skip the conda environment check' + assert translator.get('processing_stopped') == 'processing stopped' + assert translator.get('help.run') == 'run the program' assert translator.get('invalid') is None