summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archaeological_finds/forms_treatments.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/archaeological_finds/forms_treatments.py b/archaeological_finds/forms_treatments.py
index cc20d6f20..caaf70f5a 100644
--- a/archaeological_finds/forms_treatments.py
+++ b/archaeological_finds/forms_treatments.py
@@ -247,7 +247,7 @@ class TreatmentFormFileChoice(forms.Form):
class TreatmentDeletionForm(FinalForm):
confirm_msg = _(
- u"Are you sure you want to delete this treatment? All modification "
+ u"Are you sure you want to delete this treatment? All changes "
u"made to the associated finds since this treatment record will be "
u"lost!")
confirm_end_msg = _(u"Would you like to delete this treatment?")
@@ -532,13 +532,13 @@ class AdministrativeActTreatmentFileModifForm(
SourceTreatmentFormSelection = get_form_selection(
'SourceTreatmentFormSelection', _(u"Treatment search"), 'treatment',
models.Treatment, TreatmentSelect, 'get-treatment',
- _(u"You should select an treatment."))
+ _(u"You should select a treatment."))
SourceTreatmentFileFormSelection = get_form_selection(
'SourceTreatmentFileFormSelection', _(u"Treatment file search"),
'treatment_file',
models.TreatmentFile, TreatmentFileSelect, 'get-treatmentfile',
- _(u"You should select an treatment file."))
+ _(u"You should select a treatment file."))
class TreatmentSourceSelect(SourceSelect):