Corrected minor splelling mistakes (#281)

This commit is contained in:
nelkenwelk
2016-10-21 09:23:47 +02:00
committed by Raphael Michel
parent ad2a712934
commit 5923af37f3
3 changed files with 4 additions and 4 deletions

View File

@@ -66,7 +66,7 @@ class EventCreateSettingsForm(SettingsForm):
data = super().clean()
if data['locale'] not in data['locales']:
raise ValidationError({
'locale': _('Your default locale must also be enebled for your event (see box above).')
'locale': _('Your default locale must also be enabled for your event (see box above).')
})
return data
@@ -183,7 +183,7 @@ class EventSettingsForm(SettingsForm):
data = super().clean()
if data['locale'] not in data['locales']:
raise ValidationError({
'locale': _('Your default locale must also be enebled for your event (see box above).')
'locale': _('Your default locale must also be enabled for your event (see box above).')
})
if data['attendee_names_required'] and not data['attendee_names_asked']:
raise ValidationError({