From a53cd196e7493dab9a7207a3b39eb1065cf54ba7 Mon Sep 17 00:00:00 2001 From: Alan Aguiar Date: Tue, 29 Jan 2013 19:14:02 +0000 Subject: add gettext to name and summary of about dialog --- (limited to 'turtleblocks.py') 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() -- cgit v0.9.1