* src/ReportUtils.py (list_person_str): Add missing periods.
svn: r4413
This commit is contained in:
parent
017e9f5791
commit
cde895aa1d
@ -1,5 +1,6 @@
|
|||||||
2005-04-24 Alex Roitman <shura@gramps-project.org>
|
2005-04-24 Alex Roitman <shura@gramps-project.org>
|
||||||
* src/plugins/rel_ru.py (get_parents): Remove gettext string.
|
* src/plugins/rel_ru.py (get_parents): Remove gettext string.
|
||||||
|
* src/ReportUtils.py (list_person_str): Add missing periods.
|
||||||
|
|
||||||
2005-04-23 Julio Sanchez <jsanchez@users.sourceforge.net>
|
2005-04-23 Julio Sanchez <jsanchez@users.sourceforge.net>
|
||||||
* src/po/es.po: Nearly complete update, but completely untested
|
* src/po/es.po: Nearly complete update, but completely untested
|
||||||
|
@ -1585,7 +1585,7 @@ def list_person_str(database,person,person_name=None,empty_date="",empty_place="
|
|||||||
'male_name' : person_name,
|
'male_name' : person_name,
|
||||||
'birth_date' : bdate, 'death_place' : dplace }
|
'birth_date' : bdate, 'death_place' : dplace }
|
||||||
else:
|
else:
|
||||||
text = _("%(male_name)s Born: %(birth_date)s ") % {
|
text = _("%(male_name)s Born: %(birth_date)s.") % {
|
||||||
'male_name' : person_name, 'birth_date' : bdate }
|
'male_name' : person_name, 'birth_date' : bdate }
|
||||||
else:
|
else:
|
||||||
if bplace:
|
if bplace:
|
||||||
@ -1684,7 +1684,7 @@ def list_person_str(database,person,person_name=None,empty_date="",empty_place="
|
|||||||
'female_name' : person_name,
|
'female_name' : person_name,
|
||||||
'birth_date' : bdate, 'death_place' : dplace }
|
'birth_date' : bdate, 'death_place' : dplace }
|
||||||
else:
|
else:
|
||||||
text = _("%(female_name)s Born: %(birth_date)s ") % {
|
text = _("%(female_name)s Born: %(birth_date)s.") % {
|
||||||
'female_name' : person_name, 'birth_date' : bdate }
|
'female_name' : person_name, 'birth_date' : bdate }
|
||||||
else:
|
else:
|
||||||
if bplace:
|
if bplace:
|
||||||
|
Loading…
Reference in New Issue
Block a user