Commit
·
8486dac
1
Parent(s):
b18954f
Expanding the output indentation method on all languages.
Browse files
app.py
CHANGED
@@ -93,7 +93,8 @@ with tab2:
|
|
93 |
output_string = hungarian_sentence_to_latin(input_string_hungarian)
|
94 |
st.subheader("Transliterated Output:")
|
95 |
if selected_example_hu == "Generate a random sentence" :
|
96 |
-
st.write("Hungarian:"+input_string_hungarian
|
|
|
97 |
else:
|
98 |
st.write(output_string)
|
99 |
else:
|
@@ -118,7 +119,8 @@ with tab3:
|
|
118 |
output_string = turkish_sentence_to_latin(input_string_turkish)
|
119 |
st.subheader("Transliterated Output:")
|
120 |
if selected_example_tu == "Generate a random sentence" :
|
121 |
-
st.write("Turkish:"+input_string_turkish
|
|
|
122 |
else:
|
123 |
st.write(output_string)
|
124 |
else:
|
|
|
93 |
output_string = hungarian_sentence_to_latin(input_string_hungarian)
|
94 |
st.subheader("Transliterated Output:")
|
95 |
if selected_example_hu == "Generate a random sentence" :
|
96 |
+
st.write("Hungarian:"+input_string_hungarian)
|
97 |
+
st.write("Output"+output_string)
|
98 |
else:
|
99 |
st.write(output_string)
|
100 |
else:
|
|
|
119 |
output_string = turkish_sentence_to_latin(input_string_turkish)
|
120 |
st.subheader("Transliterated Output:")
|
121 |
if selected_example_tu == "Generate a random sentence" :
|
122 |
+
st.write("Turkish:"+input_string_turkish)
|
123 |
+
st.write('Output:'+output_string)
|
124 |
else:
|
125 |
st.write(output_string)
|
126 |
else:
|