l10n: rename some things

This commit is contained in:
steffen123 2010-09-22 17:32:27 +02:00
parent 51f54f5444
commit be39031f4f
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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