AjayKr09 commited on
Commit
22cd40f
·
verified ·
1 Parent(s): f55a250

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -4
app.py CHANGED
@@ -11,15 +11,31 @@ st.header("Translation Application")
11
 
12
  il = st.selectbox(
13
  "Please select the input language",
14
- ("Hindi", "English", "Bengali")
 
 
 
 
 
 
 
 
 
15
  )
16
- st.write("You selected:", il)
17
 
18
  ol = st.selectbox(
19
  "Please select the output language",
20
- ("Hindi", "English", "Bengali")
 
 
 
 
 
 
 
 
 
21
  )
22
- st.write("You selected:", ol)
23
 
24
  input_text = st.text_area('Input Text', height=100)
25
 
 
11
 
12
  il = st.selectbox(
13
  "Please select the input language",
14
+ ("Hindi",
15
+ "Bengali",
16
+ "Marathi",
17
+ "Telugu",
18
+ "Tamil",
19
+ "Gujarati",
20
+ "Urdu",
21
+ "Kannada",
22
+ "Odia",
23
+ "Malayalam")
24
  )
 
25
 
26
  ol = st.selectbox(
27
  "Please select the output language",
28
+ ("Hindi",
29
+ "Bengali",
30
+ "Marathi",
31
+ "Telugu",
32
+ "Tamil",
33
+ "Gujarati",
34
+ "Urdu",
35
+ "Kannada",
36
+ "Odia",
37
+ "Malayalam")
38
  )
 
39
 
40
  input_text = st.text_area('Input Text', height=100)
41