diff --git a/pyfpdb/GuiBulkImport.py b/pyfpdb/GuiBulkImport.py index a836e043..10812101 100755 --- a/pyfpdb/GuiBulkImport.py +++ b/pyfpdb/GuiBulkImport.py @@ -16,7 +16,7 @@ #In the "official" distribution you can find the license in agpl-3.0.txt. import L10n -_ = L10n.get_translator() +_ = L10n.get_translation() # Standard Library modules import os diff --git a/pyfpdb/L10n.py b/pyfpdb/L10n.py index e5558118..c6e6036a 100644 --- a/pyfpdb/L10n.py +++ b/pyfpdb/L10n.py @@ -20,18 +20,18 @@ def pass_through(to_translate): return to_translate lang=locale.getdefaultlocale()[0][0:2] if lang=="en": - translator=pass_through + translation=pass_through else: import gettext try: trans = gettext.translation("fpdb", localedir="locale", languages=[lang]) trans.install() - translator=_ + translation=_ except IOError: - translator=pass_through + translation=pass_through #def translate(to_translate): # return _(to_translate) -def get_translator(): - return translator +def get_translation(): + return translation