From bfa9144196d1dd6985f2535b27e62a935bd600dd Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Fri, 9 Jan 2004 23:05:06 +0000 Subject: [PATCH] * src/const.py.in: Mark LDS status strings as translatable. svn: r2619 --- gramps2/ChangeLog | 1 + gramps2/src/const.py.in | 22 ++++++++++++---------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index b328e7f8b..19092cb8d 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,5 +1,6 @@ 2004-01-09 Alex Roitman * 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 * src/docgen/PSDrawDoc.py: Scaleable shadow diff --git a/gramps2/src/const.py.in b/gramps2/src/const.py.in index 59efd5747..fe7139d10 100644 --- a/gramps2/src/const.py.in +++ b/gramps2/src/const.py.in @@ -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 = [ - "", "Child", "Cleared", "Completed", - "Infant", "Pre-1970", "Qualified", "Stillborn", - "Submitted", "Uncleared", + _(""), _("Child"), _("Cleared"), _("Completed"), + _("Infant"), _("Pre-1970"), _("Qualified"), _("Stillborn"), + _("Submitted"), _("Uncleared"), ] lds_csealing = [ - "", "BIC", "Cleared", "Completed", - "DNS", "Pre-1970", "Qualified", "Stillborn", - "Submitted", "Uncleared", + _(""), _("BIC"), _("Cleared"), _("Completed"), + _("DNS"), _("Pre-1970"), _("Qualified"), _("Stillborn"), + _("Submitted"), _("Uncleared"), ] lds_ssealing = [ - "", "Canceled", "Cleared", "Completed", - "DNS", "Pre-1970", "Qualified", "DNS/CAN", - "Submitted", "Uncleared", + _(""), _("Canceled"), _("Cleared"), _("Completed"), + _("DNS"), _("Pre-1970"), _("Qualified"), _("DNS/CAN"), + _("Submitted"), _("Uncleared"), ]