Skip to content

Commit

Permalink
fix: nepali yes no choice
Browse files Browse the repository at this point in the history
  • Loading branch information
Sujanadh committed Dec 25, 2024
1 parent be20a5b commit 7e7c2a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osm_fieldwork/form_components/choice_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@

# Define the choices sheet
choices_data = [
{"list_name": "yes_no", "name": "yes", "label::english(en)": "Yes", "label::nepali(ne)": "हो"},
{"list_name": "yes_no", "name": "no", "label::english(en)": "No", "label::nepali(ne)": "होइन"},
{"list_name": "yes_no", "name": "yes", "label::english(en)": "Yes", "label::nepali(ne)": ""},
{"list_name": "yes_no", "name": "no", "label::english(en)": "No", "label::nepali(ne)": "छैन"},
]

choices_df = pd.DataFrame(choices_data)
Expand Down

0 comments on commit 7e7c2a8

Please sign in to comment.