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):