diff options
| -rw-r--r-- | archaeological_context_records/forms.py | 2 | ||||
| -rw-r--r-- | archaeological_finds/forms.py | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/archaeological_context_records/forms.py b/archaeological_context_records/forms.py index a16d3ec4e..714943af2 100644 --- a/archaeological_context_records/forms.py +++ b/archaeological_context_records/forms.py @@ -562,7 +562,7 @@ class RecordFormInterpretation(CustomForm, ManageOldType): required=False ) datings_comment = forms.CharField( - label=_("Comments on dating"), required=False, widget=forms.Textarea + label=_("Comments on datings"), required=False, widget=forms.Textarea ) TYPES = [ diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index 54545f1f3..d4454f63e 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -521,7 +521,7 @@ class BasicFindForm(MuseumForm, CustomForm, ManageOldType): required=False, ) dating_comment = forms.CharField( - label=_("Comment on dating"), required=False, widget=forms.Textarea + label=_("Comment on datings"), required=False, widget=forms.Textarea ) HEADERS["length"] = FormHeader(_("Dimensions")) @@ -828,7 +828,7 @@ class ResultingFindForm(CustomForm, ManageOldType): label=_("Comment"), required=False, widget=forms.Textarea ) resulting_dating_comment = forms.CharField( - label=_("Comment on dating"), required=False, widget=forms.Textarea + label=_("Comment on datings"), required=False, widget=forms.Textarea ) HEADERS["resulting_length"] = FormHeader(_("Dimensions")) @@ -1174,7 +1174,7 @@ class QAFindFormMulti(MuseumForm, QAForm): required=False ) qa_dating_comment = forms.CharField( - label=_("Comment on dating"), required=False, widget=forms.Textarea + label=_("Comment on datings"), required=False, widget=forms.Textarea ) qa_conservatory_comment = forms.CharField( @@ -1892,7 +1892,7 @@ class FindSelect(MuseumForm, GeoItemSelect, PeriodSelect): cultural_attributions = forms.ChoiceField( label=_("Cultural attribution"), choices=[], required=False ) - dating_comment = forms.CharField(label=_("Comment on dating")) + dating_comment = forms.CharField(label=_("Comment on datings")) length = FloatField(label=_("Length (cm)"), widget=widgets.CentimeterMeterWidget) width = FloatField(label=_("Width (cm)"), widget=widgets.CentimeterMeterWidget) |
