From 7e7c2a852f3fe7e64778ffc3973316728468f450 Mon Sep 17 00:00:00 2001 From: Sujan Adhikari Date: Wed, 25 Dec 2024 10:55:49 +0545 Subject: [PATCH] fix: nepali yes no choice --- osm_fieldwork/form_components/choice_fields.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osm_fieldwork/form_components/choice_fields.py b/osm_fieldwork/form_components/choice_fields.py index 8106c125..6891fae2 100644 --- a/osm_fieldwork/form_components/choice_fields.py +++ b/osm_fieldwork/form_components/choice_fields.py @@ -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)