From b3d6deea4a5123bcf5b21fd772ef3eee70bf3673 Mon Sep 17 00:00:00 2001 From: Chris Ball Date: Fri, 02 Nov 2007 15:53:38 +0000 Subject: Fix i18n, remove pythagoras for now, add thanks. --- (limited to 'activity.py') diff --git a/activity.py b/activity.py index 349155c..868cc03 100644 --- a/activity.py +++ b/activity.py @@ -128,13 +128,13 @@ class PippyActivity(Activity): buttonhbox = gtk.HBox() # The "go" button - gobutton = gtk.Button(label=_("Run!") + gobutton = gtk.Button(label=_("Run!")) gobutton.connect('clicked', self.gobutton_cb) gobutton.set_size_request(800, 2) buttonhbox.pack_start(gobutton) # The "stop" button - stopbutton = gtk.Button(label=_("Stop!") + stopbutton = gtk.Button(label=_("Stop!")) stopbutton.connect('clicked', self.stopbutton_cb) stopbutton.set_size_request(200, 2) buttonhbox.pack_end(stopbutton) -- cgit v0.9.1