diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-09-16 15:42:06 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-09-16 15:42:06 +0000 |
commit | 8004466ff5f226829257e3a399e08bf3947e644f (patch) | |
tree | 22d04e91801396ddf89d9bb567e8007c1a48144a /textw | |
parent | 65fcbfc44cd746811eefa805e993aa53e1041b0e (diff) | |
download | anaconda-8004466ff5f226829257e3a399e08bf3947e644f.tar.gz anaconda-8004466ff5f226829257e3a399e08bf3947e644f.tar.xz anaconda-8004466ff5f226829257e3a399e08bf3947e644f.zip |
sync with gui text (#131815)
Diffstat (limited to 'textw')
-rw-r--r-- | textw/firewall_text.py | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/textw/firewall_text.py b/textw/firewall_text.py index 9aaddb385..a9a668a4c 100644 --- a/textw/firewall_text.py +++ b/textw/firewall_text.py @@ -158,17 +158,21 @@ class SELinuxWindow: toplevel = GridFormHelp (screen, _("Security Enhanced Linux"), "selinux", 1, 5) - text = _("Security Enhanced Linux (SELinux) provides stricter access " - "controls to improve the security of your system. How would " - "you like this support enabled?") + text = _("Security Enhanced Linux (SELinux) " + "provides finer-grained " + "security controls than those available " + "in a traditional Linux system. It can " + "be set up in a disabled state, a state " + "which only warns about things which would " + "be denied, or a fully active state.")) toplevel.add(TextboxReflowed(50, text), 0, 0, (0,0,0,1)) grid = Grid(3, 1) - disable = SingleRadioButton(_("Disable SELinux"), None, (security.getSELinux() == 0)) + disable = SingleRadioButton(_("Disabled"), None, (security.getSELinux() == 0)) toplevel.add(disable, 0, 1, (0,0,0,0)) - warn = SingleRadioButton(_("Warn on violations"), disable, (security.getSELinux() == 1)) + warn = SingleRadioButton(_("Warn"), disable, (security.getSELinux() == 1)) toplevel.add(warn, 0, 2, (0,0,0,0)) enable = SingleRadioButton(_("Active"), warn, (security.getSELinux() == 2)) toplevel.add(enable, 0, 3, (0,0,0,1)) |