fix encoding buglet in const.py.in
svn: r9687
This commit is contained in:
parent
f492d26a9c
commit
2803d5bc60
@ -1,3 +1,8 @@
|
|||||||
|
2008-01-02 Jim Sack <jgsack@san.rr.com>
|
||||||
|
* src/const.py.in : change embedded copyright sign to unicode \u00A9
|
||||||
|
and eliminate call to unicode(), as well as the "coding cookie"
|
||||||
|
at the top of file, since there is no longer any non-ASCII
|
||||||
|
|
||||||
2008-01-02 Benny Malengier <benny.malengier@gramps-project.org>
|
2008-01-02 Benny Malengier <benny.malengier@gramps-project.org>
|
||||||
* src/Filters/SideBar/_PlaceSidebarFilter.py: correct string, bug #1275
|
* src/Filters/SideBar/_PlaceSidebarFilter.py: correct string, bug #1275
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
# -*- python -*-
|
# -*- python -*-
|
||||||
# -*- coding: iso-8859-1 -*-
|
|
||||||
#
|
#
|
||||||
# Gramps - a GTK+/GNOME based genealogy program
|
# Gramps - a GTK+/GNOME based genealogy program
|
||||||
#
|
#
|
||||||
@ -145,7 +144,7 @@ else:
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
PROGRAM_NAME = "GRAMPS"
|
PROGRAM_NAME = "GRAMPS"
|
||||||
VERSION = "@VERSIONSTRING@"
|
VERSION = "@VERSIONSTRING@"
|
||||||
COPYRIGHT_MSG = unicode("© 2001-2006 Donald N. Allingham", "iso-8859-1")
|
COPYRIGHT_MSG = u"\U00A9 2001-2006 Donald N. Allingham"
|
||||||
COMMENTS = _("GRAMPS (Genealogical Research and Analysis "
|
COMMENTS = _("GRAMPS (Genealogical Research and Analysis "
|
||||||
"Management Programming System) is a personal "
|
"Management Programming System) is a personal "
|
||||||
"genealogy program.")
|
"genealogy program.")
|
||||||
|
Loading…
Reference in New Issue
Block a user