2704: Translation problem word Title (contribution by jannek)

svn: r11970
This commit is contained in:
Jérôme Rapinat
2009-02-12 07:31:08 +00:00
parent 7fefd970c7
commit a3d33aff16
7 changed files with 13 additions and 13 deletions

View File

@@ -30,7 +30,7 @@
#
#-------------------------------------------------------------------------
import time
from gettext import gettext as _
from TransUtils import sgettext as _
from gettext import ngettext
import csv
import codecs
@@ -158,7 +158,7 @@ def cleanup_column_name(column):
"Call name", _("Call name"),
"Call", _("Call")]:
return "callname"
elif retval in ["Title", _("Title")]:
elif retval in ["Title", _("Person|Title")]:
return "title"
elif retval in ["Prefix", _("Prefix")]:
return "prefix"
@@ -230,7 +230,7 @@ def cleanup_column_name(column):
"call name",
"call", _("call")]:
return "callname"
elif retval in ["title", _("title")]:
elif retval in ["title", _("Person|title")]:
return "title"
elif retval in ["prefix", _("prefix")]:
return "prefix"