9 lines
249 B
Python
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!" |