diff options
author | Mike Fulbright <msf@redhat.com> | 2001-07-06 01:40:59 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-07-06 01:40:59 +0000 |
commit | 21dc7cd04e8b7d523a122164714d056690747be1 (patch) | |
tree | c84b8548e78e2a020a3d635a3d43d5aefa18da32 /iw/account_gui.py | |
parent | e3b1f979d46a099db61ebfac04ac99bc5957b064 (diff) | |
download | anaconda-21dc7cd04e8b7d523a122164714d056690747be1.tar.gz anaconda-21dc7cd04e8b7d523a122164714d056690747be1.tar.xz anaconda-21dc7cd04e8b7d523a122164714d056690747be1.zip |
integrated changes suggested by docs
Diffstat (limited to 'iw/account_gui.py')
-rw-r--r-- | iw/account_gui.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/iw/account_gui.py b/iw/account_gui.py index 6c66976bc..e6d345579 100644 --- a/iw/account_gui.py +++ b/iw/account_gui.py @@ -253,7 +253,7 @@ class AccountWindow (InstallWindow): a.set (0.0, 0.0, 0.0, 0.0) hbox.pack_start (a, FALSE) - label = GtkLabel (_("Please enter a password for the root user.")) + label = GtkLabel (_("Enter the password for the root user (administrator) of this system.")) a = GtkAlignment () a.add (label) a.set (0.0, 0.5, 0.0, 0.0) @@ -337,8 +337,14 @@ class AccountWindow (InstallWindow): hbox.pack_start (a, FALSE) a = GtkAlignment (0.0, 0.5) - label = GtkLabel (_("Additional accounts can be created for users that need to access the system. Please enter user accounts here.")) + label = GtkLabel (_("Additional accounts can be created for other " + "users of this system. Such accounts could be for " + "a personal login account, or for other " + "non-administrative users who need to use this " + "system. Use the <Add> button to enter additional " + "user accounts.")) label.set_line_wrap(TRUE) + label.set_usize(400, -1) a.add(label) hbox.pack_start(a, FALSE) |