File size: 852 Bytes
3132cc7
 
bb7d797
 
db34248
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bb7d797
db34248
 
 
 
bb7d797
db34248
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/Contact.py

import streamlit as st

# Definiowanie tłumaczeń dla tej podstrony
page_translations = {
    'Polish': {
        'header': "📧 Kontakt",
        'content': """Masz pytania lub sugestie? Skontaktuj się z nami za pomocą poniższych kanałów."""
    },
    'German': {
        'header': "📧 Kontakt",
        'content': """Haben Sie Fragen oder Anregungen? Kontaktieren Sie uns über die untenstehenden Kanäle."""
    },
    'English': {
        'header': "📧 Contact",
        'content': """Do you have questions or suggestions? Contact us using the channels below."""
    }
}

def main(language):
    st.header(page_translations[language]['header'])
    st.write(page_translations[language]['content'])
    # Tutaj dodaj resztę funkcjonalności kontaktowych

# Do not include "if __name__ == '__main__':" block in pages