Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/balloongame.py
diff options
context:
space:
mode:
Diffstat (limited to 'balloongame.py')
-rw-r--r--balloongame.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/balloongame.py b/balloongame.py
index 3e09706..096a8df 100644
--- a/balloongame.py
+++ b/balloongame.py
@@ -23,8 +23,8 @@ import gobject, pygtk, gtk, pango
# parameters about them.
BALLOON_STAGES = [
{ 'count': 10, 'delay': 80 },
- #{ 'count': 20, 'delay': 60 },
- #{ 'count': 70, 'delay': 40 },
+ { 'count': 20, 'delay': 60 },
+ { 'count': 70, 'delay': 40 },
]
class Balloon:
@@ -205,7 +205,7 @@ class BalloonGame(gtk.VBox):
self.area.window.draw_rectangle(gc, False, x, y, w, h)
# Draw text
- report = _('You finished!')
+ report = _('You finished the game!')
report += '\n\n'
report += _('Your score was %(score)d.') % { 'score': self.score }
report += '\n\n'