From 76b2065edce9b4e3f3b9fab80ce04ad35f096a61 Mon Sep 17 00:00:00 2001 From: Sergey Cherevko Date: Thu, 19 Dec 2024 21:38:09 +0300 Subject: [PATCH 10/15] Set English as fallback language for help --- pyanaconda/core/constants.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyanaconda/core/constants.py b/pyanaconda/core/constants.py index e2f5d1a..9698270 100644 --- a/pyanaconda/core/constants.py +++ b/pyanaconda/core/constants.py @@ -79,6 +79,9 @@ BACKEND_READY_FLAG_FILE = "/run/anaconda/backend_ready" # NOTE: this should be LANG_TERRITORY.CODESET, e.g. en_US.UTF-8 DEFAULT_LANG = "ru_RU.UTF-8" +# NOTE: MSVSphere change, set English as a fallback help language because +# we use Russian by default for UI +DEFAULT_HELP_LANG = "en_US.UTF-8" DEFAULT_VC_FONT = "eurlatgr" -- 2.43.5