From 8b24f681cb93e67076c57b9044e08d30f1b95f59 Mon Sep 17 00:00:00 2001 From: Peter Landgren Date: Thu, 9 Sep 2010 14:16:42 +0000 Subject: [PATCH] Two strings made translatable. svn: r15862 --- src/Filters/Rules/Person/_DeepRelationshipPathBetween.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Filters/Rules/Person/_DeepRelationshipPathBetween.py b/src/Filters/Rules/Person/_DeepRelationshipPathBetween.py index bc0b95956..2cbfba4af 100644 --- a/src/Filters/Rules/Person/_DeepRelationshipPathBetween.py +++ b/src/Filters/Rules/Person/_DeepRelationshipPathBetween.py @@ -46,10 +46,10 @@ def filter_database(db, progress, filter_name): """Returns a list of person handles""" filt = MatchesFilter([filter_name]) - progress.set_header('Preparing sub-filter') + progress.set_header(_('Preparing sub-filter')) filt.requestprepare(db) - progress.set_header('Retrieving all sub-filter matches') + progress.set_header(_('Retrieving all sub-filter matches')) matches = [] for handle in db.iter_person_handles(): person = db.get_person_from_handle(handle)