From 874d62eaf7a5737595393a7fa59519d80db81715 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Tue, 15 Jan 2008 17:40:17 +0000 Subject: [PATCH] 2008-01-15 Douglas S. Blank * src/plugins/SameSurnames.py (run): change description to just surname, not entire person (bug #1595) svn: r9820 --- ChangeLog | 4 ++++ src/plugins/SameSurnames.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 222f7d2f2..ef6aab96b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-01-15 Douglas S. Blank + * src/plugins/SameSurnames.py (run): change description to just + surname, not entire person (bug #1595) + 2008-01-15 Benny Malengier * man/Makefile.am: Swedish removed again so it builds again * removed help files of version 2.x, only wiki manual now! diff --git a/src/plugins/SameSurnames.py b/src/plugins/SameSurnames.py index 05b56cc14..839ecd655 100644 --- a/src/plugins/SameSurnames.py +++ b/src/plugins/SameSurnames.py @@ -40,7 +40,7 @@ def run(database, document, person): sdoc = SimpleDoc(document) stab = SimpleTable(sdb, sdoc) # display the title - sdoc.title(_("People with same surname as %s") % sdb.name(person)) + sdoc.title(_("People with the surname '%s'") % sdb.surname(person)) sdoc.paragraph("") stab.columns(_("Person"), _("Birth Date"), _("Name type")) # grab our current id (self):