diff options
author | Erik Troan <ewt@redhat.com> | 1999-08-28 15:59:31 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-08-28 15:59:31 +0000 |
commit | c7d615d8c53cee8584b0a9a7fc347acd03aacc23 (patch) | |
tree | eb59e6820cea5c351ad19453b815be532d46cc48 /iw/mouse.py | |
parent | 6d9c007e94a6e7eb15681838d41c33031a6690c4 (diff) | |
download | anaconda-c7d615d8c53cee8584b0a9a7fc347acd03aacc23.tar.gz anaconda-c7d615d8c53cee8584b0a9a7fc347acd03aacc23.tar.xz anaconda-c7d615d8c53cee8584b0a9a7fc347acd03aacc23.zip |
reverted broken patch
Diffstat (limited to 'iw/mouse.py')
-rw-r--r-- | iw/mouse.py | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/iw/mouse.py b/iw/mouse.py index 4cb7a48e3..0d84c42db 100644 --- a/iw/mouse.py +++ b/iw/mouse.py @@ -2,7 +2,6 @@ from gtk import * from iw import * from string import * from re import * -from gui import _ class MouseWindow (InstallWindow): @@ -68,7 +67,7 @@ class MouseWindow (InstallWindow): def __init__ (self, ics): InstallWindow.__init__ (self, ics) - ics.setTitle (_("Mouse Configuration")) + ics.setTitle ("Mouse Configuration") ics.setHTML ("<HTML><BODY>Select your mouse." "</BODY></HTML>") ics.setNextEnabled (TRUE) @@ -141,18 +140,18 @@ class MouseWindow (InstallWindow): (currentMouse, currentDev) = self.todo.mouse.get() - deviceList = [ _("/dev/ttyS0 (COM1 under DOS)", "ttyS0" ), - _("/dev/ttyS1 (COM2 under DOS)", "ttyS1" ), - _("/dev/ttyS2 (COM3 under DOS)", "ttyS2" ), - _("/dev/ttyS3 (COM4 under DOS)", "ttyS3" ) ] + deviceList = [ ("/dev/ttyS0 (COM1 under DOS)", "ttyS0" ), + ("/dev/ttyS1 (COM2 under DOS)", "ttyS1" ), + ("/dev/ttyS2 (COM3 under DOS)", "ttyS2" ), + ("/dev/ttyS3 (COM4 under DOS)", "ttyS3" ) ] - self.emulate3 = GtkCheckButton (_("Emulate 3 Buttons")) + self.emulate3 = GtkCheckButton ("Emulate 3 Buttons") box = GtkVBox (FALSE) sw = GtkScrolledWindow () sw.set_border_width (5) sw.set_policy (POLICY_AUTOMATIC, POLICY_AUTOMATIC) - self.locList = GtkCList (2, (_("Port"), _("Device"))) + self.locList = GtkCList (2, ("Port", "Device")) self.locList.set_selection_mode (SELECTION_SINGLE) for (descrip, dev) in deviceList: |