minor change on translation strings

svn: r17012
This commit is contained in:
Jérôme Rapinat 2011-04-01 05:55:41 +00:00
parent 04ae65d941
commit 4632f71fc1

View File

@ -197,9 +197,9 @@ class PersonDetails(Gramplet):
handle = event.get_place_handle() handle = event.get_place_handle()
if handle: if handle:
place = self.dbstate.db.get_place_from_handle(handle).get_title() place = self.dbstate.db.get_place_from_handle(handle).get_title()
retval = _('%s - %s.') % (date, place) retval = _('%(date)s - %(place)s.') % {'date' : date, 'place' : place}
else: else:
retval = _('%s.') % date retval = ('%s.') % date
return retval return retval
def load_person_image(self, person): def load_person_image(self, person):