Files
furrybot/localization.py
2025-10-03 00:11:57 +03:00

9 lines
249 B
Python

def getlstr(lang, strname):
# ======== RUSSIAN ========
if lang == "ru" and strname == "test":
return "Привет, мир!"
# ======== ENGLISH ========
if lang == "en" and strname == "test":
return "Hello, world!"