From f6bfe11ab899570ee74ff59c020912f339796fee Mon Sep 17 00:00:00 2001 From: Andrew David Wong Date: Sun, 27 May 2018 13:29:13 -0500 Subject: [PATCH] Fix System Requirements URL and typo in hardware warnings Fixes QubesOS/qubes-issues#3932 Related to QubesOS/qubes-issues#3208 --- anaconda/pyanaconda/ui/gui/spokes/welcome.glade | 2 +- anaconda/pyanaconda/ui/tui/spokes/warnings_spoke.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/anaconda/pyanaconda/ui/gui/spokes/welcome.glade b/anaconda/pyanaconda/ui/gui/spokes/welcome.glade index 8daed92..3bd04fe 100644 --- a/anaconda/pyanaconda/ui/gui/spokes/welcome.glade +++ b/anaconda/pyanaconda/ui/gui/spokes/welcome.glade @@ -507,7 +507,7 @@ True False start - This hardware lacks features required by Qubes OS. Missing features: %(features)s. Without these features, Qubes OS will not function normally. It is recommended that only developers and power users proceed with the installation. For more information on supported hardware, please refer to https://www.qubes-os.org/system-requirements/ + This hardware lacks features required by Qubes OS. Missing features: %(features)s. Without these features, Qubes OS will not function normally. It is recommended that only developers and power users proceed with the installation. For more information on supported hardware, please refer to https://www.qubes-os.org/doc/system-requirements/ True diff --git a/anaconda/pyanaconda/ui/tui/spokes/warnings_spoke.py b/anaconda/pyanaconda/ui/tui/spokes/warnings_spoke.py index 8aed096..a0e7509 100644 --- a/anaconda/pyanaconda/ui/tui/spokes/warnings_spoke.py +++ b/anaconda/pyanaconda/ui/tui/spokes/warnings_spoke.py @@ -43,10 +43,10 @@ class WarningsSpoke(StandaloneTUISpoke): def __init__(self, *args, **kwargs): StandaloneTUISpoke.__init__(self, *args, **kwargs) - self._message = _("This hardware lack features required by Qubes OS. " + self._message = _("This hardware lacks features required by Qubes OS. " "Missing features: %(features)s. " "For more information on supported hardware, " - "please refer to https://www.qubes-os.org/system-requirements/") + "please refer to https://www.qubes-os.org/doc/system-requirements/") # Does anything need to be displayed? # pylint: disable=no-member # self._unsupported = not self.data.unsupportedhardware.unsupported_hardware \