From b73e758a841025409fbaa6b528101b3c88251ead Mon Sep 17 00:00:00 2001 From: John Ralls Date: Thu, 28 Feb 2013 19:36:09 +0000 Subject: [PATCH] RelationshipCalculator: Promote no translation message to warning And make it more specific. Thanks to Tim Lyons. svn: r21501 --- gramps/gen/relationship.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gramps/gen/relationship.py b/gramps/gen/relationship.py index b3fa2218c..0d68dd035 100644 --- a/gramps/gen/relationship.py +++ b/gramps/gen/relationship.py @@ -1814,8 +1814,7 @@ def get_relationship_calculator(reinit=False): break if not relation_translation_found and \ len(PluginRegister.get_instance().relcalc_plugins()): - LOG.debug(_("No translation available for language '%s'. " + - "Using 'english' instead.") % lang) + LOG.warning(_("Family relationship translator not available for language '%s'. Using 'english' instead.") % lang) return __RELCALC_CLASS() #-------------------------------------------------------------------------