Issue 4293, problems with LagecyGedcom and empty events.

svn: r15998
This commit is contained in:
Peter Landgren 2010-10-15 17:57:07 +00:00
parent 4847525995
commit dbc15d475f

View File

@ -41,6 +41,10 @@ def gettext(msgid):
:returns: Translation or the original.
:rtype: unicode
"""
# If msgid =="" then gettext will return po file header
# and that's not what we want.
if len(msgid.strip()) == 0:
return msgid
return unicode(pgettext.gettext(msgid))
def ngettext(singular, plural, n):