kuroiikimono commited on
Commit
64ebb07
·
verified ·
1 Parent(s): 4e5a426

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -219,7 +219,8 @@ This translation app is useful for people who want to translate something or wan
219
  `th`: **Thai**,
220
  `tl`: **Tagalog**,
221
  `ca`: **Catalan**,
222
- `si`: **Sinhalese**
 
223
  """)
224
  lang_code = [
225
  "select language",
@@ -235,6 +236,7 @@ This translation app is useful for people who want to translate something or wan
235
  "Tagalog",
236
  "Catalan",
237
  "Sinhalese",
 
238
  ]
239
  sel = st.empty()
240
  #language = sel.radio(
@@ -353,6 +355,8 @@ This translation app is useful for people who want to translate something or wan
353
  to = "ca"
354
  case "Sinhalese":
355
  to = "si"
 
 
356
  case _:
357
  to = "unknown"
358
 
 
219
  `th`: **Thai**,
220
  `tl`: **Tagalog**,
221
  `ca`: **Catalan**,
222
+ `si`: **Sinhalese**,
223
+ `ne`: **Nepall**
224
  """)
225
  lang_code = [
226
  "select language",
 
236
  "Tagalog",
237
  "Catalan",
238
  "Sinhalese",
239
+ "Nepall"
240
  ]
241
  sel = st.empty()
242
  #language = sel.radio(
 
355
  to = "ca"
356
  case "Sinhalese":
357
  to = "si"
358
+ case "Nepall":
359
+ to = "ne"
360
  case _:
361
  to = "unknown"
362