Spaces:
Sleeping
Sleeping
# pages/Analysis.py | |
import streamlit as st | |
# Definiowanie tłumaczeń dla tej podstrony | |
page_translations = { | |
'Polish': { | |
'header': "📊 Analiza SMS", | |
'content': """Tutaj znajduje się interfejs do analizy wiadomości SMS. Wprowadź treść wiadomości poniżej, aby sprawdzić, czy jest ona potencjalnym oszustwem.""" | |
}, | |
'German': { | |
'header': "📊 SMS-Analyse", | |
'content': """Hier befindet sich die Benutzeroberfläche zur Analyse von SMS-Nachrichten. Geben Sie den Text der Nachricht unten ein, um zu überprüfen, ob es sich um einen potenziellen Betrugsversuch handelt.""" | |
}, | |
'English': { | |
'header': "📊 SMS Analysis", | |
'content': """Here is the interface for analyzing SMS messages. Enter the content of the message below to check if it is a potential fraud attempt.""" | |
} | |
} | |
def show_analysis(language): | |
st.header(page_translations[language]['header']) | |
st.write(page_translations[language]['content']) | |
# Tutaj dodaj resztę funkcjonalności analizy SMS | |
if __name__ == "__main__": | |
show_analysis(st.session_state.language) | |