Spaces:
Running
Running
v0.8.5
#13
by
DmitryRyumin
- opened
- app/event_handlers/languages.py +2 -2
- config.toml +1 -1
- images/email.svg +1 -1
app/event_handlers/languages.py
CHANGED
@@ -13,10 +13,10 @@ from app.components import dropdown_create_ui
|
|
13 |
|
14 |
|
15 |
def event_handler_languages(languages):
|
16 |
-
if languages.lower() == "
|
17 |
lang_id = 0
|
18 |
choices = config_data.Settings_LANGUAGES_EN
|
19 |
-
elif languages.lower() == "
|
20 |
lang_id = 1
|
21 |
choices = config_data.Settings_LANGUAGES_RU
|
22 |
else:
|
|
|
13 |
|
14 |
|
15 |
def event_handler_languages(languages):
|
16 |
+
if languages.lower() == "english":
|
17 |
lang_id = 0
|
18 |
choices = config_data.Settings_LANGUAGES_EN
|
19 |
+
elif languages.lower() == "russian":
|
20 |
lang_id = 1
|
21 |
choices = config_data.Settings_LANGUAGES_RU
|
22 |
else:
|
config.toml
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
[AppSettings]
|
2 |
-
APP_VERSION = "0.8.
|
3 |
CSS_PATH = "app.css"
|
4 |
|
5 |
[InformationMessages]
|
|
|
1 |
[AppSettings]
|
2 |
+
APP_VERSION = "0.8.5"
|
3 |
CSS_PATH = "app.css"
|
4 |
|
5 |
[InformationMessages]
|
images/email.svg
CHANGED