From b830761912a5ca1183ae12dfafeeba2183c72c7b Mon Sep 17 00:00:00 2001 From: bfox Date: Wed, 24 Oct 2001 20:33:40 +0000 Subject: make order of labels consistent. Fixes RFE #53179 --- textw/userauth_text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'textw/userauth_text.py') 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)) -- cgit