@@ -41,56 +41,56 @@ class _FeatureCard:
4141
4242
4343_STATS : tuple [_Stat , ...] = (
44- _Stat ("Real-time " , "Data Refresh " ),
45- _Stat ("5+" , "Component Types " ),
46- _Stat ("Multi-site " , "Portfolio View " ),
47- _Stat ("CSV" , "Export Ready " ),
44+ _Stat ("Echtzeit " , "Datenaktualisierung " ),
45+ _Stat ("5+" , "Komponententypen " ),
46+ _Stat ("Multi-Standort " , "Portfolioansicht " ),
47+ _Stat ("CSV" , "Exportbereit " ),
4848)
4949
5050_FEATURE_CARDS : tuple [_FeatureCard , ...] = (
5151 _FeatureCard (
5252 color_class = "home-card--blue" ,
5353 icon = "⚡" ,
54- title = "Reporting Dashboard" ,
54+ title = "Reporting- Dashboard" ,
5555 description = (
56- "Portfolio-level power flows, consumption balances, "
57- "and detailed KPI analytics across all microgrid components ."
56+ "Leistungsflüsse auf Portfolioebene, Verbrauchsbilanzen "
57+ "und detaillierte KPI-Analysen über alle Microgrid-Komponenten ."
5858 ),
5959 features = (
60- "Grid import / export KPIs " ,
61- "PV, Battery, CHP & Wind analytics " ,
62- "Self-sufficiency & self-consumption ratios " ,
63- "Interactive time-series plots " ,
60+ "KPIs für Netzbezug und Einspeisung " ,
61+ "Analysen für PV, Batterie, KWK & Wind" ,
62+ "Autarkie- und Eigenverbrauchsquoten " ,
63+ "Interaktive Zeitreihen-Plots " ,
6464 ),
6565 ),
6666 _FeatureCard (
6767 color_class = "home-card--green" ,
6868 icon = "☀" ,
69- title = "Solar Monitoring" ,
69+ title = "Solar- Monitoring" ,
7070 description = (
71- "Maintenance-oriented solar workflow checks with baseline "
72- "model comparison and rolling performance views ."
71+ "Wartungsorientierte Solar-Workflow-Prüfungen mit "
72+ "Baseline-Modellvergleich und rollierenden Performance-Ansichten ."
7373 ),
7474 features = (
75- "Inverter & meter diagnostics " ,
76- "Baseline model benchmarking " ,
77- "Rolling performance window (5-60 days )" ,
78- "German & English report output " ,
75+ "Diagnose für Wechselrichter & Zähler " ,
76+ "Benchmarking von Baseline-Modellen " ,
77+ "Rollierendes Performance-Fenster (5-60 Tage )" ,
78+ "Berichtsausgabe auf Deutsch & Englisch " ,
7979 ),
8080 ),
8181 _FeatureCard (
8282 color_class = "home-card--purple" ,
8383 icon = "↓" ,
84- title = "Data Export " ,
84+ title = "Datenexport " ,
8585 description = (
86- "Download standardised tables from each reporting section "
87- "for use in internal pipelines and client deliverables ."
86+ "Standardisierte Tabellen aus allen Reporting-Bereichen "
87+ "für interne Pipelines und Kundenberichte herunterladen ."
8888 ),
8989 features = (
90- "Per-component time series " ,
91- "Aggregated energy summaries " ,
92- "Configurable resolution & timezone " ,
93- "CSV-compatible format " ,
90+ "Zeitreihen pro Komponente " ,
91+ "Aggregierte Energiezusammenfassungen " ,
92+ "Konfigurierbare Auflösung & Zeitzone " ,
93+ "CSV-kompatibles Format " ,
9494 ),
9595 ),
9696)
@@ -203,21 +203,21 @@ def render() -> None:
203203
204204 col1 , col2 , col3 = st .columns (3 )
205205 with col1 :
206- if st .button ("Open Reporting Dashboard" , use_container_width = True ):
206+ if st .button ("Reporting- Dashboard öffnen " , use_container_width = True ):
207207 _navigate_to ("reporting_dashboard" )
208208 with col2 :
209- if st .button ("Open Solar Monitoring" , use_container_width = True ):
209+ if st .button ("Solar- Monitoring öffnen " , use_container_width = True ):
210210 _navigate_to ("solar" )
211211 with col3 :
212- if st .button ("Download Data Export " , use_container_width = True ):
212+ if st .button ("Datenexport öffnen " , use_container_width = True ):
213213 _navigate_to ("reporting_dashboard" , section = "data-export" )
214214
215215 st .markdown (_footer_html (), unsafe_allow_html = True )
216216
217217
218218PAGE = PageSpec (
219219 key = "home" ,
220- title = "Overview " ,
220+ title = "Übersicht " ,
221221 icon = "" ,
222222 order = 0 ,
223223 render = render ,
0 commit comments