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. #In the "official" distribution you can find the license in agpl-3.0.txt.
import L10n import L10n
_ = L10n.get_translator() _ = L10n.get_translation()
# Standard Library modules # Standard Library modules
import os import os

View File

@ -20,18 +20,18 @@ def pass_through(to_translate): return to_translate
lang=locale.getdefaultlocale()[0][0:2] lang=locale.getdefaultlocale()[0][0:2]
if lang=="en": if lang=="en":
translator=pass_through translation=pass_through
else: else:
import gettext import gettext
try: try:
trans = gettext.translation("fpdb", localedir="locale", languages=[lang]) trans = gettext.translation("fpdb", localedir="locale", languages=[lang])
trans.install() trans.install()
translator=_ translation=_
except IOError: except IOError:
translator=pass_through translation=pass_through
#def translate(to_translate): #def translate(to_translate):
# return _(to_translate) # return _(to_translate)
def get_translator(): def get_translation():
return translator return translation