Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/turtleblocks.py
diff options
context:
space:
mode:
Diffstat (limited to 'turtleblocks.py')
-rwxr-xr-xturtleblocks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/turtleblocks.py b/turtleblocks.py
index 5ff3cf7..2e8fc8f 100755
--- a/turtleblocks.py
+++ b/turtleblocks.py
@@ -616,9 +616,9 @@ class TurtleMain():
def _do_about_cb(self, widget):
about = gtk.AboutDialog()
- about.set_program_name(self.name)
+ about.set_program_name(_(self.name))
about.set_version(self.version)
- about.set_comments(self.summary)
+ about.set_comments(_(self.summary))
about.set_website(self.website)
about.set_logo(gtk.gdk.pixbuf_new_from_file('activity/' + self.icon_name + '.svg'))
about.run()