From faca534de4af1bf59231af30b4f35a5e93e65acd Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Wed, 2 Jan 2002 14:27:03 +0000 Subject: [PATCH] Renamed the categories for reports svn: r676 --- src/plugins/AncestorChart.py | 4 ++-- src/plugins/AncestorReport.py | 4 ++-- src/plugins/DescendReport.py | 2 +- src/plugins/DetAncestralReport.py | 2 +- src/plugins/FamilyGroup.py | 2 +- src/plugins/GraphViz.py | 2 +- src/plugins/IndivSummary.py | 2 +- src/plugins/RelCalc.py | 32 +++++++++++++++---------------- 8 files changed, 25 insertions(+), 25 deletions(-) diff --git a/src/plugins/AncestorChart.py b/src/plugins/AncestorChart.py index b36a53e0b..ce7c71dee 100644 --- a/src/plugins/AncestorChart.py +++ b/src/plugins/AncestorChart.py @@ -18,7 +18,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -"Generate files/Ancestor Chart" +"Graphical Reports/Ancestor Chart" import Config import os @@ -387,7 +387,7 @@ from Plugins import register_report register_report( report, _("Ancestor Chart"), - category=_("Generate Files"), + category=_("Graphical Reports"), description=_("Produces a graphical ancestral tree graph"), xpm=get_xpm_image() ) diff --git a/src/plugins/AncestorReport.py b/src/plugins/AncestorReport.py index 044a5d9a8..bf585cb72 100644 --- a/src/plugins/AncestorReport.py +++ b/src/plugins/AncestorReport.py @@ -18,7 +18,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -"Generate files/Ahnentafel Report" +"Text Reports/Ahnentafel Report" import RelLib import os @@ -371,7 +371,7 @@ from Plugins import register_report register_report( report, _("Ahnentafel Report"), - category=_("Generate Files"), + category=_("Text Reports"), description= _("Produces a textual ancestral report"), xpm=get_xpm_image() ) diff --git a/src/plugins/DescendReport.py b/src/plugins/DescendReport.py index 603e548a8..c0f22b6f3 100644 --- a/src/plugins/DescendReport.py +++ b/src/plugins/DescendReport.py @@ -272,7 +272,7 @@ from Plugins import register_report register_report( report, _("Descendant Report"), - category=_("Generate Files"), + category=_("Text Reports"), description=_("Generates a list of descendants of the active person"), xpm=get_xpm_image() ) diff --git a/src/plugins/DetAncestralReport.py b/src/plugins/DetAncestralReport.py index b952fe1b6..90910526c 100644 --- a/src/plugins/DetAncestralReport.py +++ b/src/plugins/DetAncestralReport.py @@ -604,7 +604,7 @@ from Plugins import register_report register_report( report, _("Detailed Ancestral Report"), - category=_("Generate Files"), + category=_("Text Reports"), description= _("Produces a detailed ancestral report"), xpm= get_xpm_image() ) diff --git a/src/plugins/FamilyGroup.py b/src/plugins/FamilyGroup.py index 830821f6b..8e134aaba 100644 --- a/src/plugins/FamilyGroup.py +++ b/src/plugins/FamilyGroup.py @@ -456,7 +456,7 @@ from Plugins import register_report register_report( report, _("Family Group Report"), - category=_("Generate Files"), + category=_("Text Reports"), description=_("Creates a family group report, showing information on a set of parents and their children.") ) diff --git a/src/plugins/GraphViz.py b/src/plugins/GraphViz.py index c849ba81e..53546890e 100644 --- a/src/plugins/GraphViz.py +++ b/src/plugins/GraphViz.py @@ -284,7 +284,7 @@ from Plugins import register_report register_report( report, _("Relationship graph"), - category=_("Generate Files"), + category=_("Graphical Reports"), description=get_description() ) diff --git a/src/plugins/IndivSummary.py b/src/plugins/IndivSummary.py index 56005c504..7eab67baa 100644 --- a/src/plugins/IndivSummary.py +++ b/src/plugins/IndivSummary.py @@ -426,7 +426,7 @@ from Plugins import register_report register_report( report, _("Individual Summary"), - category=_("Generate Files"), + category=_("Text Reports"), description=_("Produces a detailed report on the selected person.") ) diff --git a/src/plugins/RelCalc.py b/src/plugins/RelCalc.py index 4fb5d5bab..dad6e5549 100644 --- a/src/plugins/RelCalc.py +++ b/src/plugins/RelCalc.py @@ -100,9 +100,9 @@ def get_father(f,s,level): elif level == 3: return _("%s is the great grandfather of %s.") % (s,f) elif level == 4: - return _("%s is the 2nd great grandfather of %s.") % (s,f) + return _("%s is the second great grandfather of %s.") % (s,f) elif level == 5: - return _("%s is the 3rd great grandfather of %s.") % (s,f) + return _("%s is the third great grandfather of %s.") % (s,f) else: return _("%s is the %dth great grandfather of %s.") % (s,level-2,f) @@ -114,9 +114,9 @@ def get_son(f,s,level): elif level == 3: return _("%s is the great grandson of %s.") % (s,f) elif level == 4: - return _("%s is the 2nd great grandson of %s.") % (s,f) + return _("%s is the second great grandson of %s.") % (s,f) elif level == 5: - return _("%s is the 3rd great grandson of %s.") % (s,f) + return _("%s is the third great grandson of %s.") % (s,f) else: return _("%s is the %dth great grandson of %s.") % (s,level-2,f) @@ -128,9 +128,9 @@ def get_mother(f,s,level): elif level == 3: return _("%s is the great grandmother of %s.") % (s,f) elif level == 4: - return _("%s is the 2nd great grandmother of %s.") % (s,f) + return _("%s is the second great grandmother of %s.") % (s,f) elif level == 5: - return _("%s is the 3rd great grandmother of %s.") % (s,f) + return _("%s is the third great grandmother of %s.") % (s,f) else: return _("%s is the %dth great grandmother of %s.") % (s,level-2,f) @@ -142,9 +142,9 @@ def get_daughter(f,s,level): elif level == 3: return _("%s is the great granddaughter of %s.") % (s,f) elif level == 4: - return _("%s is the 2nd great granddaughter of %s.") % (s,f) + return _("%s is the second great granddaughter of %s.") % (s,f) elif level == 5: - return _("%s is the 3rd great granddaughter of %s.") % (s,f) + return _("%s is the third great granddaughter of %s.") % (s,f) else: return _("%s is the %dth great granddaughter of %s.") % (s,level-2,f) @@ -158,9 +158,9 @@ def get_aunt(f,s,level): elif level == 4: return _("%s is the great grandaunt of %s.") % (s,f) elif level == 5: - return _("%s is the 2nd great grandaunt of %s.") % (s,f) + return _("%s is the second great grandaunt of %s.") % (s,f) elif level == 6: - return _("%s is the 3rd great grandaunt of %s.") % (s,f) + return _("%s is the third great grandaunt of %s.") % (s,f) else: return _("%s is the %dth great grandaunt of %s.") % (s,level-3,f) @@ -174,9 +174,9 @@ def get_uncle(f,s,level): elif level == 4: return _("%s is the great granduncle of %s.") % (s,f) elif level == 5: - return _("%s is the 2nd great granduncle of %s.") % (s,f) + return _("%s is the second great granduncle of %s.") % (s,f) elif level == 6: - return _("%s is the 3rd great granduncle of %s.") % (s,f) + return _("%s is the third great granduncle of %s.") % (s,f) else: return _("%s is the %dth great granduncle of %s.") % (s,level-3,f) @@ -188,9 +188,9 @@ def get_nephew(f,s,level): elif level == 3: return _("%s is the great grandnephew of %s.") % (s,f) elif level == 4: - return _("%s is the 2nd great grandnephew of %s.") % (s,f) + return _("%s is the second great grandnephew of %s.") % (s,f) elif level == 5: - return _("%s is the 3rd great grandnephew of %s.") % (s,f) + return _("%s is the third great grandnephew of %s.") % (s,f) else: return _("%s is the %dth great grandnephew of %s.") % (s,level-2,f) @@ -202,9 +202,9 @@ def get_niece(f,s,level): elif level == 3: return _("%s is the great grandniece of %s.") % (s,f) elif level == 4: - return _("%s is the 2nd great grandniece of %s.") % (s,f) + return _("%s is the second great grandniece of %s.") % (s,f) elif level == 5: - return _("%s is the 3rd great grandniece of %s.") % (s,f) + return _("%s is the third great grandniece of %s.") % (s,f) else: return _("%s is the %dth great grandniece of %s.") % (s,level-2,f)