l10n: rename some things
This commit is contained in:
parent
51f54f5444
commit
be39031f4f
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user