minor change on translation strings

svn: r17013
This commit is contained in:
Jérôme Rapinat 2011-04-01 05:57:46 +00:00
parent f01cf2c700
commit 347ff65eac

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