GrampsLocale: get_relationship_calculator: Fix missed variable name change.

svn: r21168
This commit is contained in:
John Ralls 2013-01-18 21:27:48 +00:00
parent d189448f39
commit 1a43859587

View File

@ -44,7 +44,7 @@ UNKNOWN = Person.UNKNOWN
from .const import GRAMPS_LOCALE as glocale
_ = glocale.get_translation().sgettext
from .plug import PluginRegister, BasePluginManager
from gramps.plugins.lib.libtranslate import get_languate_string
#-------------------------------------------------------------------------
#
#
@ -1813,7 +1813,7 @@ def get_relationship_calculator(reinit=False):
if not relation_translation_found and \
len(PluginRegister.get_instance().relcalc_plugins()):
print((("No translation available for language '%s'. " +
"Using 'english' instead.") % enlang))
"Using 'english' instead.") % lang))
return __RELCALC_CLASS()
#-------------------------------------------------------------------------