From fb3d98cebb67a468e37c036b1dd2c1707cc731bd Mon Sep 17 00:00:00 2001 From: Andrew David Wong Date: Fri, 19 Oct 2018 08:02:13 +0200 Subject: [PATCH] anaconda: Fix System Requirements URL and typo in hardware warnings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes QubesOS/qubes-issues#3932 Related to QubesOS/qubes-issues#3208 Signed-off-by: Frédéric Pierret --- pyanaconda/ui/gui/spokes/welcome.glade | 2 +- pyanaconda/ui/tui/spokes/warnings_spoke.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyanaconda/ui/gui/spokes/welcome.glade b/pyanaconda/ui/gui/spokes/welcome.glade index 8daed92af..3bd04fe08 100644 --- a/pyanaconda/ui/gui/spokes/welcome.glade +++ b/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/pyanaconda/ui/tui/spokes/warnings_spoke.py b/pyanaconda/ui/tui/spokes/warnings_spoke.py index 8aed09625..a0e750914 100644 --- a/pyanaconda/ui/tui/spokes/warnings_spoke.py +++ b/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 \ -- 2.14.4