Update of the German translation

This commit is contained in:
Raphael Michel
2015-05-27 23:29:57 +02:00
parent 3ac26f64f3
commit a5bd32b2eb
3 changed files with 782 additions and 349 deletions

View File

@@ -100,7 +100,7 @@ class CartAdd(EventViewMixin, CartActionMixin, View):
def post(self, request, *args, **kwargs):
if request.event.presale_start and now() < request.event.presale_start:
messages.error(request, _('The presale period not yet started.'))
messages.error(request, _('The presale period for this event has not yet started.'))
return redirect(self.get_failure_url())
if request.event.presale_end and now() > request.event.presale_end:
messages.error(request, _('The presale period has ended.'))