mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
occured -> occurred (#660)
* Fix duplicate source string * occured -> occurred All resources I could find listed this as misspelled, but I wasn't too sure… Also, it should be checked if all changes to the .po-files are respected in the corresponding src-files.
This commit is contained in:
committed by
Raphael Michel
parent
66483b6ae8
commit
831e31ea9d
@@ -457,7 +457,7 @@ class MailSettings(EventSettingsViewMixin, EventSettingsFormView):
|
||||
try:
|
||||
backend.test(self.request.event.settings.mail_from)
|
||||
except Exception as e:
|
||||
messages.warning(self.request, _('An error occured while contacting the SMTP server: %s') % str(e))
|
||||
messages.warning(self.request, _('An error occurred while contacting the SMTP server: %s') % str(e))
|
||||
else:
|
||||
if form.cleaned_data.get('smtp_use_custom'):
|
||||
messages.success(self.request, _('Your changes have been saved and the connection attempt to '
|
||||
|
||||
@@ -611,7 +611,7 @@ class OrderChange(OrderView):
|
||||
form_valid = self._process_add(ocm) and self._process_change(ocm) and self._process_other(ocm)
|
||||
|
||||
if not form_valid:
|
||||
messages.error(self.request, _('An error occured. Please see the details below.'))
|
||||
messages.error(self.request, _('An error occurred. Please see the details below.'))
|
||||
else:
|
||||
try:
|
||||
ocm.commit()
|
||||
|
||||
Reference in New Issue
Block a user