From eb2a8681619abb0697fdfdc008ade8d72897dd0d Mon Sep 17 00:00:00 2001 From: basebuilder_pel7x64builder0 Date: Tue, 7 Aug 2018 17:00:47 +0200 Subject: [PATCH] anaconda package update Signed-off-by: basebuilder_pel7x64builder0 --- SOURCES/PowerEL7Placeholder.html | 5 + SOURCES/PowerEL7PlaceholderWithLinks.html | 11 + SOURCES/anaconda-powerel-bootloader.patch | 20 +- SOURCES/anaconda-powerel-installpath.py | 129 +- ...powerel-remove-visible-rh-references.patch | 1447 +++++++++-------- SPECS/anaconda.spec | 2 +- 6 files changed, 918 insertions(+), 696 deletions(-) create mode 100644 SOURCES/PowerEL7Placeholder.html create mode 100644 SOURCES/PowerEL7PlaceholderWithLinks.html diff --git a/SOURCES/PowerEL7Placeholder.html b/SOURCES/PowerEL7Placeholder.html new file mode 100644 index 00000000..8c112e77 --- /dev/null +++ b/SOURCES/PowerEL7Placeholder.html @@ -0,0 +1,5 @@ + +

The Anaconda built-in help

+

...is not yet available for this screen.

+

You can check out the PowerEL 7 Installation Guide or other online help resources instead.

+ diff --git a/SOURCES/PowerEL7PlaceholderWithLinks.html b/SOURCES/PowerEL7PlaceholderWithLinks.html new file mode 100644 index 00000000..c2da61b8 --- /dev/null +++ b/SOURCES/PowerEL7PlaceholderWithLinks.html @@ -0,0 +1,11 @@ + +

The Anaconda built-in help

+

...is not yet available for this screen.

+

You can check the Red Hat Enterprise Linux 7 Installation Guide or Red Hat Customer Portal resources instead:

+

+

+

