Compare commits

...

9 Commits

Author SHA1 Message Date
Raphael Michel
121a2cea11 Order: Use different icon for non-consuming check-in list (Z#23184645) 2025-03-16 15:19:18 +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
Richard Schreiber
032be74d77 Add min/max-limit on giftcard_expiry_years 2025-03-12 08:54:40 +01:00
Raphael Michel
e2e811ea47 Search engines: Do not index event lists for specific dates (#23185037) (#4901) 2025-03-11 16:09:40 +01:00
60 changed files with 88 additions and 65 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

@@ -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(
@@ -3291,6 +3291,8 @@ Your {organizer} team""")) # noqa: W291
label=_('Validity of gift card codes in years'),
help_text=_('If you set a number here, gift cards will by default expire at the end of the year after this '
'many years. If you keep it empty, gift cards do not have an explicit expiry date.'),
min_value=0,
max_value=99,
)
},
'cookie_consent': {

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

@@ -397,7 +397,7 @@
{% elif c.auto_checked_in %}
<span class="fa fa-fw fa-magic text-success" data-toggle="tooltip_html" title="{{ c.list.name|force_escape|force_escape }}<br>{% blocktrans trimmed with date=c.datetime|date:'SHORT_DATETIME_FORMAT' %}Automatically checked in: {{ date }}{% endblocktrans %}{% if c.gate %}<br>{{ c.gate }}{% endif %}"></span>
{% else %}
<span class="fa fa-fw fa-check {% if c.list.consider_tickets_used %}text-success{% else %}text-muted{% endif %}" data-toggle="tooltip_html" title="{{ c.list.name|force_escape|force_escape }}<br>{% blocktrans trimmed with date=c.datetime|date:'SHORT_DATETIME_FORMAT' %}Entry scan: {{ date }}{% endblocktrans %}{% if c.gate %}<br>{{ c.gate }}{% endif %}"></span>
<span class="fa fa-fw {% if c.list.consider_tickets_used %}text-success fa-check{% else %}text-muted fa-check-circle-o{% endif %}" data-toggle="tooltip_html" title="{{ c.list.name|force_escape|force_escape }}<br>{% blocktrans trimmed with date=c.datetime|date:'SHORT_DATETIME_FORMAT' %}Entry scan: {{ date }}{% endblocktrans %}{% if c.gate %}<br>{{ c.gate }}{% endif %}"></span>
{% endif %}
{% endfor %}
{% endif %}

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

@@ -15,6 +15,8 @@
{% block custom_header %}
{% if event.settings.meta_noindex %}
<meta name="robots" content="noindex, nofollow">
{% elif "date" in request.GET or "old" in request.GET %}
<meta name="robots" content="noindex, follow">
{% endif %}
<meta property="og:type" content="website" />
{% if social_image %}

View File

@@ -11,6 +11,8 @@
{% block custom_header %}
{% if organizer.settings.meta_noindex %}
<meta name="robots" content="noindex, nofollow">
{% elif "date" in request.GET or "old" in request.GET %}
<meta name="robots" content="noindex, follow">
{% endif %}
<meta property="og:type" content="website" />