Compare commits

..

7 Commits

Author SHA1 Message Date
Raphael Michel
ab753dcad9 Add a label for empty salutation option (Z#23183319) 2025-03-16 14:20:20 +01:00
Raphael Michel
12da2666db PDF: Update label of layout editor (nowhere else called designer) 2025-03-16 10:40:47 +01:00
Raphael Michel
03bdfe3540 Base payment provider: Reorder fields 2025-03-16 10:40:47 +01:00
Raphael Michel
8bce847054 PDF editor: Set company for sample attendee 2025-03-16 10:40:47 +01:00
Raphael Michel
c8cdf0438f Fix a typo 2025-03-16 10:40:47 +01:00
Raphael Michel
42b432daa2 Update .clabot 2025-03-14 17:08:38 +01:00
Renne Rocha
88bc144028 Add missing question mark to delete check-ins confirmation form (#4908)
It is a question, so it needs to end with a question mark.
2025-03-14 17:07:32 +01:00
59 changed files with 102 additions and 79 deletions

View File

@@ -1,5 +1,5 @@
{
"contributors": "https://crm.rami.io/cla/check/?project=pretix&checkContributor=",
"message": "Hey there! :) Thank you very much for offering a contribution to pretix! For legal reasons, we need you to sign a Contributor License Agreement in order to be able to merge the code. Sorry for the hassle :( Please download the agreement from https://pretix.eu/about/en/cla and send a signed copy to support@pretix.eu. Feel free to also contact us there or via comments here if you have any questions!",
"message": "Hey there! :) Thank you very much for offering a contribution to pretix! For legal reasons, we need you to sign a Contributor License Agreement in order to be able to merge the code. Sorry for the hassle :( Please download the agreement from https://pretix.eu/about/en/cla and send a signed copy to support@pretix.eu. Feel free to also contact us there or via comments here if you have any questions!\n\nFeel free to ignore me on documentation changes, translations, and trivial PRs like typo fixes (and similar single-line changes) we can merge these without a CLA as well.",
"label": "cla-signed"
}

View File

@@ -127,7 +127,13 @@ class NamePartsWidget(forms.MultiWidget):
if fname == 'title' and self.titles:
widgets.append(Select(attrs=a, choices=[('', '')] + [(d, d) for d in self.titles[1]]))
elif fname == 'salutation':
widgets.append(Select(attrs=a, choices=[('', '---'), ('empty', '')] + PERSON_NAME_SALUTATIONS))
widgets.append(Select(
attrs=a,
choices=[
('', '---'),
('empty', '({})'.format(pgettext_lazy("name_salutation", "not specified"))),
] + PERSON_NAME_SALUTATIONS
))
else:
widgets.append(self.widget(attrs=a))
super().__init__(widgets, attrs)
@@ -245,7 +251,10 @@ class NamePartsFormField(forms.MultiValueField):
d.pop('validators', None)
field = forms.ChoiceField(
**d,
choices=[('', '---'), ('empty', '')] + PERSON_NAME_SALUTATIONS
choices=[
('', '---'),
('empty', '({})'.format(pgettext_lazy("name_salutation", "not specified"))),
] + PERSON_NAME_SALUTATIONS
)
else:
field = forms.CharField(**defaults)

View File

@@ -330,18 +330,18 @@ class BasePaymentProvider:
label=_('Enable payment method'),
required=False,
)),
('_availability_date',
RelativeDateField(
label=_('Available until'),
help_text=_('Users will not be able to choose this payment provider after the given date.'),
required=False,
)),
('_availability_start',
RelativeDateField(
label=_('Available from'),
help_text=_('Users will not be able to choose this payment provider before the given date.'),
required=False,
)),
('_availability_date',
RelativeDateField(
label=_('Available until'),
help_text=_('Users will not be able to choose this payment provider after the given date.'),
required=False,
)),
('_total_min',
forms.DecimalField(
label=_('Minimum order total'),

View File

@@ -2987,7 +2987,7 @@ Your {organizer} team""")) # noqa: W291
help_text=_('This picture will be used as a preview if you post links to your ticket shop on social media. '
'Facebook advises to use a picture size of 1200 x 630 pixels, however some platforms like '
'WhatsApp and Reddit only show a square preview, so we recommend to make sure it still looks good '
'only the center square is shown. If you do not fill this, we will use the logo given above.')
'if only the center square is shown. If you do not fill this, we will use the logo given above.')
),
'serializer_class': UploadedFileField,
'serializer_kwargs': dict(

View File

@@ -13,7 +13,7 @@
{% endfor %}
<p>
{% blocktrans trimmed count count=cnt %}
Are you sure you want to permanently delete the check-ins of <strong>one ticket</strong>.
Are you sure you want to permanently delete the check-ins of <strong>one ticket</strong>?
{% plural %}
Are you sure you want to permanently delete the check-ins of <strong>{{ count }} tickets</strong>?
{% endblocktrans %}

View File

@@ -104,9 +104,26 @@ class BaseEditorView(EventPermissionRequiredMixin, TemplateView):
scheme = PERSON_NAME_SCHEMES[self.request.event.settings.name_scheme]
sample = {k: str(v) for k, v in scheme['sample'].items()}
p = order.positions.create(item=item, attendee_name_parts=sample, price=item.default_price)
order.positions.create(item=item2, attendee_name_parts=sample, price=item.default_price, addon_to=p)
order.positions.create(item=item2, attendee_name_parts=sample, price=item.default_price, addon_to=p)
p = order.positions.create(
item=item,
attendee_name_parts=sample,
company=_("Sample company"),
price=item.default_price
)
order.positions.create(
item=item2,
attendee_name_parts=sample,
company=_("Sample company"),
price=item.default_price,
addon_to=p
)
order.positions.create(
item=item2,
attendee_name_parts=sample,
company=_("Sample company"),
price=item.default_price,
addon_to=p
)
InvoiceAddress.objects.create(order=order, name_parts=sample, company=_("Sample company"))
return p

View File

@@ -10260,7 +10260,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11933,7 +11933,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"سيتم استخدام هذه الصورة كمعاينة إذا قمت بنشر روابط لمتجر التذاكر الخاص بك "

View File

@@ -10262,7 +10262,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -12016,7 +12016,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11422,7 +11422,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Tento obrázek bude použit jako náhled, pokud na sociálních sítích zveřejníte "

View File

@@ -10279,7 +10279,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11447,7 +11447,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11764,7 +11764,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Dieses Bild wird als Vorschau in sozialen Medien verwendet, wenn Sie den "

View File

@@ -11744,7 +11744,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Dieses Bild wird als Vorschau in sozialen Medien verwendet, wenn du den "

View File

@@ -10261,7 +10261,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -12421,7 +12421,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -10260,7 +10260,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11738,7 +11738,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Esta imagen se utilizará como vista previa si publica enlaces a su taquilla "

View File

@@ -10262,7 +10262,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11632,7 +11632,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Irudi hau aurrebistako erabiliko da zure sarrera-dendako estekak sare "

View File

@@ -11536,7 +11536,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Tätä kuvaa käytetään esikatseluna, jos julkaiset linkkejä lippukauppaasi "

View File

@@ -10281,7 +10281,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11861,7 +11861,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Cette photo sera utilisée comme aperçu si vous publiez des liens vers votre "

View File

@@ -12257,7 +12257,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -10282,7 +10282,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -10781,7 +10781,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -10819,7 +10819,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11710,7 +11710,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Gambar ini akan digunakan sebagai pratinjau jika kamu memposting link ke "

View File

@@ -10949,7 +10949,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11418,7 +11418,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"この画像は、SNSでチケットショップのリンクを投稿する際のプレビューとして使用さ"

View File

@@ -10274,7 +10274,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -10263,7 +10263,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11177,7 +11177,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -10260,7 +10260,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11751,7 +11751,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Dette bildet vil bli brukt som en forhåndsvisning hvis du deler lenker til "

View File

@@ -11705,7 +11705,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Deze afbeelding zal worden gebruikt als u links naar uw ticketwinkel op "

View File

@@ -11988,7 +11988,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Deze afbeelding zal als voorvertoning worden gebruikt als je links naar je "

View File

@@ -11634,7 +11634,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Ten obraz będzie używany jako podgląd, jeśli opublikujesz linki do swojego "

View File

@@ -10461,7 +10461,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -10432,7 +10432,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11646,7 +11646,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Esta imagem será usada como uma prévia se você postar links para sua loja de "

View File

@@ -11759,7 +11759,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Esta imagem será usada como uma visualização prévia se postar links para a "

View File

@@ -12128,7 +12128,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Această imagine va fi folosită ca o previzualizare dacă postați linkuri "

View File

@@ -11545,7 +11545,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -10292,7 +10292,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11506,7 +11506,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Tento obrázok sa použije ako náhľad, ak na sociálnych sieťach zverejníte "

View File

@@ -11493,7 +11493,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -10260,7 +10260,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11582,7 +11582,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Denna bild kommer att användas som förhandsgranskning om du delar länkar "

View File

@@ -10262,7 +10262,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -12385,7 +12385,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11956,7 +11956,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"Це зображення буде використано для попереднього перегляду, якщо ви "

View File

@@ -10267,7 +10267,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -10260,7 +10260,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -11829,7 +11829,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""

View File

@@ -10949,7 +10949,7 @@ msgid ""
"This picture will be used as a preview if you post links to your ticket shop "
"on social media. Facebook advises to use a picture size of 1200 x 630 "
"pixels, however some platforms like WhatsApp and Reddit only show a square "
"preview, so we recommend to make sure it still looks good only the center "
"preview, so we recommend to make sure it still looks good if only the center "
"square is shown. If you do not fill this, we will use the logo given above."
msgstr ""
"如果你在社交媒體上發佈連向售票處的連結此圖片將用作預覽。Facebook建議使用"

View File

@@ -11,7 +11,7 @@
<a class="btn btn-primary btn-lg" target="_blank"
href="{% url "plugins:ticketoutputpdf:getdefault" organizer=request.organizer.slug event=request.event.slug %}">
<span class="fa fa-paint-brush"></span>
{% trans "Open Layout Designer" %}
{% trans "Open layout editor" %}
</a>
<a class="btn btn-default btn-lg" target="_blank"
href="{% url "plugins:ticketoutputpdf:index" organizer=request.organizer.slug event=request.event.slug %}">

View File

@@ -257,21 +257,18 @@ class RegistrationForm(forms.Form):
return self.cleaned_data
def create(self):
customer, created = self.request.organizer.customers.get_or_create(
customer = self.request.organizer.customers.create(
email=self.cleaned_data['email'],
defaults={
"name_parts": self.cleaned_data['name_parts'],
"phone": self.cleaned_data.get('phone'),
"is_active": True,
"is_verified": False,
"locale": get_language_without_region(),
}
name_parts=self.cleaned_data['name_parts'],
phone=self.cleaned_data.get('phone'),
is_active=True,
is_verified=False,
locale=get_language_without_region(),
)
if created:
customer.set_unusable_password()
customer.save()
customer.log_action('pretix.customer.created', {})
customer.send_activation_mail()
customer.set_unusable_password()
customer.save()
customer.log_action('pretix.customer.created', {})
customer.send_activation_mail()
return customer