Spaces:
Sleeping
Sleeping
rafaldembski
commited on
Commit
•
a4f1359
1
Parent(s):
4c3c8da
Update pages/Statistics.py
Browse files- pages/Statistics.py +21 -28
pages/Statistics.py
CHANGED
@@ -1,35 +1,28 @@
|
|
1 |
# pages/Statistics.py
|
2 |
|
3 |
import streamlit as st
|
4 |
-
import json
|
5 |
-
import plotly.express as px
|
6 |
-
from utils.functions import get_stats, init_stats_file
|
7 |
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
st.plotly_chart(fig, use_container_width=True)
|
29 |
-
|
30 |
-
# Wykres liniowy przedstawiający wzrost analiz w czasie (opcjonalne)
|
31 |
-
# Możesz dodać funkcje do przechowywania danych czasowych i tworzenia bardziej zaawansowanych wykresów
|
32 |
|
33 |
if __name__ == "__main__":
|
34 |
-
|
35 |
|
|
|
1 |
# pages/Statistics.py
|
2 |
|
3 |
import streamlit as st
|
|
|
|
|
|
|
4 |
|
5 |
+
# Definiowanie tłumaczeń dla tej podstrony
|
6 |
+
page_translations = {
|
7 |
+
'Polish': {
|
8 |
+
'header': "📈 Statystyki",
|
9 |
+
'content': """Tutaj znajdują się statystyki dotyczące analizowanych wiadomości SMS."""
|
10 |
+
},
|
11 |
+
'German': {
|
12 |
+
'header': "📈 Statistiken",
|
13 |
+
'content': """Hier befinden sich Statistiken zu den analysierten SMS-Nachrichten."""
|
14 |
+
},
|
15 |
+
'English': {
|
16 |
+
'header': "📈 Statistics",
|
17 |
+
'content': """Here are the statistics of the analyzed SMS messages."""
|
18 |
+
}
|
19 |
+
}
|
20 |
+
|
21 |
+
def show_statistics(language):
|
22 |
+
st.header(page_translations[language]['header'])
|
23 |
+
st.write(page_translations[language]['content'])
|
24 |
+
# Tutaj dodaj resztę funkcjonalności statystyk
|
|
|
|
|
|
|
|
|
25 |
|
26 |
if __name__ == "__main__":
|
27 |
+
show_statistics(st.session_state.language)
|
28 |
|