gnome-sudoku doesn't work out of the box. There is a trivial error in the file
change line 33 from
to
The bind_textdomain_codeset attribute is not part of locale in python26 but of gettext. I don't know if it was in older versions of python.
Code:
/usr/local/lib/python2.6/site-packages/gnome_sudoku/defaults.py
Code:
locale.bind_textdomain_codeset(DOMAIN, "UTF-8") # See Bug 608425
Code:
gettext.bind_textdomain_codeset(DOMAIN, "UTF-8") # See Bug 608425