* src/plugins/FtmStyleAncestors.py: Fix coma-sepration for endnotes.

Translate "Endnotes" sub-heading. Enable pagebreak only when
generation > 1 (was 0).
* src/plugins/FtmStyleDescendants.py: Likewise.
* src/const.py.in: Make the confidence order high to low (was l->h).
* src/plugins/AncestorChart.py: Enable translation for "b." and "d."
* src/plugins/DesGraph.py: Likewise.
* src/po/template.po: Update the above corrections in template.


svn: r1887
This commit is contained in:
Alex Roitman
2003-07-16 00:58:10 +00:00
parent 2f7ae1eb6f
commit 5b01f01bc2
7 changed files with 227 additions and 201 deletions

View File

@ -1,7 +1,7 @@
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2000 Donald N. Allingham
# Copyright (C) 2000-2003 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
@ -50,6 +50,9 @@ from QuestionDialog import ErrorDialog
from SubstKeywords import SubstKeywords
from intl import gettext as _
_BORN = _('b.')
_DIED = _('d.')
#------------------------------------------------------------------------
#
# pt2cm - convert points to centimeters
@ -232,7 +235,7 @@ class AncestorChartDialog(Report.DrawReportDialog):
def get_report_extra_textbox_info(self):
"""Label the textbox and provide the default contents."""
return (_("Display Format"), "$n\nb. $b\nd. $d",
return (_("Display Format"), "$n\n%s $b\n%s $d" % (_BORN,_DIED),
_("Allows you to customize the data in the boxes in the report"))
def make_default_style(self):