From 069b31ed93042ebc983bdbb2a04db614257729bb Mon Sep 17 00:00:00 2001 From: if Date: Fri, 24 Mar 2023 01:14:19 +0300 Subject: [PATCH] hotfix footer locales --- chat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chat.py b/chat.py index c0e2739..15f17d5 100644 --- a/chat.py +++ b/chat.py @@ -91,9 +91,9 @@ if __name__ == "__main__": ) st.markdown("---") match selected_footer: - case "Info": + case st.session_state.locale.footer_option1: show_info(tg_svg) - case "Donates": + case st.session_state.locale.footer_option2: show_donates() case _: show_info(tg_svg)