From 4483807f6e772c98c736a27aebbb5c3f48c6fb63 Mon Sep 17 00:00:00 2001 From: Koichiro Iwao Date: Fri, 4 Aug 2023 13:57:38 +0900 Subject: [PATCH] Translate quit message As far as I read commit logs, these messages are not intentionally untranslated. Found and fixed by @miraclelinux and @AlmaLinux. --- initial_setup/common.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/initial_setup/common.py b/initial_setup/common.py index 65f2245..7a163f3 100644 --- a/initial_setup/common.py +++ b/initial_setup/common.py @@ -100,12 +100,12 @@ def list_usable_consoles_for_tui(): def get_quit_message(): if eula_available(): - return N_("Are you sure you want to quit the configuration process?\n" - "You might end up with an unusable system if you do. Unless the " - "License agreement is accepted, the system will be rebooted.") + return _("Are you sure you want to quit the configuration process?\n" + "You might end up with an unusable system if you do. Unless the " + "License agreement is accepted, the system will be rebooted.") else: - return N_("Are you sure you want to quit the configuration process?\n" - "You might end up with unusable system if you do.") + return _("Are you sure you want to quit the configuration process?\n" + "You might end up with unusable system if you do.") class LicensingCategory(SpokeCategory):