summaryrefslogtreecommitdiffstats
path: root/textw/userauth_text.py
diff options
context:
space:
mode:
authorbfox <bfox>2001-10-24 20:33:40 +0000
committerbfox <bfox>2001-10-24 20:33:40 +0000
commitb830761912a5ca1183ae12dfafeeba2183c72c7b (patch)
treea7770082aa7f2ac93801f69b5d0e8f131dff02de /textw/userauth_text.py
parentd177f38f3bd363bb9612475e82bb506385757930 (diff)
downloadanaconda-b830761912a5ca1183ae12dfafeeba2183c72c7b.tar.gz
anaconda-b830761912a5ca1183ae12dfafeeba2183c72c7b.tar.xz
anaconda-b830761912a5ca1183ae12dfafeeba2183c72c7b.zip
make order of labels consistent. Fixes RFE #53179
Diffstat (limited to 'textw/userauth_text.py')
-rw-r--r--textw/userauth_text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/userauth_text.py b/textw/userauth_text.py
index 596cb13dc..f6ce53335 100644
--- a/textw/userauth_text.py
+++ b/textw/userauth_text.py
@@ -35,7 +35,7 @@ class RootPasswordWindow:
entry2 = Entry (24, password = 1, text = pw)
passgrid = Grid (2, 2)
passgrid.setField (Label (_("Password:")), 0, 0, (0, 0, 1, 0), anchorLeft = 1)
- passgrid.setField (Label (_("Password (again):")), 0, 1, (0, 0, 1, 0), anchorLeft = 1)
+ passgrid.setField (Label (_("Password (confirm):")), 0, 1, (0, 0, 1, 0), anchorLeft = 1)
passgrid.setField (entry1, 1, 0)
passgrid.setField (entry2, 1, 1)
toplevel.add (passgrid, 0, 1, (0, 0, 0, 1))