From c7d615d8c53cee8584b0a9a7fc347acd03aacc23 Mon Sep 17 00:00:00 2001 From: Erik Troan Date: Sat, 28 Aug 1999 15:59:31 +0000 Subject: reverted broken patch --- iw/mouse.py | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'iw') 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 ("Select your mouse." "") 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: -- cgit