aliicemill commited on
Commit
5c7a29f
·
verified ·
1 Parent(s): 70bcdd3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -6,13 +6,13 @@ import streamlit as st
6
  import os
7
 
8
  # Dil Seçimi
9
- language = st.selectbox("Select Language / اختر اللغة / Seçiniz", ["Türkçe", "English", "عربي"])
10
 
11
  # Dil Desteği İçin Metinler
12
  if language == "Türkçe":
13
  title_text = "Not Analyzer Streamlit Uygulaması"
14
  subheader_text = "Uygulamanın Çalışma Prensibi"
15
- error_message = "Lütfen bir dosya yükleyin!" if input_method == "Dosya Yükle" else "Lütfen notları metin kutusuna yapıştırın!"
16
  participant_text = "Katilimci Sayısı"
17
  min_text = "En Düşük Not"
18
  max_text = "En Yüksek Not"
@@ -28,7 +28,7 @@ if language == "Türkçe":
28
  elif language == "English":
29
  title_text = "Note Analyzer Streamlit Application"
30
  subheader_text = "How the Application Works"
31
- error_message = "Please upload a file!" if input_method == "Upload File" else "Please paste the notes in the text box!"
32
  participant_text = "Number of Participants"
33
  min_text = "Lowest Grade"
34
  max_text = "Highest Grade"
@@ -44,7 +44,7 @@ elif language == "English":
44
  else: # Arabic
45
  title_text = "تطبيق تحليل الدرجات"
46
  subheader_text = "مبدأ عمل التطبيق"
47
- error_message = "من فضلك حمّل ملفًا!" if input_method == "تحميل الملف" else "من فضلك الصق الملاحظات في مربع النص!"
48
  participant_text = "عدد المشاركين"
49
  min_text = "أدنى درجة"
50
  max_text = "أعلى درجة"
 
6
  import os
7
 
8
  # Dil Seçimi
9
+ language = st.selectbox("Select Language/ اختر اللغة/Dil Seçiniz", ["Türkçe", "English", "عربي"])
10
 
11
  # Dil Desteği İçin Metinler
12
  if language == "Türkçe":
13
  title_text = "Not Analyzer Streamlit Uygulaması"
14
  subheader_text = "Uygulamanın Çalışma Prensibi"
15
+ error_message = "Lütfen bir dosya yükleyin!" # Başlangıçta error_message boş olacak
16
  participant_text = "Katilimci Sayısı"
17
  min_text = "En Düşük Not"
18
  max_text = "En Yüksek Not"
 
28
  elif language == "English":
29
  title_text = "Note Analyzer Streamlit Application"
30
  subheader_text = "How the Application Works"
31
+ error_message = "Please upload a file!" # Başlangıçta error_message boş olacak
32
  participant_text = "Number of Participants"
33
  min_text = "Lowest Grade"
34
  max_text = "Highest Grade"
 
44
  else: # Arabic
45
  title_text = "تطبيق تحليل الدرجات"
46
  subheader_text = "مبدأ عمل التطبيق"
47
+ error_message = "من فضلك حمّل ملفًا!" # Başlangıçta error_message boş olacak
48
  participant_text = "عدد المشاركين"
49
  min_text = "أدنى درجة"
50
  max_text = "أعلى درجة"