diff --git a/atst/forms/data.py b/atst/forms/data.py index 779466b5..dbc3d15e 100644 --- a/atst/forms/data.py +++ b/atst/forms/data.py @@ -195,10 +195,13 @@ APPLICATION_COMPLEXITY = [ ] DEV_TEAM = [ - ("government_civilians", "Government Civilians"), - ("military", "Military "), - ("contractor", "Contractor "), - ("other", "Other (E.g. University or other partner)"), + ( + "government_civilians", + translate("forms.task_order.dev_team.government_civilians"), + ), + ("military", translate("forms.task_order.dev_team.military")), + ("contractor", translate("forms.task_order.dev_team.contractor")), + ("other", translate("forms.task_order.dev_team.other")), ] TEAM_EXPERIENCE = [ diff --git a/atst/forms/task_order.py b/atst/forms/task_order.py index 9e1af54f..4935702f 100644 --- a/atst/forms/task_order.py +++ b/atst/forms/task_order.py @@ -59,8 +59,8 @@ class AppInfoForm(CacheableForm): ) complexity_other = StringField(translate("forms.task_order.complexity_other_label")) dev_team = SelectMultipleField( - translate("forms.task_order.dev_team_label"), - description=translate("forms.task_order.dev_team_description"), + translate("forms.task_order.dev_team.label"), + description=translate("forms.task_order.dev_team.description"), choices=DEV_TEAM, default="", widget=ListWidget(prefix_label=False), diff --git a/templates/task_orders/new/review.html b/templates/task_orders/new/review.html index 11331577..cad98d48 100644 --- a/templates/task_orders/new/review.html +++ b/templates/task_orders/new/review.html @@ -73,7 +73,12 @@ diff --git a/translations.yaml b/translations.yaml index 43d298b7..522d6c4c 100644 --- a/translations.yaml +++ b/translations.yaml @@ -190,8 +190,13 @@ forms: not_sure: Not Sure other: Other complexity_other_label: Project Complexity Other - dev_team_label: Development Team - dev_team_description: Which people or teams will be completing the development work for your cloud applications? Select all that apply. + dev_team: + label: Development Team + description: Which people or teams will be completing the development work for your cloud applications? Select all that apply. + government_civilians: Government Civilians + military: Military + contractor: Contractor + other: "Other (E.g. University or other partner)" dev_team_other_label: Development Team Other team_experience: label: Team Experience