Update due to new context prefix.

svn: r11274
This commit is contained in:
Peter Landgren 2008-11-08 15:36:03 +00:00
parent a954db469a
commit 634e69ba83

View File

@ -27,7 +27,7 @@
# Python modules # Python modules
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
from gettext import gettext as _ from TransUtils import sgettext as _
from cgi import escape from cgi import escape
import math import math
@ -69,12 +69,12 @@ from QuestionDialog import RunDatabaseRepair, ErrorDialog
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
_PERSON = "p" _PERSON = "p"
_BORN = _('b.') _BORN = _('short for born|b.')
_DIED = _('d.') _DIED = _('short for died|d.')
_BAPT = _('bap.') _BAPT = _('short for baptized|bap.')
_CHRI = _('chr.') _CHRI = _('short for chistianized|chr.')
_BURI = _('bur.') _BURI = _('short for buried|bur.')
_CREM = _('crem.') _CREM = _('short for cremated|crem.')
class PersonBoxWidget_old( gtk.Button): class PersonBoxWidget_old( gtk.Button):
def __init__(self,fh,person,maxlines,image=None): def __init__(self,fh,person,maxlines,image=None):