mirror of
https://github.com/civsocit/olgram.git
synced 2023-07-22 01:29:12 +03:00
13 lines
287 B
Python
13 lines
287 B
Python
import gettext
|
|
from olgram.settings import BotSettings
|
|
from os.path import dirname
|
|
|
|
locales_dir = dirname(__file__)
|
|
|
|
lang = BotSettings.language()
|
|
if lang == "ru":
|
|
_ = lambda x: x
|
|
else:
|
|
t = gettext.translation("olgram", localedir=locales_dir, languages=[lang])
|
|
_ = t.gettext
|