+ diff --git a/SOURCES/anaconda-powerel-bootloader.patch b/SOURCES/anaconda-powerel-bootloader.patch index ea5e7ca5..8adabbc5 100644 --- a/SOURCES/anaconda-powerel-bootloader.patch +++ b/SOURCES/anaconda-powerel-bootloader.patch @@ -1,20 +1,24 @@ ---- anaconda-21.48.22.56/pyanaconda/bootloader.py 2016-01-04 18:57:47.074249397 +0100 -+++ anaconda-21.48.22.56/pyanaconda/bootloader.py 2016-01-04 18:58:51.104255800 +0100 -@@ -1411,7 +1411,7 @@ +--- anaconda-21.48.22.134/pyanaconda/bootloader.py 2018-08-06 10:13:51.430000000 +0200 ++++ anaconda-21.48.22.134/pyanaconda/bootloader.py 2018-08-06 10:15:02.690000000 +0200 +@@ -1406,8 +1406,8 @@ @property def stage2_format_types(self): - if productName.startswith("Red Hat "): -+ if productName.startswith("PowerEL"): - return ["xfs", "ext4", "ext3", "ext2", "btrfs"] +- return ["xfs", "ext4", "ext3", "ext2", "btrfs"] ++ if productName.startswith("PowerEL "): ++ return ["xfs", "ext4", "btrfs"] else: return ["ext4", "ext3", "ext2", "btrfs", "xfs"] -@@ -2105,7 +2105,7 @@ + +@@ -2126,8 +2126,8 @@ @property def stage2_format_types(self): - if productName.startswith("Red Hat "): -+ if productName.startswith("PowerEL"): - return ["xfs", "ext4", "ext3", "ext2"] +- return ["xfs", "ext4", "ext3", "ext2"] ++ if productName.startswith("PowerEL "): ++ return ["xfs", "ext4"] else: return ["ext4", "ext3", "ext2", "xfs"] + diff --git a/SOURCES/anaconda-powerel-installpath.py b/SOURCES/anaconda-powerel-installpath.py index b45d4ae9..73789d74 100644 --- a/SOURCES/anaconda-powerel-installpath.py +++ b/SOURCES/anaconda-powerel-installpath.py @@ -1,9 +1,7 @@ # -# powerel.py +# rhel.py # -# (c) copyright 2016, VanTosh, All rights reserved. -# Author: Toshaan Bharvani -# License: GNU General Public License v2 +# Copyright (C) 2010 Red Hat, Inc. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -19,36 +17,34 @@ # along with this program. If not, see . # +import os +import logging +log = logging.getLogger("anaconda") from pyanaconda.installclass import BaseInstallClass -from pyanaconda.constants import * -from pyanaconda.product import * -from pyanaconda.kickstart import getAvailableDiskSpace +from pyanaconda.product import productName from pyanaconda import network from pyanaconda import nm +from pyanaconda import iutil +from pyanaconda.kickstart import getAvailableDiskSpace from blivet.partspec import PartSpec from blivet.platform import platform from blivet.devicelibs import swap from blivet.size import Size -import types +__all__ = ["PELBaseInstallClass", "PELAtomicInstallClass"] -class InstallClass(BaseInstallClass): - id = "powerel" +class PELBaseInstallClass(BaseInstallClass): name = "PowerEL" sortPriority = 20000 - if not productName.startswith("PowerEL"): hidden = True - defaultFS = "xfs" bootloaderTimeoutDefault = 5 - # where did this come from ? - #bootloaderExtraArgs = [] - ignoredPackages = [ ] + ignoredPackages = [ "reiserfs-utils" ] installUpdates = False @@ -56,41 +52,41 @@ class InstallClass(BaseInstallClass): efi_dir = "powerel" - help_placeholder = "PowerELPlaceholder.html" - help_placeholder_with_links = "PowerELPlaceholderWithLinks.html" + help_placeholder = "PowerEL7Placeholder.html" + help_placeholder_with_links = "PowerEL7PlaceholderWithLinks.html" def configure(self, anaconda): BaseInstallClass.configure(self, anaconda) - BaseInstallClass.setDefaultPartitioning(self, anaconda.storage) def setNetworkOnbootDefault(self, ksdata): - if ksdata.method.method not in ("url", "nfs"): - return - if network.has_some_wired_autoconnect_device(): + if any(nd.onboot for nd in ksdata.network.network if nd.device): return # choose the device used during installation # (ie for majority of cases the one having the default route) - dev = network.default_route_device() or network.default_route_device(family="inet6") + dev = network.default_route_device() \ + or network.default_route_device(family="inet6") if not dev: return # ignore wireless (its ifcfgs would need to be handled differently) if nm.nm_device_type_is_wifi(dev): return - network.update_onboot_value(dev, "yes", ksdata) + network.update_onboot_value(dev, True, ksdata=ksdata) def __init__(self): BaseInstallClass.__init__(self) - -class AtomicInstallClass(BaseInstallClass): - - id = "powerelatomic" +class PELAtomicInstallClass(RHELBaseInstallClass): name = "PowerEL Atomic Host" - sortPriority=21001 - hidden = not productName.startswith(("PowerEL Atomic Host", "PowerEL Atomic")) + sortPriority=21000 + hidden = not productName.startswith(("PowerEL Atomic Host", "PEL Atomic")) + + def __init__(self): + self.localemap = {} # loaded lazily + RHELBaseInstallClass.__init__(self) def setDefaultPartitioning(self, storage): - autorequests = [PartSpec(mountpoint="/", fstype=storage.defaultFSType, size=Size("1GiB"), maxSize=Size("3GiB"), grow=True, lv=True)] + autorequests = [PartSpec(mountpoint="/", fstype=storage.defaultFSType, + size=Size("3GiB"), maxSize=Size("15GiB"), grow=True, lv=True)] bootreqs = platform.setDefaultPartitioning() if bootreqs: @@ -98,14 +94,79 @@ class AtomicInstallClass(BaseInstallClass): disk_space = getAvailableDiskSpace(storage) swp = swap.swapSuggestion(disk_space=disk_space) - autorequests.append(PartSpec(fstype="swap", size=swp, grow=False, lv=True, encrypted=True)) + autorequests.append(PartSpec(fstype="swap", size=swp, grow=False, + lv=True, encrypted=True)) for autoreq in autorequests: if autoreq.fstype is None: - if autoreq.mountpoint == "/boot": + if autoreq.mountpoint == "/boot": autoreq.fstype = storage.defaultBootFSType - autoreq.size = Size("300MiB") - else: + autoreq.size = Size("256MiB") + else: autoreq.fstype = storage.defaultFSType storage.autoPartitionRequests = autorequests + + def filterSupportedLangs(self, ksdata, langs): + self._initialize_localemap(ksdata.ostreesetup.ref, + ksdata.ostreesetup.url) + for lang in langs: + if lang in self.localemap: + yield lang + + def filterSupportedLocales(self, ksdata, lang, locales): + self._initialize_localemap(ksdata.ostreesetup.ref, + ksdata.ostreesetup.url) + supported = [] + if lang in self.localemap: + for locale in locales: + stripped = self._strip_codeset_and_modifier(locale) + if stripped in self.localemap[lang]: + supported.append(locale) + return supported + + def _initialize_localemap(self, ref, repo): + + if self.localemap: + return + + # fallback to just en_US in case of errors + self.localemap = { "en": ["en_US"] } + + # Let's only handle local embedded repos for now. Anyway, it'd probably + # not be very common to only override ostreesetup through kickstart and + # still want the interactive installer. Though to be nice, let's handle + # that case. + if not repo.startswith("file://"): + log.info("ostree repo is not local; defaulting to en_US") + return + + # convert to regular UNIX path + repo = repo[len("file://"):] + + iutil.mkdirChain(os.path.join(repo, "tmp/usr/lib")) + rc = iutil.execWithRedirect("/usr/bin/ostree", + ["checkout", "--repo", repo, ref, + "--subpath", "/usr/lib/locale/locale-archive", + "install/ostree/tmp/usr/lib/locale"]) + if rc != 0: + log.error("failed to check out locale-archive; check program.log") + return + + for line in iutil.execReadlines("/usr/bin/localedef", + ["--prefix", os.path.join(repo, "tmp"), + "--list-archive"]): + line = self._strip_codeset_and_modifier(line) + (lang, _) = line.split('_') + if lang not in self.localemap: + self.localemap[lang] = [line] + else: + self.localemap[lang].append(line) + + @staticmethod + def _strip_codeset_and_modifier(locale): + if '@' in locale: + locale = locale[:locale.find('@')] + if '.' in locale: + locale = locale[:locale.find('.')] + return locale diff --git a/SOURCES/anaconda-powerel-remove-visible-rh-references.patch b/SOURCES/anaconda-powerel-remove-visible-rh-references.patch index 6b4c599a..828b4ba0 100644 --- a/SOURCES/anaconda-powerel-remove-visible-rh-references.patch +++ b/SOURCES/anaconda-powerel-remove-visible-rh-references.patch @@ -1,1304 +1,1445 @@ -diff -Nur anaconda-21.48.22.56.orig/po/af.po anaconda-21.48.22.56/po/af.po ---- anaconda-21.48.22.56.orig/po/af.po 2015-10-29 08:08:29.000000000 -0700 -+++ anaconda-21.48.22.56/po/af.po 2015-11-20 00:30:56.282885630 -0800 -@@ -2080,9 +2080,9 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/af.po anaconda-21.48.22.129/po/af.po +--- anaconda-21.48.22.129.orig/po/af.po 2017-12-08 02:40:05.000000000 -0800 ++++ anaconda-21.48.22.129/po/af.po 2018-01-25 10:41:06.044920782 -0800 +@@ -2315,9 +2315,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" #: pyanaconda/ui/tui/spokes/progress.py:37 -diff -Nur anaconda-21.48.22.56.orig/po/am.po anaconda-21.48.22.56/po/am.po ---- anaconda-21.48.22.56.orig/po/am.po 2015-10-29 08:08:29.000000000 -0700 -+++ anaconda-21.48.22.56/po/am.po 2015-11-20 00:30:56.284885440 -0800 -@@ -2078,9 +2078,9 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/am.po anaconda-21.48.22.129/po/am.po +--- anaconda-21.48.22.129.orig/po/am.po 2017-12-08 02:40:05.000000000 -0800 ++++ anaconda-21.48.22.129/po/am.po 2018-01-25 10:41:06.165744311 -0800 +@@ -2313,9 +2313,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" #: pyanaconda/ui/tui/spokes/progress.py:37 -diff -Nur anaconda-21.48.22.56.orig/po/anaconda.pot anaconda-21.48.22.56/po/anaconda.pot ---- anaconda-21.48.22.56.orig/po/anaconda.pot 2015-10-29 08:08:45.000000000 -0700 -+++ anaconda-21.48.22.56/po/anaconda.pot 2015-11-20 00:30:56.286885267 -0800 -@@ -2078,9 +2078,9 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/anaconda.pot anaconda-21.48.22.129/po/anaconda.pot +--- anaconda-21.48.22.129.orig/po/anaconda.pot 2017-12-08 02:40:04.000000000 -0800 ++++ anaconda-21.48.22.129/po/anaconda.pot 2018-01-25 10:41:06.297961121 -0800 +@@ -2313,9 +2313,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" #: pyanaconda/ui/tui/spokes/progress.py:37 -diff -Nur anaconda-21.48.22.56.orig/po/ar.po anaconda-21.48.22.56/po/ar.po ---- anaconda-21.48.22.56.orig/po/ar.po 2015-10-29 08:08:29.000000000 -0700 -+++ anaconda-21.48.22.56/po/ar.po 2015-11-20 00:30:56.287885271 -0800 -@@ -2205,12 +2205,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/ar.po anaconda-21.48.22.129/po/ar.po +--- anaconda-21.48.22.129.orig/po/ar.po 2017-12-08 02:40:05.000000000 -0800 ++++ anaconda-21.48.22.129/po/ar.po 2018-01-25 10:41:06.401783163 -0800 +@@ -2427,12 +2427,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" "هذا العتاد ( أو مجموعة منه ) غير مدعوم بواسطة ريدهات. لمزيد من المعلومات عن " -"العتاد المدعوم ، ادخل إلى http://www.redhat.com/hardware." -+"العتاد المدعوم ، ادخل إلى http://www.powerel.org/." ++"العتاد المدعوم ، ادخل إلى http://linux.oracle.com." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/as.po anaconda-21.48.22.56/po/as.po ---- anaconda-21.48.22.56.orig/po/as.po 2015-10-29 08:08:29.000000000 -0700 -+++ anaconda-21.48.22.56/po/as.po 2015-11-20 00:30:56.289885487 -0800 -@@ -2293,12 +2293,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/as.po anaconda-21.48.22.129/po/as.po +--- anaconda-21.48.22.129.orig/po/as.po 2017-12-08 02:40:05.000000000 -0800 ++++ anaconda-21.48.22.129/po/as.po 2018-01-25 10:56:02.115423248 -0800 +@@ -2512,12 +2512,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -"এই হাৰ্ডৱেৰ (অথবা সংযুক্তি) Red Hat দ্বাৰা সমৰ্থিত নহয়। সমৰ্থিত হাৰ্ডৱেৰৰ বিষয়ে " -"অধিক তথ্যৰ বাবে, অনুগ্ৰহ কৰি http://www.redhat.com/hardware চাওক।" +"এই হাৰ্ডৱেৰ (অথবা সংযুক্তি) PowerEL দ্বাৰা সমৰ্থিত নহয়। সমৰ্থিত হাৰ্ডৱেৰৰ বিষয়ে " -+"অধিক তথ্যৰ বাবে, অনুগ্ৰহ কৰি http://www.powerel.org/ চাওক।" ++"অধিক তথ্যৰ বাবে, অনুগ্ৰহ কৰি http://linux.oracle.com চাওক।" #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/ast.po anaconda-21.48.22.56/po/ast.po ---- anaconda-21.48.22.56.orig/po/ast.po 2015-10-29 08:08:30.000000000 -0700 -+++ anaconda-21.48.22.56/po/ast.po 2015-11-20 00:30:56.291885352 -0800 -@@ -2109,9 +2109,9 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/ast.po anaconda-21.48.22.129/po/ast.po +--- anaconda-21.48.22.129.orig/po/ast.po 2017-12-08 02:40:05.000000000 -0800 ++++ anaconda-21.48.22.129/po/ast.po 2018-01-25 10:41:06.599998263 -0800 +@@ -2344,9 +2344,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" #: pyanaconda/ui/tui/spokes/progress.py:37 -diff -Nur anaconda-21.48.22.56.orig/po/be.po anaconda-21.48.22.56/po/be.po ---- anaconda-21.48.22.56.orig/po/be.po 2015-10-29 08:08:30.000000000 -0700 -+++ anaconda-21.48.22.56/po/be.po 2015-11-20 00:30:56.293885304 -0800 -@@ -2082,9 +2082,9 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/be.po anaconda-21.48.22.129/po/be.po +--- anaconda-21.48.22.129.orig/po/be.po 2017-12-08 02:40:05.000000000 -0800 ++++ anaconda-21.48.22.129/po/be.po 2018-01-25 10:41:06.696627625 -0800 +@@ -2317,9 +2317,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" #: pyanaconda/ui/tui/spokes/progress.py:37 -diff -Nur anaconda-21.48.22.56.orig/po/bg.po anaconda-21.48.22.56/po/bg.po ---- anaconda-21.48.22.56.orig/po/bg.po 2015-10-29 08:08:30.000000000 -0700 -+++ anaconda-21.48.22.56/po/bg.po 2015-11-20 00:30:56.294885298 -0800 -@@ -2342,13 +2342,13 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/bg.po anaconda-21.48.22.129/po/bg.po +--- anaconda-21.48.22.129.orig/po/bg.po 2017-12-08 02:40:05.000000000 -0800 ++++ anaconda-21.48.22.129/po/bg.po 2018-01-25 10:56:27.438596177 -0800 +@@ -2555,12 +2555,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." --msgstr "" ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." + msgstr "" -"Този (или тази комбинация от) хардуер не се поддържа от Red Hat. За повече " -"информация за поддържания хардуер, моля, проверете на http://www.redhat.com/" --"hardware." -+"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." -+msgstr "" +"Този (или тази комбинация от) хардуер не се поддържа от PowerEL. За повече " -+"информация за поддържания хардуер, моля, проверете на http://www.powerel.org/" -+"." ++"информация за поддържания хардуер, моля, проверете на https://www.powerel.org/" + "hardware." #: pyanaconda/ui/tui/spokes/progress.py:37 - msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/bn_IN.po anaconda-21.48.22.56/po/bn_IN.po ---- anaconda-21.48.22.56.orig/po/bn_IN.po 2015-10-29 08:08:30.000000000 -0700 -+++ anaconda-21.48.22.56/po/bn_IN.po 2015-11-20 00:30:56.296884787 -0800 -@@ -2313,13 +2313,13 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/bn_IN.po anaconda-21.48.22.129/po/bn_IN.po +--- anaconda-21.48.22.129.orig/po/bn_IN.po 2017-12-08 02:40:06.000000000 -0800 ++++ anaconda-21.48.22.129/po/bn_IN.po 2018-01-25 10:53:02.680142459 -0800 +@@ -2529,13 +2529,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -"এই হার্ডওয়্যারের (অথবা অন্যান্য একাধিক হার্ডওয়্যারের সাথে এটির) ব্যবহার Red Hat " +"এই হার্ডওয়্যারের (অথবা অন্যান্য একাধিক হার্ডওয়্যারের সাথে এটির) ব্যবহার PowerEL " "দ্বারা সমর্থিত নয়। সমর্থিত হার্ডওয়্যার সম্পর্কে অধিক তথ্য জানার জন্য অনুগ্রহ করে http://" -"www.redhat.com/hardware পড়ুন।" -+"www.powerel.org পড়ুন।" ++"linux.oracle.com পড়ুন।" #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/bn.po anaconda-21.48.22.56/po/bn.po ---- anaconda-21.48.22.56.orig/po/bn.po 2015-10-29 08:08:30.000000000 -0700 -+++ anaconda-21.48.22.56/po/bn.po 2015-11-20 00:30:56.297884670 -0800 -@@ -2149,9 +2149,9 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/bn.po anaconda-21.48.22.129/po/bn.po +--- anaconda-21.48.22.129.orig/po/bn.po 2017-12-08 02:40:05.000000000 -0800 ++++ anaconda-21.48.22.129/po/bn.po 2018-01-25 10:41:06.990911482 -0800 +@@ -2379,9 +2379,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" #: pyanaconda/ui/tui/spokes/progress.py:37 -diff -Nur anaconda-21.48.22.56.orig/po/bs.po anaconda-21.48.22.56/po/bs.po ---- anaconda-21.48.22.56.orig/po/bs.po 2015-10-29 08:08:30.000000000 -0700 -+++ anaconda-21.48.22.56/po/bs.po 2015-11-20 00:30:56.298884785 -0800 -@@ -2101,9 +2101,9 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/bs.po anaconda-21.48.22.129/po/bs.po +--- anaconda-21.48.22.129.orig/po/bs.po 2017-12-08 02:40:06.000000000 -0800 ++++ anaconda-21.48.22.129/po/bs.po 2018-01-25 10:41:07.087350054 -0800 +@@ -2331,9 +2331,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" #: pyanaconda/ui/tui/spokes/progress.py:37 -diff -Nur anaconda-21.48.22.56.orig/po/ca.po anaconda-21.48.22.56/po/ca.po ---- anaconda-21.48.22.56.orig/po/ca.po 2015-10-29 08:08:30.000000000 -0700 -+++ anaconda-21.48.22.56/po/ca.po 2015-11-20 00:30:56.299884770 -0800 -@@ -2700,13 +2700,13 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/ca.po anaconda-21.48.22.129/po/ca.po +--- anaconda-21.48.22.129.orig/po/ca.po 2017-12-08 02:40:06.000000000 -0800 ++++ anaconda-21.48.22.129/po/ca.po 2018-01-25 10:56:53.100665067 -0800 +@@ -2924,13 +2924,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." --msgstr "" --"Aquest maquinari (o una combinació) no està suportat per Red Hat. Per " --"obtenir més informació sobre el maquinari suportat, consulteu http://www." --"redhat.com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." -+msgstr "" ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." + msgstr "" +-"Aquest maquinari (o una combinació) no està suportat per Red Hat. Per " +"Aquest maquinari (o una combinació) no està suportat per PowerEL. Per " -+"obtenir més informació sobre el maquinari suportat, consulteu http://linux." -+"oracle.com/." + "obtenir més informació sobre el maquinari suportat, consulteu http://www." +-"redhat.com/hardware." ++"redhat.com/." # translation auto-copied from project Anaconda, version master, document # anaconda -diff -Nur anaconda-21.48.22.56.orig/po/cs.po anaconda-21.48.22.56/po/cs.po ---- anaconda-21.48.22.56.orig/po/cs.po 2015-10-29 08:08:30.000000000 -0700 -+++ anaconda-21.48.22.56/po/cs.po 2015-11-20 00:30:56.300884707 -0800 -@@ -2336,8 +2336,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/cs.po anaconda-21.48.22.129/po/cs.po +--- anaconda-21.48.22.129.orig/po/cs.po 2017-12-08 02:40:06.000000000 -0800 ++++ anaconda-21.48.22.129/po/cs.po 2018-01-25 10:57:43.800878902 -0800 +@@ -2633,12 +2633,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "Tento hardware není firmou Red Hat podoporován. Pro více informací o " -diff -Nur anaconda-21.48.22.56.orig/po/cy.po anaconda-21.48.22.56/po/cy.po ---- anaconda-21.48.22.56.orig/po/cy.po 2015-10-29 08:08:30.000000000 -0700 -+++ anaconda-21.48.22.56/po/cy.po 2015-11-20 00:30:56.301884707 -0800 -@@ -2080,8 +2080,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +-"Tento hardware není firmou Red Hat podoporován. Pro více informací o " +-"podporovaném hardware navštivte stránku http://www.redhat.com/hardware." ++"Tento hardware není firmou PowerEL podoporován. Pro více informací o " ++"podporovaném hardware navštivte stránku http://linux.oracle.com." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -ruN anaconda-21.48.22.129.orig/po/cy.po anaconda-21.48.22.129/po/cy.po +--- anaconda-21.48.22.129.orig/po/cy.po 2017-12-08 02:40:06.000000000 -0800 ++++ anaconda-21.48.22.129/po/cy.po 2018-01-25 10:41:07.374837710 -0800 +@@ -2315,9 +2315,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/da.po anaconda-21.48.22.56/po/da.po ---- anaconda-21.48.22.56.orig/po/da.po 2015-10-29 08:08:30.000000000 -0700 -+++ anaconda-21.48.22.56/po/da.po 2015-11-20 00:30:56.302884760 -0800 -@@ -2453,13 +2453,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/da.po anaconda-21.48.22.129/po/da.po +--- anaconda-21.48.22.129.orig/po/da.po 2017-12-08 02:40:06.000000000 -0800 ++++ anaconda-21.48.22.129/po/da.po 2018-01-25 10:58:10.174387786 -0800 +@@ -2656,12 +2656,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." --msgstr "" ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." + msgstr "" -"Denne hardware (eller kombinationen heraf) er ikke understøttet af Red Hat. " -"For mere information om understøttet hardware, se http://www.redhat.com/" --"hardware." -+"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." -+msgstr "" +"Denne hardware (eller kombinationen heraf) er ikke understøttet af PowerEL. " -+"For mere information om understøttet hardware, se http://www.powerel.org/" ++"For mere information om understøttet hardware, se https://www.powerel.org/" + "hardware." #: pyanaconda/ui/tui/spokes/progress.py:37 - msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/de_CH.po anaconda-21.48.22.56/po/de_CH.po ---- anaconda-21.48.22.56.orig/po/de_CH.po 2015-10-29 08:08:30.000000000 -0700 -+++ anaconda-21.48.22.56/po/de_CH.po 2015-11-20 00:30:56.303884759 -0800 -@@ -2112,8 +2112,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/de_CH.po anaconda-21.48.22.129/po/de_CH.po +--- anaconda-21.48.22.129.orig/po/de_CH.po 2017-12-08 02:40:06.000000000 -0800 ++++ anaconda-21.48.22.129/po/de_CH.po 2018-01-25 10:41:07.572758150 -0800 +@@ -2347,9 +2347,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/de.po anaconda-21.48.22.56/po/de.po ---- anaconda-21.48.22.56.orig/po/de.po 2015-10-29 08:08:30.000000000 -0700 -+++ anaconda-21.48.22.56/po/de.po 2015-11-20 00:30:56.304884744 -0800 -@@ -2576,13 +2576,13 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/de.po anaconda-21.48.22.129/po/de.po +--- anaconda-21.48.22.129.orig/po/de.po 2017-12-08 02:40:06.000000000 -0800 ++++ anaconda-21.48.22.129/po/de.po 2018-01-25 11:05:04.392998724 -0800 +@@ -2793,13 +2793,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "Diese Hardware (oder in einer bestimmten Kombination) wird von Red Hat nicht " +-"Diese Hardware (oder in einer bestimmten Kombination) wird von Red Hat nicht " ++"Diese Hardware (oder in einer bestimmten Kombination) wird von PowerEL nicht " "unterstützt. Weitere Informationen über unterstützte Hardware finden Sie auf " -"http://www.redhat.com/hardware." -+"http://www.powerel.org." ++"http://linux.oracle.com." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/el.po anaconda-21.48.22.56/po/el.po ---- anaconda-21.48.22.56.orig/po/el.po 2015-10-29 08:08:30.000000000 -0700 -+++ anaconda-21.48.22.56/po/el.po 2015-11-20 00:30:56.305884734 -0800 -@@ -2167,8 +2167,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/el.po anaconda-21.48.22.129/po/el.po +--- anaconda-21.48.22.129.orig/po/el.po 2017-12-08 02:40:07.000000000 -0800 ++++ anaconda-21.48.22.129/po/el.po 2018-01-25 10:41:07.765883638 -0800 +@@ -2392,9 +2392,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/en_GB.po anaconda-21.48.22.56/po/en_GB.po ---- anaconda-21.48.22.56.orig/po/en_GB.po 2015-10-29 08:08:31.000000000 -0700 -+++ anaconda-21.48.22.56/po/en_GB.po 2015-11-20 00:30:56.306885326 -0800 -@@ -2313,8 +2313,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/en_GB.po anaconda-21.48.22.129/po/en_GB.po +--- anaconda-21.48.22.129.orig/po/en_GB.po 2017-12-08 02:40:07.000000000 -0800 ++++ anaconda-21.48.22.129/po/en_GB.po 2018-01-25 10:41:07.862275899 -0800 +@@ -2532,13 +2532,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "This hardware (or a combination thereof) is not supported by Red Hat. For " -diff -Nur anaconda-21.48.22.56.orig/po/es.po anaconda-21.48.22.56/po/es.po ---- anaconda-21.48.22.56.orig/po/es.po 2015-10-29 08:08:31.000000000 -0700 -+++ anaconda-21.48.22.56/po/es.po 2015-11-20 00:30:56.307884692 -0800 -@@ -2417,13 +2417,13 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +-"This hardware (or a combination thereof) is not supported by Red Hat. For " +-"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -ruN anaconda-21.48.22.129.orig/po/es.po anaconda-21.48.22.129/po/es.po +--- anaconda-21.48.22.129.orig/po/es.po 2017-12-08 02:40:07.000000000 -0800 ++++ anaconda-21.48.22.129/po/es.po 2018-01-25 11:04:55.554256452 -0800 +@@ -2658,13 +2658,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "Este hardware (o a combinación del mismo) no está soportado por Red Hat. " +-"Este hardware (o a combinación del mismo) no está soportado por Red Hat. " ++"Este hardware (o a combinación del mismo) no está soportado por PowerEL. " "Para mayor información sobre hardware con soporte, por favor consulte http://" -"www.redhat.com/hardware." -+"www.powerel.org." ++"linux.oracle.com." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/et.po anaconda-21.48.22.56/po/et.po ---- anaconda-21.48.22.56.orig/po/et.po 2015-10-29 08:08:31.000000000 -0700 -+++ anaconda-21.48.22.56/po/et.po 2015-11-20 00:30:56.308885001 -0800 -@@ -2119,8 +2119,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/et.po anaconda-21.48.22.129/po/et.po +--- anaconda-21.48.22.129.orig/po/et.po 2017-12-08 02:40:07.000000000 -0800 ++++ anaconda-21.48.22.129/po/et.po 2018-01-25 10:41:08.053787945 -0800 +@@ -2350,9 +2350,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/eu.po anaconda-21.48.22.56/po/eu.po ---- anaconda-21.48.22.56.orig/po/eu.po 2015-10-29 08:08:31.000000000 -0700 -+++ anaconda-21.48.22.56/po/eu.po 2015-11-20 00:30:56.309884628 -0800 -@@ -2119,8 +2119,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/eu.po anaconda-21.48.22.129/po/eu.po +--- anaconda-21.48.22.129.orig/po/eu.po 2017-12-08 02:40:07.000000000 -0800 ++++ anaconda-21.48.22.129/po/eu.po 2018-01-25 10:41:08.149835091 -0800 +@@ -2350,9 +2350,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/fa.po anaconda-21.48.22.56/po/fa.po ---- anaconda-21.48.22.56.orig/po/fa.po 2015-10-29 08:08:31.000000000 -0700 -+++ anaconda-21.48.22.56/po/fa.po 2015-11-20 00:30:56.310884744 -0800 -@@ -2116,8 +2116,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/fa.po anaconda-21.48.22.129/po/fa.po +--- anaconda-21.48.22.129.orig/po/fa.po 2017-12-08 02:40:07.000000000 -0800 ++++ anaconda-21.48.22.129/po/fa.po 2018-01-25 10:41:08.245700238 -0800 +@@ -2351,9 +2351,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/fi.po anaconda-21.48.22.56/po/fi.po ---- anaconda-21.48.22.56.orig/po/fi.po 2015-10-29 08:08:31.000000000 -0700 -+++ anaconda-21.48.22.56/po/fi.po 2015-11-20 00:30:56.311884726 -0800 -@@ -2224,8 +2224,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/fi.po anaconda-21.48.22.129/po/fi.po +--- anaconda-21.48.22.129.orig/po/fi.po 2017-12-08 02:40:07.000000000 -0800 ++++ anaconda-21.48.22.129/po/fi.po 2018-01-25 11:04:38.461922378 -0800 +@@ -2436,12 +2436,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "Red Hat ei tue tätä laitetta tai laitteistoa. Lisätietoa tuetuista " -diff -Nur anaconda-21.48.22.56.orig/po/fr.po anaconda-21.48.22.56/po/fr.po ---- anaconda-21.48.22.56.orig/po/fr.po 2015-10-29 08:08:31.000000000 -0700 -+++ anaconda-21.48.22.56/po/fr.po 2015-11-20 00:30:56.312884894 -0800 -@@ -2443,13 +2443,13 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +-"Red Hat ei tue tätä laitetta tai laitteistoa. Lisätietoa tuetuista " +-"laitteista on osoitteessa http://www.redhat.com/hardware." ++"PowerEL ei tue tätä laitetta tai laitteistoa. Lisätietoa tuetuista " ++"laitteista on osoitteessa http://linux.oracle.com." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -ruN anaconda-21.48.22.129.orig/po/fr.po anaconda-21.48.22.129/po/fr.po +--- anaconda-21.48.22.129.orig/po/fr.po 2017-12-08 02:40:07.000000000 -0800 ++++ anaconda-21.48.22.129/po/fr.po 2018-01-25 10:41:08.435416736 -0800 +@@ -2677,13 +2677,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" "Ce matériel (ou une combinaison de matériels) n'est pas pris en charge par " "Red Hat. Pour plus d'informations sur le matériel pris en charge , veuillez " -"consulter http://www.redhat.com/hardware." -+"consulter http://www.powerel.org." ++"consulter http://linux.oracle.com." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/gl.po anaconda-21.48.22.56/po/gl.po ---- anaconda-21.48.22.56.orig/po/gl.po 2015-10-29 08:08:31.000000000 -0700 -+++ anaconda-21.48.22.56/po/gl.po 2015-11-20 00:30:56.313884758 -0800 -@@ -2128,8 +2128,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/gl.po anaconda-21.48.22.129/po/gl.po +--- anaconda-21.48.22.129.orig/po/gl.po 2017-12-08 02:40:08.000000000 -0800 ++++ anaconda-21.48.22.129/po/gl.po 2018-01-25 10:41:08.536498040 -0800 +@@ -2361,9 +2361,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/gu.po anaconda-21.48.22.56/po/gu.po ---- anaconda-21.48.22.56.orig/po/gu.po 2015-10-29 08:08:31.000000000 -0700 -+++ anaconda-21.48.22.56/po/gu.po 2015-11-20 00:30:56.314884761 -0800 -@@ -2248,12 +2248,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/gu.po anaconda-21.48.22.129/po/gu.po +--- anaconda-21.48.22.129.orig/po/gu.po 2017-12-08 02:40:08.000000000 -0800 ++++ anaconda-21.48.22.129/po/gu.po 2018-01-25 11:04:19.077066426 -0800 +@@ -2470,12 +2470,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "આ હાર્ડવેર (અથવા તેનું સંયોજન) Red Hat દ્દારા આધારભૂત નથી. આધારભૂત હાર્ડવેર પર વધારે " +-"આ હાર્ડવેર (અથવા તેનું સંયોજન) Red Hat દ્દારા આધારભૂત નથી. આધારભૂત હાર્ડવેર પર વધારે " -"જાણકારી માટે, http://www.redhat.com/hardware નો સંદર્ભ લો." -+"જાણકારી માટે, http://www.powerel.org નો સંદર્ભ લો." ++"આ હાર્ડવેર (અથવા તેનું સંયોજન) PowerEL દ્દારા આધારભૂત નથી. આધારભૂત હાર્ડવેર પર વધારે " ++"જાણકારી માટે, http://linux.oracle.com નો સંદર્ભ લો." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/hi.po anaconda-21.48.22.56/po/hi.po ---- anaconda-21.48.22.56.orig/po/hi.po 2015-10-29 08:08:31.000000000 -0700 -+++ anaconda-21.48.22.56/po/hi.po 2015-11-20 00:30:56.315884801 -0800 -@@ -2179,12 +2179,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/hi.po anaconda-21.48.22.129/po/hi.po +--- anaconda-21.48.22.129.orig/po/hi.po 2017-12-08 02:40:08.000000000 -0800 ++++ anaconda-21.48.22.129/po/hi.po 2018-01-25 10:53:45.887556146 -0800 +@@ -2408,12 +2408,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "हार्डवेयर (अथवा इसका एक संयोग) Red Hat द्वारा समर्थित नहीं है. समर्थित हार्डवेयर पर " +-"हार्डवेयर (अथवा इसका एक संयोग) Red Hat द्वारा समर्थित नहीं है. समर्थित हार्डवेयर पर " -"अधिक जानकारी के लिए, http://www.redhat.com/hardware का संदर्भ लें." -+"अधिक जानकारी के लिए, http://www.powerel.org का संदर्भ लें." ++"हार्डवेयर (अथवा इसका एक संयोग) PowerEL समर्थित नहीं है. समर्थित हार्डवेयर पर " ++"अधिक जानकारी के लिए, http://linux.oracle.com का संदर्भ लें." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/hr.po anaconda-21.48.22.56/po/hr.po ---- anaconda-21.48.22.56.orig/po/hr.po 2015-10-29 08:08:31.000000000 -0700 -+++ anaconda-21.48.22.56/po/hr.po 2015-11-20 00:30:56.316884729 -0800 -@@ -2223,12 +2223,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/hr.po anaconda-21.48.22.129/po/hr.po +--- anaconda-21.48.22.129.orig/po/hr.po 2017-12-08 02:40:08.000000000 -0800 ++++ anaconda-21.48.22.129/po/hr.po 2018-01-25 11:04:06.267895007 -0800 +@@ -2601,13 +2601,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "Ovaj hardver (ili kombinacija istog) nisu podržani od strane Red Hat-a. Za " +-"Ovaj hardver (ili kombinacija istog) nisu podržani od strane Red Hat-a. Za " -"više informacija o podržanom hardveru, molimo otiđite na http://www.redhat." -+"više informacija o podržanom hardveru, molimo otiđite na http://linux.oracle." - "com/hardware." +-"com/hardware." ++"Ovaj hardver (ili kombinacija istog) nisu podržani od strane PowerEL-a. Za " ++"više informacija o podržanom hardveru, molimo otiđite na https://www.powerel." ++"org/." #: pyanaconda/ui/tui/spokes/progress.py:37 -diff -Nur anaconda-21.48.22.56.orig/po/hu.po anaconda-21.48.22.56/po/hu.po ---- anaconda-21.48.22.56.orig/po/hu.po 2015-10-29 08:08:31.000000000 -0700 -+++ anaconda-21.48.22.56/po/hu.po 2015-11-20 00:30:56.317884759 -0800 -@@ -2422,13 +2422,13 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + msgid "Progress" +diff -ruN anaconda-21.48.22.129.orig/po/hu.po anaconda-21.48.22.129/po/hu.po +--- anaconda-21.48.22.129.orig/po/hu.po 2017-12-08 02:40:08.000000000 -0800 ++++ anaconda-21.48.22.129/po/hu.po 2018-01-25 11:03:47.514419355 -0800 +@@ -2748,13 +2748,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." --msgstr "" --"Ezt a hardvert (vagy azok kombinációját) nem támogatja a Red Hat. További " --"információkat a támogatott hardverekről, kérjük, olvassa el a http://www." --"redhat.com/hardware alatt találhatóakat. " +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." -+msgstr "" ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." + msgstr "" +-"Ezt a hardvert (vagy azok kombinációját) nem támogatja a Red Hat. További " +"Ezt a hardvert (vagy azok kombinációját) nem támogatja a PowerEL. További " -+"információkat a támogatott hardverekről, kérjük, olvassa el a http://linux." -+"oracle.com/ alatt találhatóakat. " + "információkat a támogatott hardverekről, kérjük, olvassa el a http://www." +-"redhat.com/hardware alatt találhatóakat. " ++"redhat.com/ alatt találhatóakat. " #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/ia.po anaconda-21.48.22.56/po/ia.po ---- anaconda-21.48.22.56.orig/po/ia.po 2015-10-29 08:08:31.000000000 -0700 -+++ anaconda-21.48.22.56/po/ia.po 2015-11-20 00:30:56.319751962 -0800 -@@ -2285,12 +2285,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/ia.po anaconda-21.48.22.129/po/ia.po +--- anaconda-21.48.22.129.orig/po/ia.po 2017-12-08 02:40:08.000000000 -0800 ++++ anaconda-21.48.22.129/po/ia.po 2018-01-25 11:03:30.491987031 -0800 +@@ -2490,12 +2490,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "Ce hardware (o su combination) non es supportate per Red Hat. Pro plus de " +-"Ce hardware (o su combination) non es supportate per Red Hat. Pro plus de " -"information super le hardware supportate, refere se a http://www.redhat.com/" -+"information super le hardware supportate, refere se a http://www.powerel.org/" ++"Ce hardware (o su combination) non es supportate per PowerEL. Pro plus de " ++"information super le hardware supportate, refere se a https://www.powerel.org/" "hardware." #: pyanaconda/ui/tui/spokes/progress.py:37 -diff -Nur anaconda-21.48.22.56.orig/po/id.po anaconda-21.48.22.56/po/id.po ---- anaconda-21.48.22.56.orig/po/id.po 2015-10-29 08:08:32.000000000 -0700 -+++ anaconda-21.48.22.56/po/id.po 2015-11-20 00:30:56.319751962 -0800 -@@ -2279,8 +2279,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/id.po anaconda-21.48.22.129/po/id.po +--- anaconda-21.48.22.129.orig/po/id.po 2017-12-08 02:40:08.000000000 -0800 ++++ anaconda-21.48.22.129/po/id.po 2018-01-25 11:03:14.262972848 -0800 +@@ -2489,13 +2489,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "Perangkat keras ini (atau kombinasinya) tidak didukung oleh Red Hat. Untuk " -diff -Nur anaconda-21.48.22.56.orig/po/ilo.po anaconda-21.48.22.56/po/ilo.po ---- anaconda-21.48.22.56.orig/po/ilo.po 2015-10-29 08:08:32.000000000 -0700 -+++ anaconda-21.48.22.56/po/ilo.po 2015-11-20 00:30:56.320884706 -0800 -@@ -2081,8 +2081,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +-"Perangkat keras ini (atau kombinasinya) tidak didukung oleh Red Hat. Untuk " ++"Perangkat keras ini (atau kombinasinya) tidak didukung oleh PowerEL. Untuk " + "informasi lebih dalam dukungan perangkat keras, silahkan mengacu pada http://" +-"www.redhat.com/hardware." ++"linux.oracle.com." + + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -ruN anaconda-21.48.22.129.orig/po/ilo.po anaconda-21.48.22.129/po/ilo.po +--- anaconda-21.48.22.129.orig/po/ilo.po 2017-12-08 02:40:08.000000000 -0800 ++++ anaconda-21.48.22.129/po/ilo.po 2018-01-25 10:41:09.255888882 -0800 +@@ -2316,9 +2316,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/is.po anaconda-21.48.22.56/po/is.po ---- anaconda-21.48.22.56.orig/po/is.po 2015-10-29 08:08:32.000000000 -0700 -+++ anaconda-21.48.22.56/po/is.po 2015-11-20 00:30:56.321884756 -0800 -@@ -2110,8 +2110,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/is.po anaconda-21.48.22.129/po/is.po +--- anaconda-21.48.22.129.orig/po/is.po 2017-12-08 02:40:08.000000000 -0800 ++++ anaconda-21.48.22.129/po/is.po 2018-01-25 10:41:09.357921813 -0800 +@@ -2341,9 +2341,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/it.po anaconda-21.48.22.56/po/it.po ---- anaconda-21.48.22.56.orig/po/it.po 2015-10-29 08:08:32.000000000 -0700 -+++ anaconda-21.48.22.56/po/it.po 2015-11-20 00:30:56.322884838 -0800 -@@ -2505,13 +2505,13 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/it.po anaconda-21.48.22.129/po/it.po +--- anaconda-21.48.22.129.orig/po/it.po 2017-12-08 02:40:09.000000000 -0800 ++++ anaconda-21.48.22.129/po/it.po 2018-01-25 11:03:06.841881538 -0800 +@@ -2725,13 +2725,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "Questo hardware (o la loro combinazione) non è supportato da Red Hat. Per " +-"Questo hardware (o la loro combinazione) non è supportato da Red Hat. Per " ++"Questo hardware (o la loro combinazione) non è supportato da PowerEL. Per " "maggiori informazioni sull'hardware supportato, fare riferimento a http://" -"www.redhat.com/hardware." -+"www.powerel.org." ++"linux.oracle.com." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/ja.po anaconda-21.48.22.56/po/ja.po ---- anaconda-21.48.22.56.orig/po/ja.po 2015-10-29 08:08:32.000000000 -0700 -+++ anaconda-21.48.22.56/po/ja.po 2015-11-20 00:30:56.323884559 -0800 -@@ -2387,12 +2387,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/ja.po anaconda-21.48.22.129/po/ja.po +--- anaconda-21.48.22.129.orig/po/ja.po 2017-12-08 02:40:09.000000000 -0800 ++++ anaconda-21.48.22.129/po/ja.po 2018-01-25 10:51:27.450217257 -0800 +@@ -2635,12 +2635,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "このハードウェア(またはその組み合わせ)は、Red Hat によってサポートされていま" --"せん。サポートされているハードウェアの詳細は、http://www.redhat.com/hardware " -+"せん。サポートされているハードウェアの詳細は、http://www.powerel.org " - "を参照してください。" +-"Red Hat は、このハードウェア (またはその組み合わせ) をサポートしていません。" +-"サポートされているハードウェアの詳細は、http://www.redhat.com/hardware を参照" ++"PowerEL は、このハードウェア (またはその組み合わせ) をサポートしていません。" ++"サポートされているハードウェアの詳細は、https://www.powerel.org/を参照" + "してください。" #: pyanaconda/ui/tui/spokes/progress.py:37 -diff -Nur anaconda-21.48.22.56.orig/po/ka.po anaconda-21.48.22.56/po/ka.po ---- anaconda-21.48.22.56.orig/po/ka.po 2015-10-29 08:08:32.000000000 -0700 -+++ anaconda-21.48.22.56/po/ka.po 2015-11-20 00:30:56.325884765 -0800 -@@ -2220,8 +2220,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/ka.po anaconda-21.48.22.129/po/ka.po +--- anaconda-21.48.22.129.orig/po/ka.po 2017-12-08 02:40:09.000000000 -0800 ++++ anaconda-21.48.22.129/po/ka.po 2018-01-25 10:41:09.707008594 -0800 +@@ -2451,9 +2451,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/kk.po anaconda-21.48.22.56/po/kk.po ---- anaconda-21.48.22.56.orig/po/kk.po 2015-10-29 08:08:32.000000000 -0700 -+++ anaconda-21.48.22.56/po/kk.po 2015-11-20 00:30:56.326884782 -0800 -@@ -2183,12 +2183,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + # translation auto-copied from project Anaconda, version master, document +diff -ruN anaconda-21.48.22.129.orig/po/kk.po anaconda-21.48.22.129/po/kk.po +--- anaconda-21.48.22.129.orig/po/kk.po 2017-12-08 02:40:09.000000000 -0800 ++++ anaconda-21.48.22.129/po/kk.po 2018-01-25 11:02:43.273835032 -0800 +@@ -2593,12 +2593,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "Бұл құрылғыны (немесе құрылғылар жиынтығын) Red Hat қолдамайды. Қолдауы бар " +-"Бұл құрылғыны (немесе құрылғылар жиынтығын) Red Hat қолдамайды. Қолдауы бар " -"құрылғылар жөнінде көбірек білу үшін, http://www.redhat.com/hardware шолыңыз." -+"құрылғылар жөнінде көбірек білу үшін, http://www.powerel.org шолыңыз." ++"Бұл құрылғыны (немесе құрылғылар жиынтығын) PowerEL қолдамайды. Қолдауы бар " ++"құрылғылар жөнінде көбірек білу үшін, http://linux.oracle.com шолыңыз." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/kn.po anaconda-21.48.22.56/po/kn.po ---- anaconda-21.48.22.56.orig/po/kn.po 2015-10-29 08:08:32.000000000 -0700 -+++ anaconda-21.48.22.56/po/kn.po 2015-11-20 00:30:56.327884787 -0800 -@@ -2359,12 +2359,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/kn.po anaconda-21.48.22.129/po/kn.po +--- anaconda-21.48.22.129.orig/po/kn.po 2017-12-08 02:40:09.000000000 -0800 ++++ anaconda-21.48.22.129/po/kn.po 2018-01-25 11:02:06.445504733 -0800 +@@ -2562,12 +2562,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "ಈ ಯಂತ್ರಾಂಶವನ್ನು (ಅಥವ ಇವುಗಳ ಒಂದು ಸಂಯೋಜನೆ) Red Hat ನಿಂದ ಬೆಂಬಲಿಸಲಾಗುವುದಿಲ್ಲ. " +-"ಈ ಯಂತ್ರಾಂಶವನ್ನು (ಅಥವ ಇವುಗಳ ಒಂದು ಸಂಯೋಜನೆ) Red Hat ನಿಂದ ಬೆಂಬಲಿಸಲಾಗುವುದಿಲ್ಲ. " -"ಬೆಂಬಲಿಸಲಾಗುವ ಯಂತ್ರಾಂಶಗಳ ಬಗೆಗಿನ ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ, http://www.redhat.com/" -+"ಬೆಂಬಲಿಸಲಾಗುವ ಯಂತ್ರಾಂಶಗಳ ಬಗೆಗಿನ ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ, http://www.powerel.org/" ++"ಈ ಯಂತ್ರಾಂಶವನ್ನು (ಅಥವ ಇವುಗಳ ಒಂದು ಸಂಯೋಜನೆ) PowerEL ನಿಂದ ಬೆಂಬಲಿಸಲಾಗುವುದಿಲ್ಲ. " ++"ಬೆಂಬಲಿಸಲಾಗುವ ಯಂತ್ರಾಂಶಗಳ ಬಗೆಗಿನ ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ, https://www.powerel.org/" "hardware ಅನ್ನು ನೋಡಿ." #: pyanaconda/ui/tui/spokes/progress.py:37 -diff -Nur anaconda-21.48.22.56.orig/po/ko.po anaconda-21.48.22.56/po/ko.po ---- anaconda-21.48.22.56.orig/po/ko.po 2015-10-29 08:08:32.000000000 -0700 -+++ anaconda-21.48.22.56/po/ko.po 2015-11-20 00:30:56.328884665 -0800 -@@ -2370,12 +2370,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/ko.po anaconda-21.48.22.129/po/ko.po +--- anaconda-21.48.22.129.orig/po/ko.po 2017-12-08 02:40:09.000000000 -0800 ++++ anaconda-21.48.22.129/po/ko.po 2018-01-25 11:01:52.746034251 -0800 +@@ -2592,12 +2592,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "이 하드웨어 (또는 조합)은 Red Hat에서 지원하지 않습니다. 지원되는 하드웨어에 " +-"이 하드웨어 (또는 조합)은 Red Hat에서 지원하지 않습니다. 지원되는 하드웨어에 " -"대한 보다 자세한 내용은 http://www.redhat.com/hardware에서 참조하십시오." -+"대한 보다 자세한 내용은 http://www.powerel.org에서 참조하십시오." ++"이 하드웨어 (또는 조합)은 PowerEL에서 지원하지 않습니다. 지원되는 하드웨어에 " ++"대한 보다 자세한 내용은 http://linux.oracle.com에서 참조하십시오." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/lt.po anaconda-21.48.22.56/po/lt.po ---- anaconda-21.48.22.56.orig/po/lt.po 2015-10-29 08:08:32.000000000 -0700 -+++ anaconda-21.48.22.56/po/lt.po 2015-11-20 00:30:56.329884661 -0800 -@@ -2399,13 +2399,13 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/lt.po anaconda-21.48.22.129/po/lt.po +--- anaconda-21.48.22.129.orig/po/lt.po 2017-12-08 02:40:09.000000000 -0800 ++++ anaconda-21.48.22.129/po/lt.po 2018-01-25 11:01:36.786884448 -0800 +@@ -2614,13 +2614,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." --msgstr "" ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." + msgstr "" -"Šios aparatinės įrangos (ar jos kombinacijos) Red Hat nepalaiko. Daugiau " -"informacijos apie palaikomą aparatinę įrangą rasite adresu http://www.redhat." -"com/hardware." -+"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." -+msgstr "" +"Šios aparatinės įrangos (ar jos kombinacijos) PowerEL nepalaiko. Daugiau " -+"informacijos apie palaikomą aparatinę įrangą rasite adresu http://linux.oracle." -+"com/." ++"informacijos apie palaikomą aparatinę įrangą rasite adresu https://www.powerel." ++"org/." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/lv.po anaconda-21.48.22.56/po/lv.po ---- anaconda-21.48.22.56.orig/po/lv.po 2015-10-29 08:08:33.000000000 -0700 -+++ anaconda-21.48.22.56/po/lv.po 2015-11-20 00:30:56.330884728 -0800 -@@ -2134,8 +2134,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/lv.po anaconda-21.48.22.129/po/lv.po +--- anaconda-21.48.22.129.orig/po/lv.po 2017-12-08 02:40:09.000000000 -0800 ++++ anaconda-21.48.22.129/po/lv.po 2018-01-25 10:41:10.269869635 -0800 +@@ -2361,9 +2361,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/mai.po anaconda-21.48.22.56/po/mai.po ---- anaconda-21.48.22.56.orig/po/mai.po 2015-10-29 08:08:33.000000000 -0700 -+++ anaconda-21.48.22.56/po/mai.po 2015-11-20 00:30:56.331884733 -0800 -@@ -2101,8 +2101,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/mai.po anaconda-21.48.22.129/po/mai.po +--- anaconda-21.48.22.129.orig/po/mai.po 2017-12-08 02:40:10.000000000 -0800 ++++ anaconda-21.48.22.129/po/mai.po 2018-01-25 10:41:10.370431137 -0800 +@@ -2336,9 +2336,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/mk.po anaconda-21.48.22.56/po/mk.po ---- anaconda-21.48.22.56.orig/po/mk.po 2015-10-29 08:08:33.000000000 -0700 -+++ anaconda-21.48.22.56/po/mk.po 2015-11-20 00:30:56.332884688 -0800 -@@ -2085,8 +2085,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/mk.po anaconda-21.48.22.129/po/mk.po +--- anaconda-21.48.22.129.orig/po/mk.po 2017-12-08 02:40:10.000000000 -0800 ++++ anaconda-21.48.22.129/po/mk.po 2018-01-25 10:41:10.474435088 -0800 +@@ -2320,9 +2320,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/ml.po anaconda-21.48.22.56/po/ml.po ---- anaconda-21.48.22.56.orig/po/ml.po 2015-10-29 08:08:33.000000000 -0700 -+++ anaconda-21.48.22.56/po/ml.po 2015-11-20 00:30:56.333884738 -0800 -@@ -2172,12 +2172,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/ml.po anaconda-21.48.22.129/po/ml.po +--- anaconda-21.48.22.129.orig/po/ml.po 2017-12-08 02:40:10.000000000 -0800 ++++ anaconda-21.48.22.129/po/ml.po 2018-01-25 11:01:21.902484134 -0800 +@@ -2402,12 +2402,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "ഈ ഹാര്‍ഡ്‌വെയര്‍ Red Hat പിന്തുണയ്ക്കുന്നില്ല. പിന്തുണയ്ക്കുന്ന ഹാര്‍ഡ്‌വെയര്‍ സംബന്ധിച്ചുള്ള കൂടുതല്‍ " +-"ഈ ഹാര്‍ഡ്‌വെയര്‍ Red Hat പിന്തുണയ്ക്കുന്നില്ല. പിന്തുണയ്ക്കുന്ന ഹാര്‍ഡ്‌വെയര്‍ സംബന്ധിച്ചുള്ള കൂടുതല്‍ " -"വിവരങ്ങള്‍ക്കായി http://www.redhat.com/hardware കാണുക." -+"വിവരങ്ങള്‍ക്കായി http://www.powerel.org കാണുക." ++"ഈ ഹാര്‍ഡ്‌വെയര്‍ PowerEL പിന്തുണയ്ക്കുന്നില്ല. പിന്തുണയ്ക്കുന്ന ഹാര്‍ഡ്‌വെയര്‍ സംബന്ധിച്ചുള്ള കൂടുതല്‍ " ++"വിവരങ്ങള്‍ക്കായി http://linux.oracle.com കാണുക." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/mr.po anaconda-21.48.22.56/po/mr.po ---- anaconda-21.48.22.56.orig/po/mr.po 2015-10-29 08:08:33.000000000 -0700 -+++ anaconda-21.48.22.56/po/mr.po 2015-11-20 00:30:56.334884655 -0800 -@@ -2140,12 +2140,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/mr.po anaconda-21.48.22.129/po/mr.po +--- anaconda-21.48.22.129.orig/po/mr.po 2017-12-08 02:40:10.000000000 -0800 ++++ anaconda-21.48.22.129/po/mr.po 2018-01-25 11:01:09.538970097 -0800 +@@ -2376,12 +2376,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "हे हार्डवेअर (किंवा जोडणी) Red Hat तर्फे समर्थीत नाही. समर्थीत हार्डवेअरकरिता अधिक " +-"हे हार्डवेअर (किंवा जोडणी) Red Hat तर्फे समर्थीत नाही. समर्थीत हार्डवेअरकरिता अधिक " -"माहितीविषयी, कृपया http://www.redhat.com/hardware पहा." -+"माहितीविषयी, कृपया http://www.powerel.org पहा." ++"हे हार्डवेअर (किंवा जोडणी) PowerEL तर्फे समर्थीत नाही. समर्थीत हार्डवेअरकरिता अधिक " ++"माहितीविषयी, कृपया http://linux.oracle.com पहा." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/ms.po anaconda-21.48.22.56/po/ms.po ---- anaconda-21.48.22.56.orig/po/ms.po 2015-10-29 08:08:33.000000000 -0700 -+++ anaconda-21.48.22.56/po/ms.po 2015-11-20 00:30:56.335884696 -0800 -@@ -2080,8 +2080,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/ms.po anaconda-21.48.22.129/po/ms.po +--- anaconda-21.48.22.129.orig/po/ms.po 2017-12-08 02:40:10.000000000 -0800 ++++ anaconda-21.48.22.129/po/ms.po 2018-01-25 10:41:10.788729325 -0800 +@@ -2315,9 +2315,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/nb.po anaconda-21.48.22.56/po/nb.po ---- anaconda-21.48.22.56.orig/po/nb.po 2015-10-29 08:08:33.000000000 -0700 -+++ anaconda-21.48.22.56/po/nb.po 2015-11-20 00:30:56.336884768 -0800 -@@ -2132,8 +2132,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/nb.po anaconda-21.48.22.129/po/nb.po +--- anaconda-21.48.22.129.orig/po/nb.po 2017-12-08 02:40:10.000000000 -0800 ++++ anaconda-21.48.22.129/po/nb.po 2018-01-25 10:41:10.890612045 -0800 +@@ -2364,9 +2364,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/ne.po anaconda-21.48.22.56/po/ne.po ---- anaconda-21.48.22.56.orig/po/ne.po 2015-10-29 08:08:33.000000000 -0700 -+++ anaconda-21.48.22.56/po/ne.po 2015-11-20 00:30:56.337884667 -0800 -@@ -2082,8 +2082,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/ne.po anaconda-21.48.22.129/po/ne.po +--- anaconda-21.48.22.129.orig/po/ne.po 2017-12-08 02:40:10.000000000 -0800 ++++ anaconda-21.48.22.129/po/ne.po 2018-01-25 10:41:10.992272414 -0800 +@@ -2317,9 +2317,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/nl.po anaconda-21.48.22.56/po/nl.po ---- anaconda-21.48.22.56.orig/po/nl.po 2015-10-29 08:08:33.000000000 -0700 -+++ anaconda-21.48.22.56/po/nl.po 2015-11-20 00:30:56.338884670 -0800 -@@ -2426,13 +2426,13 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/nl.po anaconda-21.48.22.129/po/nl.po +--- anaconda-21.48.22.129.orig/po/nl.po 2017-12-08 02:40:10.000000000 -0800 ++++ anaconda-21.48.22.129/po/nl.po 2018-01-25 10:41:11.095446130 -0800 +@@ -2643,13 +2643,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" "Deze hardware (of een combinatie hiervan) wordt niet ondersteund door Red " - "Hat. Voor meer informatie over ondersteunde hardware, refereer je naar " --"http://www.redhat.com/hardware." -+"http://www.powerel.org." +-"Hat. Voor meer informatie over ondersteunde hardware, zie http://www.redhat." +-"com/hardware." ++"Hat. Voor meer informatie over ondersteunde hardware, zie https://www.powerel." ++"org/." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/nso.po anaconda-21.48.22.56/po/nso.po ---- anaconda-21.48.22.56.orig/po/nso.po 2015-10-29 08:08:33.000000000 -0700 -+++ anaconda-21.48.22.56/po/nso.po 2015-11-20 00:30:56.339884700 -0800 -@@ -2081,8 +2081,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/nso.po anaconda-21.48.22.129/po/nso.po +--- anaconda-21.48.22.129.orig/po/nso.po 2017-12-08 02:40:11.000000000 -0800 ++++ anaconda-21.48.22.129/po/nso.po 2018-01-25 10:41:11.196666649 -0800 +@@ -2316,9 +2316,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/or.po anaconda-21.48.22.56/po/or.po ---- anaconda-21.48.22.56.orig/po/or.po 2015-10-29 08:08:33.000000000 -0700 -+++ anaconda-21.48.22.56/po/or.po 2015-11-20 00:30:56.340884745 -0800 -@@ -2167,12 +2167,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/or.po anaconda-21.48.22.129/po/or.po +--- anaconda-21.48.22.129.orig/po/or.po 2017-12-08 02:40:11.000000000 -0800 ++++ anaconda-21.48.22.129/po/or.po 2018-01-25 11:00:07.401487284 -0800 +@@ -2398,12 +2398,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "ଏହି ହାର୍ଡୱେର (କିମ୍ବା ସେଗୁଡ଼ିକର ଗୋଟିଏ ସମଷ୍ଟି) Red Hat ଦ୍ୱାରା ସମର୍ଥିତ ନୁହଁ। ସମର୍ଥିତ ହାର୍ଡୱେର " +-"ଏହି ହାର୍ଡୱେର (କିମ୍ବା ସେଗୁଡ଼ିକର ଗୋଟିଏ ସମଷ୍ଟି) Red Hat ଦ୍ୱାରା ସମର୍ଥିତ ନୁହଁ। ସମର୍ଥିତ ହାର୍ଡୱେର " -"ବିଷୟରେ ଅଧିକ ସୂଚନା ପାଇଁ, ଦୟାକରି http://www.redhat.com/hardware କୁ ଦେଖନ୍ତୁ।" -+"ବିଷୟରେ ଅଧିକ ସୂଚନା ପାଇଁ, ଦୟାକରି http://www.powerel.org କୁ ଦେଖନ୍ତୁ।" ++"ଏହି ହାର୍ଡୱେର (କିମ୍ବା ସେଗୁଡ଼ିକର ଗୋଟିଏ ସମଷ୍ଟି) PowerEL ଦ୍ୱାରା ସମର୍ଥିତ ନୁହଁ। ସମର୍ଥିତ ହାର୍ଡୱେର " ++"ବିଷୟରେ ଅଧିକ ସୂଚନା ପାଇଁ, ଦୟାକରି http://linux.oracle.com କୁ ଦେଖନ୍ତୁ।" #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/pa.po anaconda-21.48.22.56/po/pa.po ---- anaconda-21.48.22.56.orig/po/pa.po 2015-10-29 08:08:33.000000000 -0700 -+++ anaconda-21.48.22.56/po/pa.po 2015-11-20 00:30:56.341884714 -0800 -@@ -2214,12 +2214,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/pa.po anaconda-21.48.22.129/po/pa.po +--- anaconda-21.48.22.129.orig/po/pa.po 2017-12-08 02:40:11.000000000 -0800 ++++ anaconda-21.48.22.129/po/pa.po 2018-01-25 10:59:53.345593697 -0800 +@@ -2442,12 +2442,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "ਇਹ ਹਾਰਡਵੇਅਰ (ਜਾਂ ਇਹਨਾਂ ਦਾ ਇੱਕ ਮਿਸ਼ਰਣ) Red Hat ਦੁਆਰਾ ਸਮਰਥਿਤ ਨਹੀਂ ਹੈ। ਸਮਰਥਿਤ ਹਾਰਡਵੇਅਰ " +-"ਇਹ ਹਾਰਡਵੇਅਰ (ਜਾਂ ਇਹਨਾਂ ਦਾ ਇੱਕ ਮਿਸ਼ਰਣ) Red Hat ਦੁਆਰਾ ਸਮਰਥਿਤ ਨਹੀਂ ਹੈ। ਸਮਰਥਿਤ ਹਾਰਡਵੇਅਰ " -"ਬਾਰੇ ਵਧੇਰੇ ਜਾਣਕਾਰੀ ਲਈ, ਕਿਰਪਾ ਕਰਕੇ http://www.redhat.com/hardware ਵੇਖੋ।" -+"ਬਾਰੇ ਵਧੇਰੇ ਜਾਣਕਾਰੀ ਲਈ, ਕਿਰਪਾ ਕਰਕੇ http://www.powerel.org ਵੇਖੋ।" ++"ਇਹ ਹਾਰਡਵੇਅਰ (ਜਾਂ ਇਹਨਾਂ ਦਾ ਇੱਕ ਮਿਸ਼ਰਣ) PowerEL ਦੁਆਰਾ ਸਮਰਥਿਤ ਨਹੀਂ ਹੈ। ਸਮਰਥਿਤ ਹਾਰਡਵੇਅਰ " ++"ਬਾਰੇ ਵਧੇਰੇ ਜਾਣਕਾਰੀ ਲਈ, ਕਿਰਪਾ ਕਰਕੇ http://linux.oracle.com ਵੇਖੋ।" #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/pl.po anaconda-21.48.22.56/po/pl.po ---- anaconda-21.48.22.56.orig/po/pl.po 2015-10-29 08:08:33.000000000 -0700 -+++ anaconda-21.48.22.56/po/pl.po 2015-11-20 00:30:56.342884670 -0800 -@@ -2419,13 +2419,13 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/pl.po anaconda-21.48.22.129/po/pl.po +--- anaconda-21.48.22.129.orig/po/pl.po 2017-12-08 02:40:11.000000000 -0800 ++++ anaconda-21.48.22.129/po/pl.po 2018-01-25 10:59:39.930664199 -0800 +@@ -2657,13 +2657,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "Ten sprzęt (lub jego kombinacja) nie jest obsługiwany przez firmę Red Hat. " +-"Ten sprzęt (lub jego kombinacja) nie jest obsługiwany przez firmę Red Hat. " ++"Ten sprzęt (lub jego kombinacja) nie jest obsługiwany przez firmę PowerEL. " "Aby dowiedzieć się więcej o obsługiwanym sprzęcie, należy zobaczyć stronę " -"http://www.redhat.com/hardware." -+"http://www.powerel.org." ++"http://linux.oracle.com." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/pt_BR.po anaconda-21.48.22.56/po/pt_BR.po ---- anaconda-21.48.22.56.orig/po/pt_BR.po 2015-10-29 08:08:34.000000000 -0700 -+++ anaconda-21.48.22.56/po/pt_BR.po 2015-11-20 00:30:56.343884792 -0800 -@@ -2498,13 +2498,13 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/pt_BR.po anaconda-21.48.22.129/po/pt_BR.po +--- anaconda-21.48.22.129.orig/po/pt_BR.po 2017-12-08 02:40:11.000000000 -0800 ++++ anaconda-21.48.22.129/po/pt_BR.po 2018-01-25 10:57:19.335608563 -0800 +@@ -2710,13 +2710,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "Este hardware (ou uma combinação) não é suportado pela Red Hat. Para obter " +-"Este hardware (ou uma combinação) não é suportado pela Red Hat. Para obter " ++"Este hardware (ou uma combinação) não é suportado pela PowerEL. Para obter " "mais informações sobre hardware suportados, por favor consulte o http://www." -"redhat.com/hardware." -+"redhat.com." ++"redhat.com/." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/pt.po anaconda-21.48.22.56/po/pt.po ---- anaconda-21.48.22.56.orig/po/pt.po 2015-10-29 08:08:34.000000000 -0700 -+++ anaconda-21.48.22.56/po/pt.po 2015-11-20 00:30:56.344884693 -0800 -@@ -2238,8 +2238,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/pt.po anaconda-21.48.22.129/po/pt.po +--- anaconda-21.48.22.129.orig/po/pt.po 2017-12-08 02:40:11.000000000 -0800 ++++ anaconda-21.48.22.129/po/pt.po 2018-01-25 10:41:11.728503247 -0800 +@@ -2474,9 +2474,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/ro.po anaconda-21.48.22.56/po/ro.po ---- anaconda-21.48.22.56.orig/po/ro.po 2015-10-29 08:08:34.000000000 -0700 -+++ anaconda-21.48.22.56/po/ro.po 2015-11-20 00:30:56.345884750 -0800 -@@ -2081,8 +2081,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/ro.po anaconda-21.48.22.129/po/ro.po +--- anaconda-21.48.22.129.orig/po/ro.po 2017-12-08 02:40:11.000000000 -0800 ++++ anaconda-21.48.22.129/po/ro.po 2018-01-25 10:41:11.831300287 -0800 +@@ -2316,9 +2316,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/ru.po anaconda-21.48.22.56/po/ru.po ---- anaconda-21.48.22.56.orig/po/ru.po 2015-10-29 08:08:34.000000000 -0700 -+++ anaconda-21.48.22.56/po/ru.po 2015-11-20 00:32:18.254864251 -0800 -@@ -2534,13 +2534,13 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/ru.po anaconda-21.48.22.129/po/ru.po +--- anaconda-21.48.22.129.orig/po/ru.po 2017-12-08 02:40:11.000000000 -0800 ++++ anaconda-21.48.22.129/po/ru.po 2018-01-25 10:57:08.917255545 -0800 +@@ -2754,13 +2754,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "Это оборудование (и его комбинации) не поддерживается Red Hat. За " --"дополнительной информацией о поддержке оборудования обратитесь к http://www." +-"Это оборудование (и его комбинации) не поддерживается Red Hat. За " ++"Это оборудование (и его комбинации) не поддерживается PowerEL. За " + "дополнительной информацией о поддержке оборудования обратитесь к http://www." -"redhat.com/hardware." -+"дополнительной информацией о поддержке оборудования обратитесь к http://linux." -+"oracle.com/hardware." ++"redhat.com/." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/si.po anaconda-21.48.22.56/po/si.po ---- anaconda-21.48.22.56.orig/po/si.po 2015-10-29 08:08:34.000000000 -0700 -+++ anaconda-21.48.22.56/po/si.po 2015-11-20 00:30:56.348884870 -0800 -@@ -2104,8 +2104,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/si.po anaconda-21.48.22.129/po/si.po +--- anaconda-21.48.22.129.orig/po/si.po 2017-12-08 02:40:12.000000000 -0800 ++++ anaconda-21.48.22.129/po/si.po 2018-01-25 10:41:12.040814457 -0800 +@@ -2339,9 +2339,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/sk.po anaconda-21.48.22.56/po/sk.po ---- anaconda-21.48.22.56.orig/po/sk.po 2015-10-29 08:08:34.000000000 -0700 -+++ anaconda-21.48.22.56/po/sk.po 2015-11-20 00:30:56.349884671 -0800 -@@ -2318,13 +2318,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/sk.po anaconda-21.48.22.129/po/sk.po +--- anaconda-21.48.22.129.orig/po/sk.po 2017-12-08 02:40:12.000000000 -0800 ++++ anaconda-21.48.22.129/po/sk.po 2018-01-25 10:59:26.232022100 -0800 +@@ -2742,12 +2742,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -"com/hardware." --msgstr "" ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." + msgstr "" -"Tento hardvér (alebo jeho kombináciu) Red Hat nepodporuje. Pre viac " -"informácií o podporovanom hardvéri, prosím navštívte http://www.redhat.com/" --"hardware." -+"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." -+"com/." -+msgstr "" +"Tento hardvér (alebo jeho kombináciu) PowerEL nepodporuje. Pre viac " -+"informácií o podporovanom hardvéri, prosím navštívte http://www.powerel.org/" ++"informácií o podporovanom hardvéri, prosím navštívte https://www.powerel.org/" + "hardware." #: pyanaconda/ui/tui/spokes/progress.py:37 - msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/sl.po anaconda-21.48.22.56/po/sl.po ---- anaconda-21.48.22.56.orig/po/sl.po 2015-10-29 08:08:34.000000000 -0700 -+++ anaconda-21.48.22.56/po/sl.po 2015-11-20 00:30:56.350884908 -0800 -@@ -2086,8 +2086,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/sl.po anaconda-21.48.22.129/po/sl.po +--- anaconda-21.48.22.129.orig/po/sl.po 2017-12-08 02:40:12.000000000 -0800 ++++ anaconda-21.48.22.129/po/sl.po 2018-01-25 10:41:12.249219694 -0800 +@@ -2321,9 +2321,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/sq.po anaconda-21.48.22.56/po/sq.po ---- anaconda-21.48.22.56.orig/po/sq.po 2015-10-29 08:08:34.000000000 -0700 -+++ anaconda-21.48.22.56/po/sq.po 2015-11-20 00:30:56.351884764 -0800 -@@ -2120,8 +2120,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/sq.po anaconda-21.48.22.129/po/sq.po +--- anaconda-21.48.22.129.orig/po/sq.po 2017-12-08 02:40:12.000000000 -0800 ++++ anaconda-21.48.22.129/po/sq.po 2018-01-25 10:41:12.353291631 -0800 +@@ -2616,13 +2616,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" + "Kjo pajisje fizike (ose një kombinim i tillë) nuk është i mbështetur nga Red " + "Hat. Për më shumë informacion mbi pajisjet e mbështetura, ju lutemi " +-"referohuni tek http://www.redhat.com/hardware." ++"referohuni tek http://linux.oracle.com." -diff -Nur anaconda-21.48.22.56.orig/po/sr@latin.po anaconda-21.48.22.56/po/sr@latin.po ---- anaconda-21.48.22.56.orig/po/sr@latin.po 2015-10-29 08:08:34.000000000 -0700 -+++ anaconda-21.48.22.56/po/sr@latin.po 2015-11-20 00:30:56.352884726 -0800 -@@ -2102,8 +2102,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 + msgid "Progress" +diff -ruN anaconda-21.48.22.129.orig/po/sr@latin.po anaconda-21.48.22.129/po/sr@latin.po +--- anaconda-21.48.22.129.orig/po/sr@latin.po 2017-12-08 02:40:12.000000000 -0800 ++++ anaconda-21.48.22.129/po/sr@latin.po 2018-01-25 10:41:12.473621791 -0800 +@@ -2337,9 +2337,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/sr.po anaconda-21.48.22.56/po/sr.po ---- anaconda-21.48.22.56.orig/po/sr.po 2015-10-29 08:08:34.000000000 -0700 -+++ anaconda-21.48.22.56/po/sr.po 2015-11-20 00:30:56.353884781 -0800 -@@ -2382,8 +2382,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/sr.po anaconda-21.48.22.129/po/sr.po +--- anaconda-21.48.22.129.orig/po/sr.po 2017-12-08 02:40:12.000000000 -0800 ++++ anaconda-21.48.22.129/po/sr.po 2018-01-25 10:59:11.429211777 -0800 +@@ -2594,12 +2594,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "Овај хардвер (или комбинација истог) није подржана од Red Hat-а. За више " -diff -Nur anaconda-21.48.22.56.orig/po/sv.po anaconda-21.48.22.56/po/sv.po ---- anaconda-21.48.22.56.orig/po/sv.po 2015-10-29 08:08:34.000000000 -0700 -+++ anaconda-21.48.22.56/po/sv.po 2015-11-20 00:30:56.354884776 -0800 -@@ -2239,12 +2239,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +-"Овај хардвер (или комбинација истог) није подржана од Red Hat-а. За више " +-"информација о подржаном хардверу, молимо погледајте http://www.redhat.com/" ++"Овај хардвер (или комбинација истог) није подржана од PowerEL-а. За више " ++"информација о подржаном хардверу, молимо погледајте https://www.powerel.org/" + "hardware." + + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/sv.po anaconda-21.48.22.129/po/sv.po +--- anaconda-21.48.22.129.orig/po/sv.po 2017-12-08 02:40:12.000000000 -0800 ++++ anaconda-21.48.22.129/po/sv.po 2018-01-25 10:58:58.262847783 -0800 +@@ -2466,12 +2466,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "Denna hårdvara (eller en kombination av den) stödjs inte av Red Hat. För " +-"Denna hårdvara (eller en kombination av den) stödjs inte av Red Hat. För " -"mer information om hårdvara som stödjs, se http://www.redhat.com/hardware." -+"mer information om hårdvara som stödjs, se http://www.powerel.org." ++"Denna hårdvara (eller en kombination av den) stödjs inte av PowerEL. För " ++"mer information om hårdvara som stödjs, se http://linux.oracle.com." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/ta.po anaconda-21.48.22.56/po/ta.po ---- anaconda-21.48.22.56.orig/po/ta.po 2015-10-29 08:08:34.000000000 -0700 -+++ anaconda-21.48.22.56/po/ta.po 2015-11-20 00:30:56.356699377 -0800 -@@ -2315,12 +2315,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/ta.po anaconda-21.48.22.129/po/ta.po +--- anaconda-21.48.22.129.orig/po/ta.po 2017-12-08 02:40:12.000000000 -0800 ++++ anaconda-21.48.22.129/po/ta.po 2018-01-25 10:53:29.769466546 -0800 +@@ -2543,12 +2543,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "இந்த வன்பொருளை (அல்லது இதன் சேர்க்கையை) Red Hat ஆதரிக்காது. ஆதரிக்கப்படும் வன்பொருள் " +-"இந்த வன்பொருளை (அல்லது இதன் சேர்க்கையை) Red Hat ஆதரிக்காது. ஆதரிக்கப்படும் வன்பொருள் " -"பற்றிய கூடுதல் தகவலுக்கு, http://www.redhat.com/hardware ஐப் பார்க்கவும்." -+"பற்றிய கூடுதல் தகவலுக்கு, http://www.powerel.org ஐப் பார்க்கவும்." ++"இந்த வன்பொருளை (அல்லது இதன் சேர்க்கையை) PowerEL ஆதரிக்காது. ஆதரிக்கப்படும் வன்பொருள் " ++"பற்றிய கூடுதல் தகவலுக்கு, http://linux.oracle.com ஐப் பார்க்கவும்." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/te.po anaconda-21.48.22.56/po/te.po ---- anaconda-21.48.22.56.orig/po/te.po 2015-10-29 08:08:35.000000000 -0700 -+++ anaconda-21.48.22.56/po/te.po 2015-11-20 00:30:56.357884728 -0800 -@@ -2165,12 +2165,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/te.po anaconda-21.48.22.129/po/te.po +--- anaconda-21.48.22.129.orig/po/te.po 2017-12-08 02:40:13.000000000 -0800 ++++ anaconda-21.48.22.129/po/te.po 2018-01-25 10:58:32.303205319 -0800 +@@ -2396,12 +2396,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "ఈ హార్డువేర్ (లేదా సమ్మేళనం) Red Hat చేత తోడ్పాటునీయబడదు. తోడ్పాటునిచ్చు హార్డువేరుపై మరింత సమాచారం " +-"ఈ హార్డువేర్ (లేదా సమ్మేళనం) Red Hat చేత తోడ్పాటునీయబడదు. తోడ్పాటునిచ్చు హార్డువేరుపై మరింత సమాచారం " -"కొరకు, దయచేసి http://www.redhat.com/hardware చూడండి." -+"కొరకు, దయచేసి http://www.powerel.org చూడండి." ++"ఈ హార్డువేర్ (లేదా సమ్మేళనం) PowerEL చేత తోడ్పాటునీయబడదు. తోడ్పాటునిచ్చు హార్డువేరుపై మరింత సమాచారం " ++"కొరకు, దయచేసి http://linux.oracle.com చూడండి." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/tg.po anaconda-21.48.22.56/po/tg.po ---- anaconda-21.48.22.56.orig/po/tg.po 2015-10-29 08:08:35.000000000 -0700 -+++ anaconda-21.48.22.56/po/tg.po 2015-11-20 00:30:56.358884736 -0800 -@@ -2078,8 +2078,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/tg.po anaconda-21.48.22.129/po/tg.po +--- anaconda-21.48.22.129.orig/po/tg.po 2017-12-08 02:40:13.000000000 -0800 ++++ anaconda-21.48.22.129/po/tg.po 2018-01-25 10:41:13.041374930 -0800 +@@ -2313,9 +2313,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/th.po anaconda-21.48.22.56/po/th.po ---- anaconda-21.48.22.56.orig/po/th.po 2015-10-29 08:08:35.000000000 -0700 -+++ anaconda-21.48.22.56/po/th.po 2015-11-20 00:30:56.359884683 -0800 -@@ -2168,8 +2168,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/th.po anaconda-21.48.22.129/po/th.po +--- anaconda-21.48.22.129.orig/po/th.po 2017-12-08 02:40:13.000000000 -0800 ++++ anaconda-21.48.22.129/po/th.po 2018-01-25 10:41:13.143646725 -0800 +@@ -2397,9 +2397,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/tr.po anaconda-21.48.22.56/po/tr.po ---- anaconda-21.48.22.56.orig/po/tr.po 2015-10-29 08:08:35.000000000 -0700 -+++ anaconda-21.48.22.56/po/tr.po 2015-11-20 00:30:56.359884683 -0800 -@@ -2212,8 +2212,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/tr.po anaconda-21.48.22.129/po/tr.po +--- anaconda-21.48.22.129.orig/po/tr.po 2017-12-08 02:40:13.000000000 -0800 ++++ anaconda-21.48.22.129/po/tr.po 2018-01-25 10:41:13.245084805 -0800 +@@ -2441,9 +2441,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/uk.po anaconda-21.48.22.56/po/uk.po ---- anaconda-21.48.22.56.orig/po/uk.po 2015-10-29 08:08:35.000000000 -0700 -+++ anaconda-21.48.22.56/po/uk.po 2015-11-20 00:30:56.361885630 -0800 -@@ -2406,13 +2406,13 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/uk.po anaconda-21.48.22.129/po/uk.po +--- anaconda-21.48.22.129.orig/po/uk.po 2017-12-08 02:40:13.000000000 -0800 ++++ anaconda-21.48.22.129/po/uk.po 2018-01-25 10:54:57.948504865 -0800 +@@ -2628,13 +2628,13 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" - "Це обладнання (або його комбінація) не підтримується Red Hat. Докладніші " +-"Це обладнання (або його комбінація) не підтримується Red Hat. Докладніші " ++"Це обладнання (або його комбінація) не підтримується PowerEL. Докладніші " "відомості щодо підтримуваного обладнання можна знайти на сторінці http://www." -"redhat.com/hardware." -+"redhat.com." ++"redhat.com/." #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/ur.po anaconda-21.48.22.56/po/ur.po ---- anaconda-21.48.22.56.orig/po/ur.po 2015-10-29 08:08:35.000000000 -0700 -+++ anaconda-21.48.22.56/po/ur.po 2015-11-20 00:30:56.362884639 -0800 -@@ -2079,8 +2079,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/ur.po anaconda-21.48.22.129/po/ur.po +--- anaconda-21.48.22.129.orig/po/ur.po 2017-12-08 02:40:13.000000000 -0800 ++++ anaconda-21.48.22.129/po/ur.po 2018-01-25 10:41:13.453937624 -0800 +@@ -2314,9 +2314,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/vi.po anaconda-21.48.22.56/po/vi.po ---- anaconda-21.48.22.56.orig/po/vi.po 2015-10-29 08:08:35.000000000 -0700 -+++ anaconda-21.48.22.56/po/vi.po 2015-11-20 00:30:56.363884662 -0800 -@@ -2078,8 +2078,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/vi.po anaconda-21.48.22.129/po/vi.po +--- anaconda-21.48.22.129.orig/po/vi.po 2017-12-08 02:40:13.000000000 -0800 ++++ anaconda-21.48.22.129/po/vi.po 2018-01-25 10:41:13.559574981 -0800 +@@ -2313,9 +2313,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/po/zh_CN.po anaconda-21.48.22.56/po/zh_CN.po ---- anaconda-21.48.22.56.orig/po/zh_CN.po 2015-10-29 08:08:35.000000000 -0700 -+++ anaconda-21.48.22.56/po/zh_CN.po 2015-11-20 00:33:36.216865065 -0800 -@@ -2417,11 +2417,11 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/po/zh_CN.po anaconda-21.48.22.129/po/zh_CN.po +--- anaconda-21.48.22.129.orig/po/zh_CN.po 2017-12-08 02:40:13.000000000 -0800 ++++ anaconda-21.48.22.129/po/zh_CN.po 2018-01-25 10:41:13.668072528 -0800 +@@ -2645,12 +2645,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." -+"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." +-"com/hardware." ++"This hardware (or a combination thereof) is not supported by PowerEL. For " ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -"红帽不支持这个硬件 (或其组合)。有关支持的硬件信息请参考 http://www.redhat." -+"甲骨文不支持这个硬件 (或其组合)。有关支持的硬件信息请参考 http://linux.oracle." - "com/hardware 。" +-"com/hardware 。" ++"红帽不支持这个硬件 (或其组合)。有关支持的硬件信息请参考 https://www.powerel." ++"com/ 。" #: pyanaconda/ui/tui/spokes/progress.py:37 -diff -Nur anaconda-21.48.22.56.orig/po/zh_TW.po anaconda-21.48.22.56/po/zh_TW.po ---- anaconda-21.48.22.56.orig/po/zh_TW.po 2015-10-29 08:08:35.000000000 -0700 -+++ anaconda-21.48.22.56/po/zh_TW.po 2015-11-20 00:30:56.366884712 -0800 -@@ -2290,12 +2290,12 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 + msgid "Progress" +diff -ruN anaconda-21.48.22.129.orig/po/zh_TW.po anaconda-21.48.22.129/po/zh_TW.po +--- anaconda-21.48.22.129.orig/po/zh_TW.po 2017-12-08 02:40:14.000000000 -0800 ++++ anaconda-21.48.22.129/po/zh_TW.po 2018-01-25 10:55:13.003773211 -0800 +@@ -2520,12 +2520,12 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -"Red Hat 不支援此硬體 (或其硬體組合)。若要瞭解更多有關硬體支援的資訊,請參考 " -"http://www.redhat.com/hardware。" +"PowerEL 不支援此硬體 (或其硬體組合)。若要瞭解更多有關硬體支援的資訊,請參考 " -+"http://www.powerel.org。" ++"http://linux.oracle.com。" #: pyanaconda/ui/tui/spokes/progress.py:37 msgid "Progress" -diff -Nur anaconda-21.48.22.56.orig/po/zu.po anaconda-21.48.22.56/po/zu.po ---- anaconda-21.48.22.56.orig/po/zu.po 2015-10-29 08:08:35.000000000 -0700 -+++ anaconda-21.48.22.56/po/zu.po 2015-11-20 00:30:56.367884778 -0800 -@@ -2080,8 +2080,8 @@ - #: pyanaconda/ui/tui/spokes/warnings.py:44 +diff -ruN anaconda-21.48.22.129.orig/po/zu.po anaconda-21.48.22.129/po/zu.po +--- anaconda-21.48.22.129.orig/po/zu.po 2017-12-08 02:40:14.000000000 -0800 ++++ anaconda-21.48.22.129/po/zu.po 2018-01-25 10:41:13.877815385 -0800 +@@ -2315,9 +2315,9 @@ + #: pyanaconda/ui/tui/spokes/warnings.py:45 #: pyanaconda/ui/gui/spokes/welcome.glade.h:21 msgid "" -"This hardware (or a combination thereof) is not supported by Red Hat. For " -"more information on supported hardware, please refer to http://www.redhat." +-"com/hardware." +"This hardware (or a combination thereof) is not supported by PowerEL. For " -+"more information on supported hardware, please refer to http://linux.oracle." - "com/hardware." ++"more information on supported hardware, please refer to https://www.powerel." ++"org/." msgstr "" -diff -Nur anaconda-21.48.22.56.orig/pyanaconda/nm.py anaconda-21.48.22.56/pyanaconda/nm.py ---- anaconda-21.48.22.56.orig/pyanaconda/nm.py 2015-10-29 08:06:38.000000000 -0700 -+++ anaconda-21.48.22.56/pyanaconda/nm.py 2015-11-20 00:30:56.367884778 -0800 -@@ -1151,7 +1151,7 @@ + #: pyanaconda/ui/tui/spokes/progress.py:37 +diff -ruN anaconda-21.48.22.129.orig/pyanaconda/nm.py anaconda-21.48.22.129/pyanaconda/nm.py +--- anaconda-21.48.22.129.orig/pyanaconda/nm.py 2017-09-07 00:46:46.000000000 -0700 ++++ anaconda-21.48.22.129/pyanaconda/nm.py 2018-01-25 10:41:13.990717269 -0800 +@@ -1267,7 +1267,7 @@ except ValueError as e: print(" %s" % e) @@ -1307,40 +1448,40 @@ diff -Nur anaconda-21.48.22.56.orig/pyanaconda/nm.py anaconda-21.48.22.56/pyanac print("Settings for AP %s: %s" % (ssid, _settings_for_ap(ssid))) ssid = "nonexisting" print("Settings for AP %s: %s" % (ssid, _settings_for_ap(ssid))) -diff -Nur anaconda-21.48.22.56.orig/pyanaconda/ui/gui/spokes/welcome.glade anaconda-21.48.22.56/pyanaconda/ui/gui/spokes/welcome.glade ---- anaconda-21.48.22.56.orig/pyanaconda/ui/gui/spokes/welcome.glade 2015-10-29 07:23:19.000000000 -0700 -+++ anaconda-21.48.22.56/pyanaconda/ui/gui/spokes/welcome.glade 2015-11-20 00:30:56.367884778 -0800 +diff -ruN anaconda-21.48.22.129.orig/pyanaconda/ui/gui/spokes/welcome.glade anaconda-21.48.22.129/pyanaconda/ui/gui/spokes/welcome.glade +--- anaconda-21.48.22.129.orig/pyanaconda/ui/gui/spokes/welcome.glade 2017-01-30 02:03:51.000000000 -0800 ++++ anaconda-21.48.22.129/pyanaconda/ui/gui/spokes/welcome.glade 2018-01-25 10:41:14.089238996 -0800 @@ -519,7 +519,7 @@ True False start - This hardware (or a combination thereof) is not supported by Red Hat. For more information on supported hardware, please refer to http://www.redhat.com/hardware. -+ This hardware (or a combination thereof) is not supported by PowerEL. For more information on supported hardware, please refer to http://www.powerel.org/. ++ This hardware (or a combination thereof) is not supported by PowerEL. For more information on supported hardware, please refer to https://www.powerel.org/. True -diff -Nur anaconda-21.48.22.56.orig/pyanaconda/ui/gui/spokes/welcome.glade.h anaconda-21.48.22.56/pyanaconda/ui/gui/spokes/welcome.glade.h ---- anaconda-21.48.22.56.orig/pyanaconda/ui/gui/spokes/welcome.glade.h 2015-10-29 08:08:15.000000000 -0700 -+++ anaconda-21.48.22.56/pyanaconda/ui/gui/spokes/welcome.glade.h 2015-11-20 00:30:56.368884718 -0800 +diff -ruN anaconda-21.48.22.129.orig/pyanaconda/ui/gui/spokes/welcome.glade.h anaconda-21.48.22.129/pyanaconda/ui/gui/spokes/welcome.glade.h +--- anaconda-21.48.22.129.orig/pyanaconda/ui/gui/spokes/welcome.glade.h 2017-12-08 02:27:57.000000000 -0800 ++++ anaconda-21.48.22.129/pyanaconda/ui/gui/spokes/welcome.glade.h 2018-01-25 10:41:14.157016606 -0800 @@ -18,5 +18,5 @@ char *s = C_("GUI|Welcome|Unsupported Hardware Dialog", "_Quit"); char *s = C_("GUI|Welcome|Unsupported Hardware Dialog", "_Continue"); char *s = N_("Unsupported Hardware Detected"); -char *s = N_("This hardware (or a combination thereof) is not supported by Red Hat. For more information on supported hardware, please refer to http://www.redhat.com/hardware."); -+char *s = N_("This hardware (or a combination thereof) is not supported by PowerEL. For more information on supported hardware, please refer to http://www.powerel.org/."); ++char *s = N_("This hardware (or a combination thereof) is not supported by PowerEL. For more information on supported hardware, please refer to https://www.powerel.org/."); char *s = N_("Unsupported Hardware"); -diff -Nur anaconda-21.48.22.56.orig/pyanaconda/ui/tui/spokes/warnings.py anaconda-21.48.22.56/pyanaconda/ui/tui/spokes/warnings.py ---- anaconda-21.48.22.56.orig/pyanaconda/ui/tui/spokes/warnings.py 2015-10-29 07:23:19.000000000 -0700 -+++ anaconda-21.48.22.56/pyanaconda/ui/tui/spokes/warnings.py 2015-11-20 00:30:56.368884718 -0800 -@@ -42,9 +42,9 @@ - StandaloneTUISpoke.__init__(self, *args, **kwargs) +diff -ruN anaconda-21.48.22.129.orig/pyanaconda/ui/tui/spokes/warnings.py anaconda-21.48.22.129/pyanaconda/ui/tui/spokes/warnings.py +--- anaconda-21.48.22.129.orig/pyanaconda/ui/tui/spokes/warnings.py 2017-02-27 04:58:23.000000000 -0800 ++++ anaconda-21.48.22.129/pyanaconda/ui/tui/spokes/warnings.py 2018-01-25 10:41:14.230906372 -0800 +@@ -43,9 +43,9 @@ + self.initialize_start() self._message = _("This hardware (or a combination thereof) is not " - "supported by Red Hat. For more information on " + "supported by PowerEL. For more information on " "supported hardware, please refer to " - "http://www.redhat.com/hardware." ) -+ "http://www.powerel.org/." ) ++ "https://www.powerel.org/." ) # Does anything need to be displayed? self._unsupported = productName.startswith("Red Hat ") and \ is_unsupported_hw() and \ diff --git a/SPECS/anaconda.spec b/SPECS/anaconda.spec index 84e46daf..ee47d284 100644 --- a/SPECS/anaconda.spec +++ b/SPECS/anaconda.spec @@ -248,7 +248,7 @@ runtime on NFS/HTTP/FTP servers or local disks. %{__rm} data/help/en-US/RHEL7PlaceholderWithLinks.html %{__cp} %{SOURCE102} data/help/en-US/ -# PowerEl patches +# PowerEL patches %patch100 -p1 %patch101 -p1 %patch102 -p1