Spaces:
Sleeping
Sleeping
File size: 810 Bytes
f39e77d 128b0c3 a4f1359 1a4c9fa a4f1359 128b0c3 1a4c9fa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# pages/Statistics.py
import streamlit as st
# Definiowanie tłumaczeń dla tej podstrony
page_translations = {
'Polish': {
'header': "📈 Statystyki",
'content': """Tutaj znajdują się statystyki dotyczące analizowanych wiadomości SMS."""
},
'German': {
'header': "📈 Statistiken",
'content': """Hier befinden sich Statistiken zu den analysierten SMS-Nachrichten."""
},
'English': {
'header': "📈 Statistics",
'content': """Here are the statistics of the analyzed SMS messages."""
}
}
def main(language):
st.header(page_translations[language]['header'])
st.write(page_translations[language]['content'])
# Tutaj dodaj resztę funkcjonalności statystyk
# Do not include "if __name__ == '__main__':" block in pages
|