Fix untranslated titles of export providers

This commit is contained in:
Raphael Michel
2017-03-16 23:46:42 +01:00
parent b00a0eccc6
commit 91ca4f2184
4 changed files with 6 additions and 6 deletions

View File

@@ -3,7 +3,7 @@ import io
from collections import OrderedDict
from django import forms
from django.utils.translation import ugettext as _
from django.utils.translation import ugettext as _, ugettext_lazy
from pretix.base.exporter import BaseExporter
from pretix.base.models import Order, OrderPosition, Question
@@ -16,7 +16,7 @@ class BaseCheckinList(BaseExporter):
class CSVCheckinList(BaseCheckinList):
name = "overview"
identifier = 'checkinlistcsv'
verbose_name = _('Check-in list (CSV)')
verbose_name = ugettext_lazy('Check-in list (CSV)')
@property
def export_form_fields(self):