ScamDetector / pages /Contact.py
rafaldembski's picture
Update pages/Contact.py
db34248 verified
raw
history blame
852 Bytes
# 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