DebasishDhal99
commited on
Commit
·
de2e266
1
Parent(s):
50ed190
Update app.py
Browse files
app.py
CHANGED
@@ -130,17 +130,23 @@ with tab5:
|
|
130 |
romanian_examples = ["România este situată lângă Marea Neagră", "Moldova a folosit grafia chirilică pentru a scrie limba moldovenească",
|
131 |
"Va multumim pentru vizita"]
|
132 |
|
133 |
-
selected_example_ro = st.selectbox("Choose
|
134 |
|
135 |
if selected_example_ro != 'None':
|
136 |
input_string_romanian = selected_example_ro
|
137 |
|
|
|
|
|
|
|
138 |
if st.button("Transliterate Romanian"):
|
139 |
if input_string_romanian:
|
140 |
output_string = romanian_sentence_to_latin(input_string_romanian)
|
141 |
-
st.subheader("Transliterated Output")
|
142 |
-
|
143 |
-
|
|
|
|
|
|
|
144 |
else:
|
145 |
-
st.warning("Please enter a string")
|
146 |
|
|
|
130 |
romanian_examples = ["România este situată lângă Marea Neagră", "Moldova a folosit grafia chirilică pentru a scrie limba moldovenească",
|
131 |
"Va multumim pentru vizita"]
|
132 |
|
133 |
+
selected_example_ro = st.selectbox("Choose an example as demo", ['None', "Generate a random sentence"]+romanian_examples)
|
134 |
|
135 |
if selected_example_ro != 'None':
|
136 |
input_string_romanian = selected_example_ro
|
137 |
|
138 |
+
if selected_example_ro == "Generate a random sentence" :
|
139 |
+
input_string_romanian = random_sentence('ro')
|
140 |
+
|
141 |
if st.button("Transliterate Romanian"):
|
142 |
if input_string_romanian:
|
143 |
output_string = romanian_sentence_to_latin(input_string_romanian)
|
144 |
+
st.subheader("Transliterated Output:")
|
145 |
+
if selected_example_ro == "Generate a random sentence" :
|
146 |
+
st.write(input_string_romanian)
|
147 |
+
st.write(output_string)
|
148 |
+
else:
|
149 |
+
st.write(output_string)
|
150 |
else:
|
151 |
+
st.warning("Please enter a string.")
|
152 |
|