* src/const.py.in: Mark LDS status strings as translatable.

svn: r2619
This commit is contained in:
Alex Roitman 2004-01-09 23:05:06 +00:00
parent 5e9219adff
commit 70cf938fe1
2 changed files with 13 additions and 10 deletions

View File

@ -1,5 +1,6 @@
2004-01-09 Alex Roitman <shura@alex.neuro.umn.edu>
* src/plugins/rel_de.py: Update possible German locale list.
* src/const.py.in: Mark LDS status strings as translatable.
2004-01-08 Don Allingham <dallingham@users.sourceforge.net>
* src/docgen/PSDrawDoc.py: Scaleable shadow

View File

@ -3,7 +3,7 @@
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2000, 2003 Donald N. Allingham
# Copyright (C) 2000-2004 Donald N. Allingham
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -20,6 +20,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# $Id$
#-------------------------------------------------------------------------
#
# Standard python modules
@ -942,21 +944,21 @@ lds_status = {
}
lds_baptism = [
"<No Status>", "Child", "Cleared", "Completed",
"Infant", "Pre-1970", "Qualified", "Stillborn",
"Submitted", "Uncleared",
_("<No Status>"), _("Child"), _("Cleared"), _("Completed"),
_("Infant"), _("Pre-1970"), _("Qualified"), _("Stillborn"),
_("Submitted"), _("Uncleared"),
]
lds_csealing = [
"<No Status>", "BIC", "Cleared", "Completed",
"DNS", "Pre-1970", "Qualified", "Stillborn",
"Submitted", "Uncleared",
_("<No Status>"), _("BIC"), _("Cleared"), _("Completed"),
_("DNS"), _("Pre-1970"), _("Qualified"), _("Stillborn"),
_("Submitted"), _("Uncleared"),
]
lds_ssealing = [
"<No Status>", "Canceled", "Cleared", "Completed",
"DNS", "Pre-1970", "Qualified", "DNS/CAN",
"Submitted", "Uncleared",
_("<No Status>"), _("Canceled"), _("Cleared"), _("Completed"),
_("DNS"), _("Pre-1970"), _("Qualified"), _("DNS/CAN"),
_("Submitted"), _("Uncleared"),
]