From e1fb1c5b14280f3fb90b58487f3305ca262c72f1 Mon Sep 17 00:00:00 2001 From: John Ralls Date: Thu, 28 Feb 2013 20:09:18 +0000 Subject: [PATCH] [r21501]RelationshipCalculator: Promote no translation message to warning And make it more specific. Thanks to Tim Lyons. svn: r21505 --- 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() #-------------------------------------------------------------------------