Skip to content

Commit ba806a0

Browse files
committed
add default english selection and new languages
1 parent a3c8752 commit ba806a0

1 file changed

Lines changed: 15 additions & 3 deletions

File tree

levelup/app.py

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -310,16 +310,28 @@ def display_analysis_tabs(result: dict[str, Any]) -> None:
310310
if text:
311311
st.subheader("Select report language")
312312
language_options = [
313+
"Czech",
314+
"Danish",
315+
"Dutch",
313316
"English",
314-
"German",
317+
"Finnish",
315318
"French",
319+
"German",
320+
"Greek",
316321
"Italian",
322+
"Kurdish (Kurmanji)",
323+
"Polish",
324+
"Portuguese",
317325
"Russian",
318-
"Turkish",
319326
"Spanish",
327+
"Swedish",
328+
"Turkish",
329+
"Ukrainian",
320330
]
321331
selected_language = st.selectbox(
322-
"Choose a language for the report", language_options
332+
"Choose a language for the report",
333+
language_options,
334+
index=language_options.index("English"),
323335
)
324336

325337
if st.button("Analyze Resume"):

0 commit comments

Comments
 (0)