GNOME Bugzilla – Bug 475639
Incorrect encoding in src/lib/accerciser/about_dialog.py
Last modified: 2008-02-28 09:13:49 UTC
Python's default encoding is ISO-8859-1 (Latin-1), and that's how xgettext extracts the strings. You can set encoding on the source file using "-*- coding: utf-8 -*-" in the top comment (see http://www.python.org/dev/peps/pep-0263/ for details). You are using UTF-8 for the copyright symbol. This makes the translation hard to achieve with a message like: #: ../src/lib/accerciser/about_dialog.py:52 msgid "accerciser Copyright © 2006, 2007 IBM Corporation (BSD)" Note that we are in the string freeze atm, so don't just rush a fix in.
*** Bug 489553 has been marked as a duplicate of this bug. ***
*** This bug has been marked as a duplicate of 497473 ***