# HG changeset patch # User Neil Muller # Date 1359286722 -7200 # Node ID b3b73fd2be07456146b447f6fa154d31ca2e8e64 # Parent 6b33fc262cefdf2ab1e78fe0115a44644fd9e655 Fix another typo diff -r 6b33fc262cef -r b3b73fd2be07 pyntnclick/data/po/pyntnclick-tools.pot --- a/pyntnclick/data/po/pyntnclick-tools.pot Sun Jan 27 13:17:50 2013 +0200 +++ b/pyntnclick/data/po/pyntnclick-tools.pot Sun Jan 27 13:38:42 2013 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-27 12:34+0200\n" +"POT-Creation-Date: 2013-01-27 13:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -38,7 +38,8 @@ msgstr "" #: pyntnclick/tools/rect_drawer.py:175 -msgid "Thing %(thing)s Interact %(interacts" +#, python-format +msgid "Thing %(thing)s Interact %(interact)s" msgstr "" #: pyntnclick/tools/rect_drawer.py:180 diff -r 6b33fc262cef -r b3b73fd2be07 pyntnclick/tools/rect_drawer.py --- a/pyntnclick/tools/rect_drawer.py Sun Jan 27 13:17:50 2013 +0200 +++ b/pyntnclick/tools/rect_drawer.py Sun Jan 27 13:38:42 2013 +0200 @@ -172,7 +172,7 @@ def _print_thing(self, thing, interact_name): """Helper to avoid repeated translations""" - print (_("Thing %(thing)s Interact %(interacts") % + print (_("Thing %(thing)s Interact %(interact)s") % {'thing': thing.name, 'interact': interact_name}) def _print_rects(self, rect1, rect2):