Issue 4293, problems with LagecyGedcom and empty events.
svn: r15998
This commit is contained in:
parent
4847525995
commit
dbc15d475f
@ -41,6 +41,10 @@ def gettext(msgid):
|
|||||||
:returns: Translation or the original.
|
:returns: Translation or the original.
|
||||||
:rtype: unicode
|
: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))
|
return unicode(pgettext.gettext(msgid))
|
||||||
|
|
||||||
def ngettext(singular, plural, n):
|
def ngettext(singular, plural, n):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user