From 6245f72b44ee6352981a5ba8504572dadc41436d Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 1 Dec 2025 18:28:17 +0100 Subject: 🐛 fix precise datings label (refs #6500) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- archaeological_context_records/forms.py | 2 +- 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 7fa075f0e..a65aad717 100644 --- a/archaeological_context_records/forms.py +++ b/archaeological_context_records/forms.py @@ -548,7 +548,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 ec8c6182a..9c90bfdb5 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -526,7 +526,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")) @@ -839,7 +839,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")) @@ -1196,7 +1196,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( @@ -1910,7 +1910,7 @@ class FindSelect(MuseumForm, GeoItemSelect, PeriodSelect): periods = forms.ChoiceField( label=_("Periods"), 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) -- cgit v1.2.3