[initial-setup][PATCH] Reword the EULA spokes' status messages (#1039672)

Vratislav Podzimek vpodzime at redhat.com
Tue Dec 17 16:04:05 UTC 2013


"License accepted" better matches the statement "I accept the license agreement"
shown in the spoke.

Signed-off-by: Vratislav Podzimek <vpodzime at redhat.com>
---
 initial_setup/gui/spokes/eula.py | 2 +-
 initial_setup/tui/spokes/eula.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/initial_setup/gui/spokes/eula.py b/initial_setup/gui/spokes/eula.py
index c789ebb..26bc52f 100644
--- a/initial_setup/gui/spokes/eula.py
+++ b/initial_setup/gui/spokes/eula.py
@@ -64,7 +64,7 @@ class EULAspoke(FirstbootOnlySpokeMixIn, NormalSpoke):
         if not self._have_eula:
             return _("No license found")
 
-        return _("License agreed") if self.data.eula.agreed else _("License not agreed")
+        return _("License accepted") if self.data.eula.agreed else _("License not accepted")
 
     def on_check_button_toggled(self, checkbutton, *args):
         if self._agree_check_button.get_active():
diff --git a/initial_setup/tui/spokes/eula.py b/initial_setup/tui/spokes/eula.py
index ae2080a..b819eae 100644
--- a/initial_setup/tui/spokes/eula.py
+++ b/initial_setup/tui/spokes/eula.py
@@ -58,7 +58,7 @@ class EULAspoke(FirstbootOnlySpokeMixIn, NormalTUISpoke):
         if not self._have_eula:
             return _("No license found")
 
-        return _("License agreed") if self.data.eula.agreed else _("License not agreed")
+        return _("License accepted") if self.data.eula.agreed else _("License not accepted")
 
     def apply(self):
         # nothing needed here, the agreed field is changed in the input method
-- 
1.8.4.2



More information about the anaconda-patches mailing list