summaryrefslogtreecommitdiff
path: root/archaeological_finds/forms.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-11-14 22:28:18 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-11-14 22:28:18 +0100
commitad0a54a1b7560d1c6db5c709dfed7779010a24b9 (patch)
tree5f07f21cc80eef197d3a7e833b1758d49d794250 /archaeological_finds/forms.py
parentf6e548fa6980fc9bd4987a26dfd5b21eba2214ea (diff)
parentcdc78be87e57b871f1c535a13dbd46b98714f2c5 (diff)
downloadIshtar-ad0a54a1b7560d1c6db5c709dfed7779010a24b9.tar.bz2
Ishtar-ad0a54a1b7560d1c6db5c709dfed7779010a24b9.zip
Merge branch 'master-trad'
Diffstat (limited to 'archaeological_finds/forms.py')
-rw-r--r--archaeological_finds/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py
index 724576ec6..2a297ea12 100644
--- a/archaeological_finds/forms.py
+++ b/archaeological_finds/forms.py
@@ -227,7 +227,7 @@ class FindSelect(TableSelect):
widget=OAWidget
)
archaeological_sites = forms.IntegerField(
- label=_("Archaelogical site"),
+ label=_("Archaeological site"),
widget=widgets.JQueryAutoComplete(
reverse_lazy('autocomplete-archaeologicalsite'),
associated_model=ArchaeologicalSite),
@@ -510,7 +510,7 @@ class NewFindBasketForm(forms.ModelForm):
q = models.FindBasket.objects.filter(user=self.user,
label=self.cleaned_data['label'])
if q.count():
- raise forms.ValidationError(_(u"Another basket already exist with "
+ raise forms.ValidationError(_(u"Another basket already exists with "
u"this name."))
return self.cleaned_data