4
1
Fork 1

Init new branch

This commit is contained in:
trueold89 2023-10-31 07:20:39 +03:00
parent 347cf84e98
commit eb7487a43f
Signed by: trueold89
GPG Key ID: C122E85DD49E6B30
2 changed files with 18 additions and 0 deletions

17
bot/lang.py Normal file
View File

@ -0,0 +1,17 @@
#!/usr/bin/python3
# -- coding: utf-8 --
import os
def main():
lang = {}
env = os.environ['LANG']
if env == None:
lang = russian
return lang
# RU
russian = {}
# ENG
english = {}

View File

@ -12,3 +12,4 @@ services:
QURL: "<http://<YOUR_QBIT_SERVER_IP_HERE>:<PORT>"
QUSER: "<YOUR_QBIT_USERNAME>"
QPASS: "<YOUR_QBIT_PASSWORD>"
LANG: "RU"