summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2025-12-01 18:28:17 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2025-12-01 18:40:41 +0100
commita3da94a55f77d29ead86f5f62f08abdb43461d5d (patch)
tree4af9a7bd65f11580aa02abaffac87e4658fc7338
parenta5b724918453dcffb7a3c4e39824c5f9d0dd69a4 (diff)
downloadIshtar-a3da94a55f77d29ead86f5f62f08abdb43461d5d.tar.bz2
Ishtar-a3da94a55f77d29ead86f5f62f08abdb43461d5d.zip
🐛 fix precise datings label (refs #6500)
-rw-r--r--archaeological_context_records/forms.py2
-rw-r--r--archaeological_finds/forms.py8
2 files changed, 5 insertions, 5 deletions
diff --git a/archaeological_context_records/forms.py b/archaeological_context_records/forms.py
index 18d0079e0..156e02339 100644
--- a/archaeological_context_records/forms.py
+++ b/archaeological_context_records/forms.py
@@ -565,7 +565,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 35c6ba6fb..2efe61452 100644
--- a/archaeological_finds/forms.py
+++ b/archaeological_finds/forms.py
@@ -520,7 +520,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"))
@@ -831,7 +831,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"))
@@ -1187,7 +1187,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(
@@ -1907,7 +1907,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)