Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
authorroot <root@olpc-laptop.(none)>2007-09-29 05:34:39 (GMT)
committer root <root@olpc-laptop.(none)>2007-09-29 05:34:39 (GMT)
commit76b63513feb4a8469204d3b36a215ca7f5863fdf (patch)
treeeb7c7f7d7cc573b6dc190142435642679c1fc6cc /activity.py
parent8b136851d932873fafae077cb587052ca2e05286 (diff)
es.po
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/activity.py b/activity.py
index f506dde..349155c 100644
--- a/activity.py
+++ b/activity.py
@@ -15,7 +15,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
"""Pippy Activity: A simple Python programming activity ."""
-
+import gettext
import gtksourceview2
import gtk
import logging
@@ -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)