Compare commits

..
178 changed files with 10324 additions and 44028 deletions
+1 -2
View File
@@ -351,8 +351,7 @@ Endpoints
:<json boolean error_reason: One of ``canceled``, ``invalid``, ``unpaid``, ``product``, ``rules``, ``revoked``,
``incomplete``, ``already_redeemed``, ``blocked``, ``invalid_time``, or ``error``. Required.
:<json raw_barcode: The raw barcode or identifier you scanned. Required.
:<json raw_source_type: The type of medium you scanned, defaults to ``barcode``. Optional.
:<json raw_barcode: The raw barcode you scanned. Required.
:<json datetime: Date and time of the scan. Optional.
:<json type: Type of scan, defaults to ``"entry"``.
:<json position: Internal ID of an order position you matched. Optional.
+1 -1
View File
@@ -53,7 +53,7 @@ Working with the code
---------------------
If you do not have a recent installation of ``nodejs``, install it now::
curl -sL https://deb.nodesource.com/setup_24.x | sudo -E bash -
curl -sL https://deb.nodesource.com/setup_17.x | sudo -E bash -
sudo apt install nodejs
To make sure it is on your path variable, close and reopen your terminal. Now, install the Python-level dependencies of pretix::
+4 -4
View File
@@ -41,9 +41,9 @@ dependencies = [
"django-bootstrap3==26.1",
"django-compressor==4.6.0",
"django-countries==8.2.*",
"django-filter==26.1",
"django-filter==25.1",
"django-formset-js-improved==0.5.0.5",
"django-formtools==2.7",
"django-formtools==2.6.1",
"django-hierarkey==2.0.*,>=2.0.1",
"django-hijack==3.7.*",
"django-i18nfield==1.11.*",
@@ -94,7 +94,7 @@ dependencies = [
"redis==7.4.*",
"reportlab==5.0.*",
"requests==2.34.*",
"sentry-sdk==2.65.*",
"sentry-sdk==2.64.*",
"sepaxml==2.7.*",
"stripe==7.9.*",
"text-unidecode==1.*",
@@ -102,7 +102,7 @@ dependencies = [
"tqdm==4.*",
"ua-parser==1.0.*",
"vobject==0.9.*",
"webauthn==3.0.*",
"webauthn==2.8.*",
"zeep==4.3.*"
]
-28
View File
@@ -20,7 +20,6 @@
# <https://www.gnu.org/licenses/>.
#
import json
import re
from django.db.models import prefetch_related_objects
from rest_framework import serializers
@@ -136,30 +135,3 @@ class SalesChannelMigrationMixin:
else:
value["sales_channels"] = value["limit_sales_channels"]
return value
class CompatDecimalField(serializers.DecimalField):
"""
Historically, pretix recorded tax rates as decimals with two places. Today, pretix supports tax rates with up to
four places. Since our API outputs decimals with the stored precision, this would have changed the API output from
"19.00" to "19.0000" without warning. While this is semantically the same thing, we need to assume some pretix API
users might run into trouble, either because they treat the value as a string and then map something
(e.g. ``if tax_rate == "19.00"``) or process it with a language where this is a significant difference. For example,
while in Python ``Decimal("19.00") == Decimal("19.0000")`` is true, in Java
``(new BigDecimal("19.00")).equals(new BigDecimal("19.0000"))`` is false and only
``(new BigDecimal("19.00")).compareTo(new BigDecimal("19.0000")) == 0`` is true.
Therefore, we stay backwards compatible by outputting two decimal places *as long as the trailing digits are zero-valued.
"""
regex = re.compile(r"^([0-9]+\.[0-9]{2})0+$")
def to_representation(self, value):
if self.localize:
raise ValueError("localization not supported")
value = super().to_representation(value)
if value and "." not in value:
return f"{value}.00"
if m := self.regex.match(value):
return m.group(1)
return value
+1 -2
View File
@@ -48,7 +48,7 @@ from rest_framework.fields import ChoiceField, Field
from rest_framework.relations import SlugRelatedField
from pretix.api.serializers import (
CompatDecimalField, CompatibleJSONField, SalesChannelMigrationMixin,
CompatibleJSONField, SalesChannelMigrationMixin,
)
from pretix.api.serializers.fields import PluginsField
from pretix.api.serializers.i18n import I18nAwareModelSerializer
@@ -681,7 +681,6 @@ class TaxRuleSerializer(CountryFieldMixin, I18nAwareModelSerializer):
required=False,
allow_null=True,
)
rate = CompatDecimalField(max_digits=7, decimal_places=4)
class Meta:
model = TaxRule
+4 -6
View File
@@ -42,9 +42,7 @@ from django.utils.functional import cached_property, lazy
from django.utils.translation import gettext_lazy as _
from rest_framework import serializers
from pretix.api.serializers import (
CompatDecimalField, SalesChannelMigrationMixin,
)
from pretix.api.serializers import SalesChannelMigrationMixin
from pretix.api.serializers.event import MetaDataField
from pretix.api.serializers.fields import UploadedFileField
from pretix.api.serializers.i18n import I18nAwareModelSerializer
@@ -278,10 +276,10 @@ class ItemAddOnSerializer(serializers.ModelSerializer):
return value
class ItemTaxRateField(CompatDecimalField):
class ItemTaxRateField(serializers.Field):
def to_representation(self, i):
if i.tax_rule:
return super().to_representation(Decimal(i.tax_rule.rate))
return str(Decimal(i.tax_rule.rate))
else:
return str(Decimal('0.00'))
@@ -291,7 +289,7 @@ class ItemSerializer(SalesChannelMigrationMixin, I18nAwareModelSerializer):
bundles = InlineItemBundleSerializer(many=True, required=False)
variations = InlineItemVariationSerializer(many=True, required=False)
program_times = InlineItemProgramTimeSerializer(many=True, required=False)
tax_rate = ItemTaxRateField(source='*', read_only=True, max_digits=7, decimal_places=4)
tax_rate = ItemTaxRateField(source='*', read_only=True)
meta_data = MetaDataField(required=False, source='*')
picture = UploadedFileField(required=False, allow_null=True, allowed_types=(
'image/png', 'image/jpeg', 'image/gif'
+2 -9
View File
@@ -41,7 +41,7 @@ from rest_framework.exceptions import ValidationError
from rest_framework.relations import SlugRelatedField
from rest_framework.reverse import reverse
from pretix.api.serializers import CompatDecimalField, CompatibleJSONField
from pretix.api.serializers import CompatibleJSONField
from pretix.api.serializers.event import SubEventSerializer
from pretix.api.serializers.forms import form_field_to_serializer_field
from pretix.api.serializers.i18n import I18nAwareModelSerializer
@@ -52,7 +52,6 @@ from pretix.api.signals import order_api_details, orderposition_api_details
from pretix.base.decimal import round_decimal
from pretix.base.i18n import language
from pretix.base.invoicing.transmission import get_transmission_types
from pretix.base.media import MEDIA_TYPES
from pretix.base.models import (
CachedFile, Checkin, Customer, Device, GiftCard, Invoice, InvoiceAddress,
InvoiceLine, Item, ItemVariation, Order, OrderPosition, Question,
@@ -382,7 +381,6 @@ class PrintLogSerializer(serializers.ModelSerializer):
class FailedCheckinSerializer(I18nAwareModelSerializer):
error_reason = serializers.ChoiceField(choices=Checkin.REASONS, required=True, allow_null=False)
raw_barcode = serializers.CharField(required=True, allow_null=False)
raw_source_type = serializers.ChoiceField(choices=[(k, v) for k, v in MEDIA_TYPES.items()], default='barcode')
position = serializers.PrimaryKeyRelatedField(queryset=OrderPosition.all.none(), required=False, allow_null=True)
raw_item = serializers.PrimaryKeyRelatedField(queryset=Item.objects.none(), required=False, allow_null=True)
raw_variation = serializers.PrimaryKeyRelatedField(queryset=ItemVariation.objects.none(), required=False, allow_null=True)
@@ -392,7 +390,7 @@ class FailedCheckinSerializer(I18nAwareModelSerializer):
class Meta:
model = Checkin
fields = ('error_reason', 'error_explanation', 'raw_barcode', 'raw_item', 'raw_variation',
'raw_subevent', 'raw_source_type', 'nonce', 'datetime', 'type', 'position')
'raw_subevent', 'nonce', 'datetime', 'type', 'position')
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
@@ -593,7 +591,6 @@ class OrderPositionSerializer(I18nAwareModelSerializer):
country = CompatibleCountryField(source='*')
attendee_name = serializers.CharField(required=False)
plugin_data = OrderPositionPluginDataField(source='*', allow_null=True, read_only=True)
tax_rate = CompatDecimalField(max_digits=7, decimal_places=4)
class Meta:
list_serializer_class = OrderPositionListSerializer
@@ -750,8 +747,6 @@ class OrderPaymentDateField(serializers.DateField):
class OrderFeeSerializer(I18nAwareModelSerializer):
tax_rate = CompatDecimalField(max_digits=7, decimal_places=4)
class Meta:
model = OrderFee
fields = ('id', 'fee_type', 'value', 'description', 'internal_type', 'tax_rate', 'tax_value', 'tax_rule',
@@ -1916,7 +1911,6 @@ class InlineInvoiceLineSerializer(I18nAwareModelSerializer):
position = LinePositionField(read_only=True)
event_date_from = serializers.DateTimeField(read_only=True, source="period_start")
event_date_to = serializers.DateTimeField(read_only=True, source="period_end")
tax_rate = CompatDecimalField(max_digits=7, decimal_places=4)
class Meta:
model = InvoiceLine
@@ -2000,7 +1994,6 @@ class BlockedTicketSecretSerializer(I18nAwareModelSerializer):
class TransactionSerializer(I18nAwareModelSerializer):
order = serializers.SlugRelatedField(slug_field="code", read_only=True)
tax_rate = CompatDecimalField(max_digits=7, decimal_places=4)
class Meta:
model = Transaction
+9 -22
View File
@@ -53,7 +53,6 @@ from django.db.models import QuerySet
from django.forms import Select, widgets
from django.forms.widgets import FILE_INPUT_CONTRADICTION
from django.utils.formats import date_format
from django.utils.functional import lazy
from django.utils.html import escape
from django.utils.safestring import mark_safe
from django.utils.text import format_lazy
@@ -325,21 +324,16 @@ class WrappedPhonePrefixSelect(Select):
initial = None
def __init__(self, initial=None):
def _get_choices():
choices = [("", "---------")]
if initial:
for prefix, values in COUNTRY_CODE_TO_REGION_CODE.items():
if all(v == REGION_CODE_FOR_NON_GEO_ENTITY for v in values):
continue
if initial in values:
self.initial = "+%d" % prefix
break
choices += get_phone_prefixes_sorted_and_localized()
return choices
choices = lazy(_get_choices, list)()
choices = [("", "---------")]
if initial:
for prefix, values in COUNTRY_CODE_TO_REGION_CODE.items():
if all(v == REGION_CODE_FOR_NON_GEO_ENTITY for v in values):
continue
if initial in values:
self.initial = "+%d" % prefix
break
choices += get_phone_prefixes_sorted_and_localized()
super().__init__(choices=choices, attrs={
'aria-label': pgettext_lazy('phonenumber', 'International area code'),
'autocomplete': 'tel-country-code',
@@ -1116,13 +1110,6 @@ class BaseQuestionsForm(forms.Form):
if q.dependency_question_id and not question_is_visible(q.dependency_question_id, q.dependency_values) and answer is not None:
d['question_%d' % q.pk] = None
# Strip False answers to required yes/no questions even if all_optional is set, as our data model assumes that
# required yes/no questions can only be answered with yes
for q in question_cache.values():
if q.required and q.type == Question.TYPE_BOOLEAN:
if 'question_%d' % q.pk in d and d['question_%d' % q.pk] is False:
del d['question_%d' % q.pk]
return d
@@ -1,29 +0,0 @@
#
# This file is part of pretix (Community Edition).
#
# Copyright (C) 2014-2020 Raphael Michel and contributors
# Copyright (C) 2020-today pretix GmbH and contributors
#
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
# Public License as published by the Free Software Foundation in version 3 of the License.
#
# ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are
# applicable granting you additional permissions and placing additional restrictions on your usage of this software.
# Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive
# this file, see <https://pretix.eu/about/en/license>.
#
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
# details.
#
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
# <https://www.gnu.org/licenses/>.
#
from django.core.management.base import BaseCommand
class Command(BaseCommand):
help = "Do nothing. Useful for startup performance testing."
def handle(self, *args, **options):
pass
@@ -40,7 +40,6 @@ from django.core.cache import cache
from django.core.management.base import BaseCommand
from django.db import close_old_connections
from django.dispatch.dispatcher import NO_RECEIVERS
from django_querytagger.tagging import with_tag
from pretix.helpers.periodic import SKIPPED
@@ -83,8 +82,7 @@ class Command(BaseCommand):
try:
# Check if the DB connection is still good, it might be closed if the previous task took too long.
close_old_connections()
with with_tag(f"periodictask={name}"):
r = receiver(signal=periodic_task, sender=self)
r = receiver(signal=periodic_task, sender=self)
except Exception as err:
if isinstance(err, KeyboardInterrupt):
raise err
+1 -22
View File
@@ -266,22 +266,6 @@ def _merge_csp(a, b):
class SecurityMiddleware(MiddlewareMixin):
SAFE_TYPES = (
# CSP policies are only used for:
# - HTML and SVG in top-level contexts
# - SVG or JS Workers delivered in embedded contexts
# See: https://www.w3.org/TR/CSP2/#which-policy-applies
# Therefore, we can save bandwidth on not including our (sometimes huge) policy
# on API responses or CSS. We do however include it with other types as a precaution
# (whitelist instead of blacklist) and we also do not whitelist JavaScript in
# we ever add service workers to not break the protection of this feature:
# https://www.w3.org/TR/CSP2/#sandboxing-and-workers
'application/json',
'text/css',
# We used to skip CSP for PDF since it was necessary for inline previews in Safari,
# but at the moment it does not seem to be an issue to just send it.
)
def process_response(self, request, resp):
if settings.DEBUG and resp.status_code >= 400:
# Don't use CSP on debug error page as it breaks of Django's fancy error
@@ -293,11 +277,6 @@ class SecurityMiddleware(MiddlewareMixin):
# https://github.com/pretix/pretix/issues/765
resp['P3P'] = 'CP=\"ALL DSP COR CUR ADM TAI OUR IND COM NAV INT\"'
if "Content-Type" in resp and resp["Content-Type"].split(";")[0] in self.SAFE_TYPES:
if 'Content-Security-Policy' in resp:
del resp['Content-Security-Policy']
return resp
if not getattr(resp, '_csp_ignore', False):
resp['Content-Security-Policy'] = _render_csp(self._build_csp(request, resp))
elif 'Content-Security-Policy' in resp:
@@ -314,7 +293,7 @@ class SecurityMiddleware(MiddlewareMixin):
'object-src': ["'none'"],
'frame-src': ['{static}'],
'style-src': ["{static}", "{media}"],
'connect-src': ["{static}", "{dynamic}", "{media}"],
'connect-src': ["{dynamic}", "{media}"],
'img-src': ["{static}", "{media}", "data:"],
'font-src': ["{static}"],
'media-src': ["{static}", "data:"],
@@ -1,58 +0,0 @@
# Generated by Django 4.2.8 on 2024-07-01 09:27
import logging
from django.db import migrations
from django.db.models import Count
logger = logging.getLogger(__name__)
def clean_duplicate_secrets(apps, schema_editor):
# This will autofix all possible duplicate Order.code and OrderPosition.secret values,
# unless Order.code is already too long to append something. This would need to be fixed by
# sysadmins manually.
OrderPosition = apps.get_model("pretixbase", "OrderPosition")
Order = apps.get_model("pretixbase", "Order")
qs = OrderPosition.all.values("secret", "order__event__organizer_id").order_by().annotate(c=Count("*")).filter(c__gt=1)
for row in qs:
affected = OrderPosition.all.filter(
**{k: v for k, v in row.items() if k != "c"}
).order_by("pk")
logger.error(f"Found {row['c']} tickets with with the same secret \"{row['secret']}\" in organizer {row['order__event__organizer_id']}, all except one will be changed")
for i, a in enumerate(affected):
if i > 0:
a.secret = a.secret + "__dupl__" + str(a.pk)
logger.info(
f"Ticket {a.pk} has new secret {a.secret}"
)
a.save(update_fields=["organizer_id", "secret"])
qs = Order.objects.values("code", "event__organizer_id").order_by().annotate(c=Count("*")).filter(c__gt=1)
for row in qs:
affected = Order.objects.filter(
**{k: v for k, v in row.items() if k != "c"}
).order_by("pk")
logger.error(f"Found {row['c']} orders with with the same code \"{row['code']}\" in organizer {row['event__organizer_id']}, all except one will be changed")
for i, a in enumerate(affected):
if i > 0:
if len(a.code) > 16 - len(str(a.pk)):
raise ValueError(f"Cannot auto-fix order with duplicate code {a.code}, order code is too long already")
a.code = a.code + str(a.pk).zfill(16 - len(a.code))
logger.info(
f"Order {a.pk} has new code {a.code}"
)
a.save(update_fields=["organizer_id", "code"])
class Migration(migrations.Migration):
dependencies = [
(
"pretixbase",
"0301_reusablemedium_remove_orderposition",
),
]
operations = [
migrations.RunPython(clean_duplicate_secrets, migrations.RunPython.noop),
]
@@ -1,46 +0,0 @@
# Generated by Django 4.2.8 on 2024-07-01 09:27
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
(
"pretixbase",
"0302_resolve_duplicate_codes_and_secrets",
),
]
operations = [
migrations.RunSQL(
"UPDATE pretixbase_order "
"SET organizer_id = (SELECT e.organizer_id FROM pretixbase_event e WHERE e.id = pretixbase_order.event_id) "
"WHERE pretixbase_order.organizer_id IS NULL;",
migrations.RunSQL.noop,
),
migrations.RunSQL(
"UPDATE pretixbase_orderposition "
"SET organizer_id = (SELECT e.organizer_id FROM pretixbase_order o LEFT JOIN pretixbase_event e ON e.id = o.event_id WHERE o.id = pretixbase_orderposition.order_id) "
"WHERE pretixbase_orderposition.organizer_id IS NULL;",
migrations.RunSQL.noop,
),
migrations.AlterField(
model_name="order",
name="organizer",
field=models.ForeignKey(
on_delete=django.db.models.deletion.CASCADE,
related_name="orders",
to="pretixbase.organizer",
),
),
migrations.AlterField(
model_name="orderposition",
name="organizer",
field=models.ForeignKey(
on_delete=django.db.models.deletion.CASCADE,
related_name="order_positions",
to="pretixbase.organizer",
),
),
]
@@ -1,48 +0,0 @@
# Generated by Django 5.2.12 on 2026-04-15 20:10
from decimal import Decimal
from django.db import migrations, models
import pretix.helpers.models
class Migration(migrations.Migration):
dependencies = [
('pretixbase', '0303_alter_order_organizer_alter_orderposition_organizer'),
]
operations = [
migrations.AlterField(
model_name='cartposition',
name='tax_rate',
field=pretix.helpers.models.NormalizedDecimalField(decimal_places=4, default=Decimal('0'), max_digits=7),
),
migrations.AlterField(
model_name='invoiceline',
name='tax_rate',
field=pretix.helpers.models.NormalizedDecimalField(decimal_places=4, default=Decimal('0'), max_digits=7),
),
migrations.AlterField(
model_name='orderfee',
name='tax_rate',
field=pretix.helpers.models.NormalizedDecimalField(decimal_places=4, max_digits=7),
),
migrations.AlterField(
model_name='orderposition',
name='tax_rate',
field=pretix.helpers.models.NormalizedDecimalField(decimal_places=4, max_digits=7),
),
migrations.AlterField(
model_name='transaction',
name='tax_rate',
field=pretix.helpers.models.NormalizedDecimalField(decimal_places=4, max_digits=7),
),
migrations.AlterField(
model_name='taxrule',
name='rate',
field=pretix.helpers.models.NormalizedDecimalField(decimal_places=4, max_digits=7),
),
]
@@ -1,91 +0,0 @@
# Generated by Django 5.2.12 on 2026-04-28 11:34
import logging
from django.db import IntegrityError, migrations, transaction
from django.db.models import Count, F
logger = logging.getLogger(__name__)
def fix_cross_organizer_eventmetavalues(apps, schema_editor):
EventMetaProperty = apps.get_model("pretixbase", "EventMetaProperty")
EventMetaValue = apps.get_model("pretixbase", "EventMetaValue")
cross_org_values = EventMetaValue.objects.filter(
event__organizer__pk__ne=F('property__organizer__pk')
).order_by('event__organizer__slug', 'event__slug')
for emv in cross_org_values:
logger.warning("%s", f"Fixing cross-organizer EventMetaValue: {emv.event.organizer.slug}/{emv.event.slug}")
logger.warning(" %s", f"{emv.property.name}({emv.property.id}@{emv.property.organizer.slug}) = {repr(emv.value)}")
try:
emv.property = emv.event.organizer.meta_properties.get(name=emv.property.name)
if EventMetaValue.objects.filter(event=emv.event, property=emv.property).exists():
correct = EventMetaValue.objects.get(event=emv.event, property=emv.property)
if correct.value != emv.value:
logger.warning(" %s", f"WARN: conflicting EventMetaValue with property in correct organizer already exists, deleting the cross-organizer one")
else:
logger.warning(" %s", f"OK: same-value EventMetaValue with property in correct organizer already exists, deleting the cross-organizer one")
logger.warning(" %s", f"keeping: {correct.property.name}({correct.property.id}@{correct.property.organizer.slug}) = {repr(correct.value)}")
emv.delete()
else:
logger.warning(" %s", f"OK: found existing EventMetaProperty in {emv.event.organizer.slug}, updating reference")
logger.warning(" %s", f"after: {emv.property.name}({emv.property.id}@{emv.property.organizer.slug}) = {repr(emv.value)}")
emv.save(update_fields=["property"])
except EventMetaProperty.DoesNotExist:
meta_prop = emv.property
meta_prop.pk = None
meta_prop.organizer = emv.event.organizer
meta_prop.filter_public = False
meta_prop.save(force_insert=True)
logger.warning(" %s", f"WARN: found no matching EventMetaProperty, creating")
logger.warning(" %s", f"after: {emv.property.name}({emv.property.id}@{emv.property.organizer.slug}) = {repr(emv.value)}")
emv.save(update_fields=["property"])
def make_eventmetaproperties_unique(apps, schema_editor):
EventMetaProperty = apps.get_model("pretixbase", "EventMetaProperty")
EventMetaValue = apps.get_model("pretixbase", "EventMetaValue")
duplicates = EventMetaProperty.objects.values('organizer', 'organizer__slug', 'name').annotate(count=Count('id')).filter(count__gt=1)
for dup in duplicates:
logger.warning("%s", f"Fixup duplicate property {dup['organizer__slug']} {dup['name']}")
props = list(EventMetaProperty.objects.filter(organizer=dup['organizer'], name=dup['name']))
target = props[0]
invalid = props[1:]
try:
with transaction.atomic():
affected = EventMetaValue.objects.filter(
event__organizer=dup['organizer'], property__in=invalid
).update(
property=target
)
logger.warning("%s", f" Switching {affected} value(s) over to {target.name}({target.id}@{target.organizer.slug})")
except IntegrityError as e:
logger.warning("%s", f" Failed to switch all value(s) over to {target.name}({target.id}@{target.organizer.slug})")
logger.warning("%s", f" {e}")
for prop in invalid:
newname = f'{prop.name}_DUPLICATE_{prop.id}'
logger.warning("%s", f" Renaming {prop.name}({prop.id}@{prop.organizer.slug}) to {newname}({prop.id}@{prop.organizer.slug})")
prop.name = newname
prop.filter_public = False
prop.save()
else:
for prop in invalid:
logger.warning("%s", f" Deleting {prop.name}({prop.id}@{prop.organizer.slug})")
prop.delete()
class Migration(migrations.Migration):
dependencies = [
("pretixbase", "0304_tax_rate_decimals"),
]
operations = [
migrations.RunPython(fix_cross_organizer_eventmetavalues, migrations.RunPython.noop),
migrations.RunPython(make_eventmetaproperties_unique, migrations.RunPython.noop),
]
@@ -1,17 +0,0 @@
# Generated by Django 5.2.12 on 2026-04-28 11:34
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("pretixbase", "0305_fixup_eventmetaproperties"),
]
operations = [
migrations.AlterUniqueTogether(
name="eventmetaproperty",
unique_together={("organizer", "name")},
),
]
+10 -8
View File
@@ -649,7 +649,7 @@ class Event(EventMixin, LoggedModel):
is_remote = models.BooleanField(
default=False,
verbose_name=_("This event is remote or partially remote."),
help_text=_("This will be used to let users know if the event is in a different timezone, and to let us calculate the local time of a user."),
help_text=_("This will be used to let users know if the event is in a different timezone and lets us calculate users local times."),
)
geo_lat = models.FloatField(
verbose_name=_("Latitude"),
@@ -1403,12 +1403,15 @@ class Event(EventMixin, LoggedModel):
for mp in self.organizer.meta_properties.all():
if mp.required and not self.meta_data.get(mp.name):
issues.append(format_html(
'<a href="{href}{href_hash}">{text}</a>',
text=gettext('You need to fill the meta parameter "{property}".').format(property=mp.name),
href=reverse('control:event.settings', kwargs={'organizer': self.organizer.slug, 'event': self.slug}),
href_hash=f'#id_prop-{mp.pk}-value',
))
issues.append(
('<a {a_attr}>' + gettext('You need to fill the meta parameter "{property}".') + '</a>').format(
property=mp.name,
a_attr='href="%s#id_prop-%d-value"' % (
reverse('control:event.settings', kwargs={'organizer': self.organizer.slug, 'event': self.slug}),
mp.pk
)
)
)
responses = event_live_issues.send(self)
for receiver, response in sorted(responses, key=lambda r: str(r[0])):
@@ -1851,7 +1854,6 @@ class EventMetaProperty(LoggedModel):
class Meta:
ordering = ("position", "name",)
unique_together = ('organizer', 'name')
@property
def choice_keys(self):
+1 -2
View File
@@ -49,7 +49,6 @@ from django_scopes import ScopedManager
from pretix.base.settings import COUNTRIES_WITH_STATE_IN_ADDRESS
from pretix.helpers.countries import FastCountryField
from pretix.helpers.models import NormalizedDecimalField
def invoice_filename(instance, filename: str) -> str:
@@ -451,7 +450,7 @@ class InvoiceLine(models.Model):
description = models.TextField()
gross_value = models.DecimalField(max_digits=13, decimal_places=2)
tax_value = models.DecimalField(max_digits=13, decimal_places=2, default=Decimal('0.00'))
tax_rate = NormalizedDecimalField(max_digits=7, decimal_places=4, default=Decimal('0'))
tax_rate = models.DecimalField(max_digits=7, decimal_places=2, default=Decimal('0.00'))
tax_name = models.CharField(max_length=190)
tax_code = models.CharField(max_length=190, null=True, blank=True)
subevent = models.ForeignKey('SubEvent', null=True, blank=True, on_delete=models.PROTECT)
+36
View File
@@ -885,6 +885,26 @@ class Item(LoggedModel):
return False
return True
def unavailability_reason(self, now_dt: datetime=None, has_voucher=False, subevent=None) -> Optional[str]:
now_dt = now_dt or time_machine_now()
subevent_item = subevent and subevent.item_overrides.get(self.pk)
if not self.active:
return 'active'
elif self.available_from and self.available_from > now_dt:
return 'available_from'
elif self.available_until and self.available_until < now_dt:
return 'available_until'
elif (self.require_voucher or self.hide_without_voucher) and not has_voucher:
return 'require_voucher'
elif subevent_item and subevent_item.available_from and subevent_item.available_from > now_dt:
return 'available_from'
elif subevent_item and subevent_item.available_until and subevent_item.available_until < now_dt:
return 'available_until'
elif self.hidden_if_item_available and self._dependency_available:
return 'hidden_if_item_available'
else:
return None
def _get_quotas(self, ignored_quotas=None, subevent=None):
check_quotas = set(getattr(
self, '_subevent_quotas', # Utilize cache in product list
@@ -1393,6 +1413,22 @@ class ItemVariation(models.Model):
return False
return True
def unavailability_reason(self, now_dt: datetime=None, has_voucher=False, subevent=None) -> Optional[str]:
now_dt = now_dt or time_machine_now()
subevent_var = subevent and subevent.var_overrides.get(self.pk)
if not self.active:
return 'active'
elif self.available_from and self.available_from > now_dt:
return 'available_from'
elif self.available_until and self.available_until < now_dt:
return 'available_until'
elif subevent_var and subevent_var.available_from and subevent_var.available_from > now_dt:
return 'available_from'
elif subevent_var and subevent_var.available_until and subevent_var.available_until < now_dt:
return 'available_until'
else:
return None
@property
def meta_data(self):
data = self.item.meta_data
+14 -11
View File
@@ -87,7 +87,6 @@ from pretix.base.timemachine import time_machine_now
from ...helpers import OF_SELF
from ...helpers.countries import CachedCountries, FastCountryField
from ...helpers.models import NormalizedDecimalField
from ...helpers.names import build_name
from ...testutils.middleware import debugflags_var
from ._transactions import (
@@ -225,6 +224,8 @@ class Order(LockModel, LoggedModel):
"Organizer",
related_name="orders",
on_delete=models.CASCADE,
null=True,
blank=True,
)
event = models.ForeignKey(
Event,
@@ -328,7 +329,7 @@ class Order(LockModel, LoggedModel):
default="line",
)
objects = ScopedManager(OrderQuerySet.as_manager().__class__, organizer='organizer')
objects = ScopedManager(OrderQuerySet.as_manager().__class__, organizer='event__organizer')
class Meta:
verbose_name = _("Order")
@@ -2355,8 +2356,8 @@ class OrderFee(RoundingCorrectionMixin, models.Model):
)
description = models.CharField(max_length=190, blank=True)
internal_type = models.CharField(max_length=255, blank=True)
tax_rate = NormalizedDecimalField(
max_digits=7, decimal_places=4,
tax_rate = models.DecimalField(
max_digits=7, decimal_places=2,
verbose_name=_('Tax rate')
)
tax_rule = models.ForeignKey(
@@ -2540,6 +2541,8 @@ class OrderPosition(AbstractPosition):
"Organizer",
related_name="order_positions",
on_delete=models.CASCADE,
null=True,
blank=True,
)
order = models.ForeignKey(
Order,
@@ -2552,8 +2555,8 @@ class OrderPosition(AbstractPosition):
max_digits=13, decimal_places=2, null=True, blank=True,
)
tax_rate = NormalizedDecimalField(
max_digits=7, decimal_places=4,
tax_rate = models.DecimalField(
max_digits=7, decimal_places=2,
verbose_name=_('Tax rate')
)
tax_rule = models.ForeignKey(
@@ -2596,7 +2599,7 @@ class OrderPosition(AbstractPosition):
blank=True,
)
all = ScopedManager(organizer='organizer')
all = ScopedManager(organizer='order__event__organizer')
objects = ActivePositionManager()
def __init__(self, *args, **kwargs):
@@ -3071,8 +3074,8 @@ class Transaction(models.Model):
price_includes_rounding_correction = models.DecimalField(
max_digits=13, decimal_places=2, default=Decimal("0.00")
)
tax_rate = NormalizedDecimalField(
max_digits=7, decimal_places=4,
tax_rate = models.DecimalField(
max_digits=7, decimal_places=2,
verbose_name=_('Tax rate')
)
tax_rule = models.ForeignKey(
@@ -3187,8 +3190,8 @@ class CartPosition(AbstractPosition):
verbose_name=_("Limit for extending expiration date"),
null=True
)
tax_rate = NormalizedDecimalField(
max_digits=7, decimal_places=4, default=Decimal('0'),
tax_rate = models.DecimalField(
max_digits=7, decimal_places=2, default=Decimal('0.00'),
verbose_name=_('Tax rate')
)
tax_code = models.CharField(
+3 -4
View File
@@ -40,7 +40,6 @@ from pretix.base.decimal import round_decimal
from pretix.base.models.base import LoggedModel
from pretix.base.templatetags.money import money_filter
from pretix.helpers.countries import FastCountryField
from pretix.helpers.models import NormalizedDecimalField
class TaxedPrice:
@@ -336,9 +335,9 @@ class TaxRule(LoggedModel):
max_length=190,
choices=TAX_CODE_LISTS,
)
rate = NormalizedDecimalField(
max_digits=7,
decimal_places=4,
rate = models.DecimalField(
max_digits=10,
decimal_places=2,
validators=[
MaxValueValidator(
limit_value=Decimal("100.00"),
+38 -45
View File
@@ -32,10 +32,8 @@
# Unless required by applicable law or agreed to in writing, software distributed under the Apache License 2.0 is
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under the License.
import datetime
from dataclasses import dataclass
from decimal import ROUND_HALF_UP, Decimal
from typing import Union
from django.conf import settings
from django.core.exceptions import ValidationError
@@ -423,33 +421,27 @@ class Voucher(LoggedModel):
return False
@staticmethod
def get_affected_quotas(quota, item, variation, subevent):
if quota:
return {quota}
elif item and variation:
return set(variation.quotas.filter(subevent=subevent))
elif item and not item.has_variations:
return set(item.quotas.filter(subevent=subevent))
elif item and item.has_variations:
return set(
Quota.objects.filter(
pk__in=Quota.variations.through.objects.filter(
itemvariation__item=item,
quota__subevent=subevent,
).values('quota_id')
)
)
else:
return set()
@staticmethod
def clean_quota_get_ignored(voucher_data: Union["VoucherBulkData", "Voucher"]):
if voucher_data:
valid = voucher_data.valid_until is None or voucher_data.valid_until >= now()
if valid and voucher_data.block_quota and voucher_data.max_usages > voucher_data.redeemed:
return Voucher.get_affected_quotas(voucher_data.quota, voucher_data.item, voucher_data.variation, voucher_data.subevent)
return set()
def clean_quota_get_ignored(old_instance):
quotas = set()
was_valid = old_instance and (
old_instance.valid_until is None or old_instance.valid_until >= now()
)
if old_instance and old_instance.block_quota and was_valid:
if old_instance.quota:
quotas.add(old_instance.quota)
elif old_instance.variation:
quotas |= set(old_instance.variation.quotas.filter(subevent=old_instance.subevent))
elif old_instance.item:
if old_instance.item.has_variations:
quotas |= set(
Quota.objects.filter(pk__in=Quota.variations.through.objects.filter(
itemvariation__item=old_instance.item,
quota__subevent=old_instance.subevent,
).values('quota_id'))
)
else:
quotas |= set(old_instance.item.quotas.filter(subevent=old_instance.subevent))
return quotas
@staticmethod
def clean_quota_check(data, cnt, old_instance, event, quota, item, variation):
@@ -461,8 +453,22 @@ class Voucher(LoggedModel):
if event.has_subevents and data.get('block_quota') and not data.get('subevent'):
raise ValidationError(_('If you want this voucher to block quota, you need to select a specific date.'))
new_quotas = Voucher.get_affected_quotas(quota, item, variation, data.get('subevent'))
if not new_quotas:
if quota:
new_quotas = {quota}
elif item and variation:
new_quotas = set(variation.quotas.filter(subevent=data.get('subevent')))
elif item and not item.has_variations:
new_quotas = set(item.quotas.filter(subevent=data.get('subevent')))
elif item and item.has_variations:
new_quotas = set(
Quota.objects.filter(
pk__in=Quota.variations.through.objects.filter(
itemvariation__item=item,
quota__subevent=data.get('subevent'),
).values('quota_id')
)
)
else:
raise ValidationError(_('You need to select a specific product or quota if this voucher should reserve '
'tickets.'))
@@ -638,16 +644,3 @@ class Voucher(LoggedModel):
]
).aggregate(s=Sum('voucher_budget_use'))['s'] or Decimal('0.00')
return ops
@dataclass
class VoucherBulkData:
item: object
variation: object
quota: object
block_quota: bool
valid_until: datetime.datetime
subevent: object
redeemed: int
max_usages: int
allow_ignore_quota: bool
+2 -54
View File
@@ -936,7 +936,7 @@ class BasePaymentProvider:
"""
Will be called if the *event administrator* views the details of a payment.
It should return a SafeString containing HTML code, with information regarding the current payment
It should return HTML code containing information regarding the current payment
status and, if applicable, next steps.
The default implementation returns an empty string.
@@ -961,7 +961,7 @@ class BasePaymentProvider:
"""
Will be called if the *event administrator* views the details of a refund.
It should return a SafeString containing HTML code, with information regarding the current refund
It should return HTML code containing information regarding the current refund
status and, if applicable, next steps.
The default implementation returns an empty string.
@@ -1706,58 +1706,6 @@ class GiftCardPayment(BasePaymentProvider):
)
class BaseHistoricalPaymentProvider(BasePaymentProvider):
"""
Base class for payment providers that no longer exist but can't be deleted to make sure historical
payments are shown correctly.
Subclasses are recommended to only implement:
- identifier
- verbose_name
- public_name
- payment_control_render
- payment_control_render_short
- refund_control_render
- refund_control_render_short
- render_invoice_text
- render_invoice_stamp
- api_payment_details
- api_refund_details
- shred_payment_info
- matching_id
- refund_matching_id
"""
@property
def is_enabled(self) -> bool:
return False
@property
def settings_form_fields(self) -> dict:
return {}
def is_allowed(self, request: HttpRequest, total: Decimal=None) -> bool:
return False
def payment_is_valid_session(self, request: HttpRequest, payment: OrderPayment):
return False
def order_change_allowed(self, order: Order, request: HttpRequest=None) -> bool:
return False
def payment_refund_supported(self, payment: OrderPayment) -> bool:
return False
def payment_partial_refund_supported(self, payment: OrderPayment) -> bool:
return False
def execute_payment(self, request: HttpRequest, payment: OrderPayment):
raise PaymentException(_("This payment provider exists for historical purposes only and is no longer usable."))
def execute_refund(self, refund: OrderRefund):
raise PaymentException(_("This payment provider exists for historical purposes only and is no longer usable."))
@receiver(register_payment_providers, dispatch_uid="payment_free")
def register_payment_provider(sender, **kwargs):
return [FreeOrderProvider, BoxOfficeProvider, OffsettingProvider, ManualPayment, GiftCardPayment]
+2 -2
View File
@@ -29,7 +29,7 @@ from typing import List
from django.utils.functional import cached_property
from pretix.base.models import CartPosition, ItemCategory, SalesChannel
from pretix.presale.productlist import prepare_item_list_for_shop
from pretix.presale.views.event import get_grouped_items
class DummyCategory:
@@ -162,7 +162,7 @@ class CrossSellingService:
]
def _prepare_items(self, subevent, items_qs, discount_info):
items, _btn = prepare_item_list_for_shop(
items, _btn = get_grouped_items(
self.event,
subevent=subevent,
voucher=None,
+23 -42
View File
@@ -110,7 +110,6 @@ from pretix.celery_app import app
from pretix.helpers import OF_SELF
from pretix.helpers.models import modelcopy
from pretix.helpers.periodic import minimum_interval
from pretix.presale.productlist import prepare_item_list_for_shop
from pretix.testutils.middleware import debugflags_var
@@ -1948,18 +1947,13 @@ class OrderChangeManager:
:param addons: A list of dictionaries with the keys ``"addon_to"``, ``"item"``, ``"variation"`` (all ID values),
``"count"``, and ``"price"``.
:param limit_main_positions: By default, the method works on all positions of the order. If you set this to a
:param limit_main_positions: By default, the method works on all methods of the order. If you set this to a
queryset or a list of positions, all other positions and their add-ons will be kept
untouched.
"""
if self._operations:
raise ValueError("Setting addons should be the first/only operation")
def _allowed_on_order_sales_channel(item_or_var, order):
return item_or_var.all_sales_channels or (
order.sales_channel.identifier in (s.identifier for s in item_or_var.limit_sales_channels.all())
)
# Prepare containers for min/max check of products
item_counts = Counter()
for p in self.order.positions.all():
@@ -2053,11 +2047,13 @@ class OrderChangeManager:
if not item.is_available() or (variation and not variation.is_available()):
raise OrderError(error_messages['unavailable'])
if not _allowed_on_order_sales_channel(item, self.order):
raise OrderError(error_messages['unavailable'])
if not item.all_sales_channels:
if self.order.sales_channel.identifier not in (s.identifier for s in item.limit_sales_channels.all()):
raise OrderError(error_messages['unavailable'])
if variation and not _allowed_on_order_sales_channel(variation, self.order):
raise OrderError(error_messages['unavailable'])
if variation and not variation.all_sales_channels:
if self.order.sales_channel.identifier not in (s.identifier for s in variation.limit_sales_channels.all()):
raise OrderError(error_messages['unavailable'])
if subevent and item.pk in subevent.item_overrides and not subevent.item_overrides[item.pk].is_available():
raise OrderError(error_messages['not_for_sale'])
@@ -2105,36 +2101,6 @@ class OrderChangeManager:
)
item_counts[item] += 1
def _addon_is_available(a):
# If an item is no longer available due to time, it should usually also be no longer
# user-removable, because e.g. the stock has already been ordered.
# We always set voucher=None because that's what's done when generating the form in
# OrderChangeMixin (vouchers for addons are not supported).
# This also prevents accidental removal through the UI because a hidden product will no longer
# be part of the input.
if not _allowed_on_order_sales_channel(a.item, self.order) or (
a.variation and not _allowed_on_order_sales_channel(a.variation, self.order)
):
return False
items, _ = prepare_item_list_for_shop(
self.order.event,
channel=self.order.sales_channel,
subevent=a.subevent,
voucher=None,
base_qs=Item.objects.filter(pk=a.item.pk),
allow_addons=True
)
if (not items) or items[0].current_unavailability_reason:
return False
if a.variation:
variations = [var for var in items[0].available_variations if var.pk == a.variation.pk]
if (not variations) or variations[0].current_unavailability_reason:
return False
return True
# Detect removed add-ons and create RemoveOperations
for cp, al in list(current_addons.items()):
for k, v in al.items():
@@ -2144,7 +2110,22 @@ class OrderChangeManager:
for a in current_addons[cp][k][:current_num - input_num]:
if a.canceled:
continue
if not _addon_is_available(a):
is_unavailable = (
# If an item is no longer available due to time, it should usually also be no longer
# user-removable, because e.g. the stock has already been ordered.
# We always pass has_voucher=True because if a product now requires a voucher, it usually does
# not mean it should be unremovable for others.
# This also prevents accidental removal through the UI because a hidden product will no longer
# be part of the input.
(a.variation and a.variation.unavailability_reason(has_voucher=True, subevent=a.subevent))
or (a.variation and not a.variation.all_sales_channels and not a.variation.limit_sales_channels.contains(self.order.sales_channel))
or a.item.unavailability_reason(has_voucher=True, subevent=a.subevent)
or (
not a.item.all_sales_channels and
not a.item.limit_sales_channels.contains(self.order.sales_channel)
)
)
if is_unavailable:
# "Re-select" add-on
selected_addons[cp.id, a.item.category_id][a.item_id, a.variation_id] += 1
continue
+2 -3
View File
@@ -535,9 +535,8 @@ EventPluginRegistry = PluginAwareRegistry # for backwards compatibility
event_live_issues = EventPluginSignal()
"""
This signal is sent out to determine whether an event can be taken live. If you want to
prevent the event from going live, return an error message to display to the user (either
as a SafeString containing HTML, or a string that will be HTML-escaped). If you don't,
your receiver should return ``None``.
prevent the event from going live, return a string that will be displayed to the user
as the error message. If you don't, your receiver should return ``None``.
As with all event-plugin signals, the ``sender`` keyword argument will contain the event.
"""
+2 -3
View File
@@ -22,7 +22,6 @@
import importlib
from django import template
from django.utils.html import conditional_escape
from django.utils.safestring import mark_safe
from pretix.base.models import Event
@@ -45,7 +44,7 @@ def eventsignal(event: Event, signame: str, **kwargs):
_html = []
for receiver, response in signal.send(event, **kwargs):
if response:
_html.append(conditional_escape(response))
_html.append(response)
return mark_safe("".join(_html))
@@ -64,5 +63,5 @@ def signal(signame: str, request, **kwargs):
_html = []
for receiver, response in signal.send(request, **kwargs):
if response:
_html.append(conditional_escape(response))
_html.append(response)
return mark_safe("".join(_html))
-18
View File
@@ -26,8 +26,6 @@ from babel.numbers import format_currency
from django import template
from django.conf import settings
from django.template.defaultfilters import floatformat
from django.utils import formats
from django.utils.safestring import mark_safe
from pretix.base.i18n import get_babel_locale
@@ -84,19 +82,3 @@ def money_numberfield_filter(value: Decimal, arg=''):
places = settings.CURRENCY_PLACES.get(arg, 2)
return str(value.quantize(Decimal('1') / 10 ** places, ROUND_HALF_UP))
@register.filter(is_safe=True)
def tax_rate_format(number):
"""
Display a Decimal to its significant decimal places, used for tax rates.
"""
assert isinstance(number, Decimal)
return mark_safe(
formats.number_format(
number.normalize(),
-number.as_tuple().exponent,
use_l10n=True,
force_grouping=False,
)
)
+1 -1
View File
@@ -27,11 +27,11 @@ from django.template import TemplateDoesNotExist, loader
from django.template.loader import get_template
from django.utils.functional import Promise
from django.utils.translation import gettext as _
from django.views.decorators.csrf import requires_csrf_token
from sentry_sdk import last_event_id
from pretix.base.i18n import language
from pretix.base.middleware import get_language_from_request
from pretix.multidomain.middlewares import requires_csrf_token
def csrf_failure(request, reason=""):
+1 -43
View File
@@ -19,56 +19,14 @@
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
# <https://www.gnu.org/licenses/>.
#
import logging
import os
from celery import Celery, signals
from django.dispatch import receiver
from celery import Celery
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pretix.settings")
logger = logging.getLogger(__name__)
from django.conf import settings
app = Celery('pretix')
app.config_from_object('django.conf:settings', namespace='CELERY')
app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)
@receiver(signals.before_task_publish)
def on_before_task_publish(sender, body, exchange, routing_key, headers, properties, declare, retry_policy, **kwargs):
from pretix.helpers.logs import local
trace = getattr(local, 'trace', [])
request_id = getattr(local, 'request_id', None)
if request_id:
trace.append(request_id)
headers["X-Pretix-Trace"] = " ".join(trace)
@receiver(signals.task_received)
def on_task_received(sender, request, **kwargs):
trace = request._request_dict.get("X-Pretix-Trace")
if trace:
logger.info(f"Task {request.id} has trace {trace}")
@receiver(signals.task_prerun)
def on_task_prerun(sender, task_id, task, **kwargs):
from pretix.helpers.logs import local
local.request_id = task_id
if task.request.headers and "X-Pretix-Trace" in task.request.headers:
local.trace = task.request.headers["X-Pretix-Trace"].split(" ")
else:
local.trace = []
local.trace.append(task_id)
@receiver(signals.task_postrun)
def on_task_postrun(sender, task_id, task, **kwargs):
from pretix.helpers.logs import local
local.request_id = None
local.trace = []
+7 -1
View File
@@ -1679,7 +1679,7 @@ class CountriesAndEUAndStates(CountriesAndEU):
class TaxRuleLineForm(I18nForm):
country = LazyTypedChoiceField(
choices=lazy(lambda: CountriesAndEUAndStates(), CountriesAndEUAndStates),
choices=CountriesAndEUAndStates(),
required=False
)
address_type = forms.ChoiceField(
@@ -1905,6 +1905,12 @@ class QuickSetupForm(I18nForm):
required=False,
help_text=_("We'll show this publicly to allow attendees to contact you.")
)
contact_url = forms.URLField(
label=_("Contact URL"),
required=False,
help_text=_("If you set this, the footer contact link will point here instead of using the email address above. "
"Please note that you still need to add a contact email address that will be shared with all emails you send.")
)
total_quota = forms.IntegerField(
label=_("Total capacity"),
min_value=0,
+53 -277
View File
@@ -32,20 +32,16 @@
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under the License.
import copy
import csv
from collections import Counter, namedtuple
from collections import namedtuple
from io import StringIO
from django import forms
from django.core.exceptions import ObjectDoesNotExist, ValidationError
from django.core.validators import EmailValidator
from django.db.models import Count, F, Max
from django.db.models.functions import Upper
from django.forms.utils import ErrorDict
from django.urls import reverse
from django.utils.timezone import now
from django.utils.translation import gettext_lazy as _, pgettext_lazy
from django.utils.translation import gettext_lazy as _
from django_scopes.forms import SafeModelChoiceField
from pretix.base.email import get_available_placeholders
@@ -54,10 +50,7 @@ from pretix.base.forms import (
)
from pretix.base.forms.widgets import format_placeholders_help_text
from pretix.base.i18n import language
from pretix.base.models import Item, ItemVariation, Quota, SubEvent, Voucher
from pretix.base.models.vouchers import VoucherBulkData
from pretix.base.services.locking import lock_objects
from pretix.base.services.quotas import QuotaAvailability
from pretix.base.models import Item, Voucher
from pretix.control.forms import SplitDateTimeField, SplitDateTimePickerWidget
from pretix.control.forms.widgets import Select2, Select2ItemVarQuota
from pretix.control.signals import voucher_form_validation
@@ -112,22 +105,20 @@ class VoucherForm(I18nModelForm):
except Item.DoesNotExist:
pass
super().__init__(*args, **kwargs)
if not self.event and self.instance:
self.event = self.instance.event
self.fields['tag'].widget.attrs['data-typeahead-url'] = reverse('control:event.vouchers.tags.typeahead', kwargs={
'event': self.event.slug,
'organizer': self.event.organizer.slug,
'event': instance.event.slug,
'organizer': instance.event.organizer.slug,
})
if self.event.has_subevents:
self.fields['subevent'].queryset = self.event.subevents.all()
if instance.event.has_subevents:
self.fields['subevent'].queryset = instance.event.subevents.all()
self.fields['subevent'].widget = Select2(
attrs={
'data-model-select2': 'event',
'data-select2-url': reverse('control:event.subevents.select2', kwargs={
'event': self.event.slug,
'organizer': self.event.organizer.slug,
'event': instance.event.slug,
'organizer': instance.event.organizer.slug,
}),
}
)
@@ -137,19 +128,18 @@ class VoucherForm(I18nModelForm):
del self.fields['subevent']
choices = []
prefix = (self.prefix + '-') if self.prefix else ''
if 'itemvar' in initial or (self.data and prefix + 'itemvar' in self.data):
iv = self.data.get(prefix + 'itemvar', '') or initial.get('itemvar', '') or ''
if 'itemvar' in initial or (self.data and 'itemvar' in self.data):
iv = self.data.get('itemvar') or initial.get('itemvar', '')
if iv.startswith('q-'):
q = self.event.quotas.get(pk=iv[2:])
q = self.instance.event.quotas.get(pk=iv[2:])
choices.append(('q-%d' % q.pk, _('Any product in quota "{quota}"').format(quota=q)))
elif '-' in iv:
itemid, varid = iv.split('-')
i = self.event.items.get(pk=itemid)
i = self.instance.event.items.get(pk=itemid)
v = i.variations.get(pk=varid)
choices.append(('%d-%d' % (i.pk, v.pk), '%s %s' % (str(i), v.value)))
elif iv:
i = self.event.items.get(pk=iv)
i = self.instance.event.items.get(pk=iv)
if i.variations.exists():
choices.append((str(i.pk), _('{product} Any variation').format(product=i)))
else:
@@ -160,8 +150,8 @@ class VoucherForm(I18nModelForm):
attrs={
'data-model-select2': 'generic',
'data-select2-url': reverse('control:event.vouchers.itemselect2', kwargs={
'event': self.event.slug,
'organizer': self.event.organizer.slug,
'event': instance.event.slug,
'organizer': instance.event.organizer.slug,
}),
'data-placeholder': _('All products')
}
@@ -169,7 +159,7 @@ class VoucherForm(I18nModelForm):
self.fields['itemvar'].required = False
self.fields['itemvar'].widget.choices = self.fields['itemvar'].choices
if self.event.seating_plan or self.event.subevents.filter(seating_plan__isnull=False).exists():
if self.instance.event.seating_plan or self.instance.event.subevents.filter(seating_plan__isnull=False).exists():
self.fields['seat'] = forms.CharField(
label=_("Specific seat ID"),
max_length=255,
@@ -179,45 +169,40 @@ class VoucherForm(I18nModelForm):
help_text=str(self.instance.seat) if self.instance.seat else '',
)
def parse_itemvar(self, data):
try:
itemid = quotaid = None
iv = data.get('itemvar', '')
if iv.startswith('q-'):
quotaid = iv[2:]
elif '-' in iv:
itemid, varid = iv.split('-')
elif iv:
itemid, varid = iv, None
else:
itemid, varid = None, None
if itemid:
item = self.event.items.get(pk=itemid)
if varid:
variation = item.variations.get(pk=varid)
else:
variation = None
quota = None
elif quotaid:
quota = self.event.quotas.get(pk=quotaid)
item = None
variation = None
else:
quota = None
item = None
variation = None
return (item, variation, quota)
except ObjectDoesNotExist:
raise ValidationError(_("Invalid product selected."))
def clean(self):
data = super().clean()
if not self._errors:
self.instance.item, self.instance.variation, self.instance.quota = self.parse_itemvar(self.data)
try:
itemid = quotaid = None
iv = self.data.get('itemvar', '')
if iv.startswith('q-'):
quotaid = iv[2:]
elif '-' in iv:
itemid, varid = iv.split('-')
elif iv:
itemid, varid = iv, None
else:
itemid, varid = None, None
if itemid:
self.instance.item = self.instance.event.items.get(pk=itemid)
if varid:
self.instance.variation = self.instance.item.variations.get(pk=varid)
else:
self.instance.variation = None
self.instance.quota = None
elif quotaid:
self.instance.quota = self.instance.event.quotas.get(pk=quotaid)
self.instance.item = None
self.instance.variation = None
else:
self.instance.quota = None
self.instance.item = None
self.instance.variation = None
except ObjectDoesNotExist:
raise ValidationError(_("Invalid product selected."))
if 'codes' in data:
data['codes'] = [a.strip() for a in data.get('codes', '').strip().split("\n") if a]
@@ -229,7 +214,7 @@ class VoucherForm(I18nModelForm):
try:
Voucher.clean_item_properties(
data, self.event,
data, self.instance.event,
self.instance.quota, self.instance.item, self.instance.variation,
seats_given=data.get('seat') or data.get('seats'),
block_quota=data.get('block_quota')
@@ -249,7 +234,7 @@ class VoucherForm(I18nModelForm):
try:
Voucher.clean_subevent(
data, self.event
data, self.instance.event
)
except ValidationError as e:
raise ValidationError({"subevent": e.message})
@@ -265,19 +250,19 @@ class VoucherForm(I18nModelForm):
if check_quota:
Voucher.clean_quota_check(
data, cnt, self.initial_instance_data,
self.event, self.instance.quota, self.instance.item, self.instance.variation
self.instance.event, self.instance.quota, self.instance.item, self.instance.variation
)
Voucher.clean_voucher_code(data, self.event, self.instance.pk)
Voucher.clean_voucher_code(data, self.instance.event, self.instance.pk)
if 'seat' in self.fields:
if data.get('seat'):
self.instance.seat = Voucher.clean_seat_id(
data, self.instance.item, self.instance.quota, self.event, self.instance.pk
data, self.instance.item, self.instance.quota, self.instance.event, self.instance.pk
)
self.instance.item = self.instance.seat.product
else:
self.instance.seat = None
voucher_form_validation.send(sender=self.event, form=self, data=data)
voucher_form_validation.send(sender=self.instance.event, form=self, data=data)
return data
@@ -285,215 +270,6 @@ class VoucherForm(I18nModelForm):
return super().save(commit)
class VoucherBulkEditForm(VoucherForm):
def __init__(self, *args, **kwargs):
self.mixed_values = kwargs.pop('mixed_values')
self.queryset = kwargs.pop('queryset')
super().__init__(**kwargs)
del self.fields["code"]
self.fields.pop("seat", None)
def is_bulk_checked(self, fieldname):
return self.prefix + fieldname in self.data.getlist('_bulk')
def clean(self):
# We skip the parent class because it's not suited for bulk editing and implement custom validation here.
# This does not validate *everything* we validate in VoucherForm. For example, we skip validation that one does
# not create a voucher for an add-on product or that the seat matches the product to save on complexity.
# This is a UX validation only anyway, since one could first create the voucher and then make the product an
# add-on product. However, we need to validate everything that we don't want violated in the database.
data = super(VoucherForm, self).clean()
if self.is_bulk_checked("itemvar"):
data["item"], data["variation"], data["quota"] = self.parse_itemvar(data)
if self.is_bulk_checked("max_usages") and "max_usages" in data:
max_redeemed = self.queryset.aggregate(m=Max("redeemed"))["m"]
if data["max_usages"] < max_redeemed:
raise ValidationError(_(
"You cannot reduce the maximum number of redemptions to %(max_usages)s, because at least one "
"of the selected vouchers has already been redeemed %(max_redeemed)s times."
) % {"max_usages": data["max_usages"], "max_redeemed": max_redeemed})
# Check diff on product and quota usage based on old groups of vouchers
if any(self.is_bulk_checked(k) for k in ("max_usages", "itemvar", "block_quota", "valid_until", "subevent")):
quota_diff = Counter()
current_vouchers = self.queryset.order_by().values(
"item", "variation", "quota", "block_quota", "valid_until", "subevent", "redeemed", "max_usages",
"allow_ignore_quota",
).annotate(c=Count("*"))
item_cache = {i.pk: i for i in Item.objects.filter(pk__in=[c["item"] for c in current_vouchers])}
var_cache = {v.pk: v for v in ItemVariation.objects.filter(pk__in=[c["variation"] for c in current_vouchers])}
quota_cache = {q.pk: q for q in Quota.objects.filter(pk__in=[c["quota"] for c in current_vouchers])}
subevent_cache = {s.pk: s for s in SubEvent.objects.filter(pk__in=[c["subevent"] for c in current_vouchers])}
for current in current_vouchers:
bulk_count = current.pop('c')
current = VoucherBulkData(**current)
# Get quotas that are currently used
if current.item:
current.item = item_cache[current.item]
if current.variation:
current.variation = var_cache[current.variation]
if current.quota:
current.quota = quota_cache[current.quota]
if current.subevent:
current.subevent = subevent_cache[current.subevent]
old_quotas = Voucher.clean_quota_get_ignored(current)
old_amount = max(current.max_usages - current.redeemed, 0) * bulk_count
# Predict state after change
after_change = copy.copy(current)
if self.is_bulk_checked("itemvar") and "itemvar" in data:
after_change.item = data["item"]
after_change.variation = data["variation"]
after_change.quota = data["quota"]
if self.is_bulk_checked("subevent") and "subevent" in data:
after_change.subevent = data["subevent"]
if self.is_bulk_checked("max_usages") and "max_usages" in data:
after_change.max_usages = data["max_usages"]
if self.is_bulk_checked("block_quota") and "block_quota" in data:
after_change.block_quota = data["block_quota"]
if self.is_bulk_checked("valid_until") and "valid_until" in data:
after_change.valid_until = data["valid_until"]
if self.is_bulk_checked("allow_ignore_quota") and "allow_ignore_quota" in data:
after_change.allow_ignore_quota = data["allow_ignore_quota"]
if after_change.quota and self.event.has_subevents and not after_change.subevent:
raise ValidationError(_("You cannot create a voucher that allows selection of a quota but has no date selected."))
if after_change.quota and after_change.subevent and after_change.quota.subevent_id != after_change.subevent.pk:
raise ValidationError(_("The selected quota does not match the selected subevent."))
if after_change.block_quota and self.event.has_subevents and not after_change.subevent:
raise ValidationError(
_('If you want this voucher to block quota, you need to select a specific date.'))
if after_change.block_quota and not after_change.item and not after_change.quota:
raise ValidationError(
_('You need to select a specific product or quota if this voucher should reserve '
'tickets.')
)
if after_change.allow_ignore_quota:
# todo: is this the most useful way to do this?
continue
new_quotas = Voucher.clean_quota_get_ignored(after_change)
new_amount = max(after_change.max_usages - after_change.redeemed, 0) * bulk_count
if new_quotas != old_quotas or new_amount != old_amount:
for q in old_quotas:
quota_diff[q] -= old_amount
for q in new_quotas:
quota_diff[q] += new_amount
if any(v > 0 for q, v in quota_diff.items()):
lock_objects([q for q, v in quota_diff.items() if q.size is not None and v > 0], shared_lock_objects=[self.event])
qa = QuotaAvailability(count_waitinglist=False)
qa.queue(*(q for q, v in quota_diff.items() if v > 0))
qa.compute()
if any(qa.results[q][0] != Quota.AVAILABILITY_OK or (qa.results[q][1] is not None and qa.results[q][1] < required)
for q, required in quota_diff.items() if required > 0):
raise ValidationError(_(
'There is no sufficient quota available to perform this change.'
))
has_seat = self.queryset.filter(seat__isnull=False).exists()
if has_seat:
if self.is_bulk_checked("max_usages"):
raise ValidationError(_(
'Changing the maximum number of usages in bulk is not supported if any of the selected vouchers '
'is assigned a seat.'
))
if self.is_bulk_checked("subevent"):
raise ValidationError(pgettext_lazy(
'subevent',
'Changing the date in bulk is not supported if any of the selected vouchers '
'is assigned a seat.'
))
if self.is_bulk_checked("itemvar") and data["quota"]:
raise ValidationError(_(
'Changing the product to a quota is not supported if any of the selected vouchers '
'is assigned a seat.'
))
if self.is_bulk_checked("valid_until"):
if data["valid_until"] is None or data["valid_until"] >= now():
currently_not_blocked_seats = self.queryset.filter(
seat__isnull=False,
max_usages__gt=F("redeemed"),
valid_until__lt=now(),
)
if self.event.has_subevents:
subevents = self.event.subevents.filter(pk__in=currently_not_blocked_seats.values_list("subevent"))
for se in subevents:
conflicts = currently_not_blocked_seats.filter(
subevent=se
).exclude(
seat_id__in=se.free_seats().values("pk")
)
if conflicts:
raise ValidationError(_(
'This change cannot be completed because not all assigned seats of the vouchers are '
'still available'
))
else:
conflicts = currently_not_blocked_seats.exclude(
seat_id__in=self.event.free_seats().values("pk")
)
if conflicts:
raise ValidationError(_(
'This change cannot be completed because not all assigned seats of the vouchers are '
'still available'
))
return data
def save(self, commit=True):
objs = list(self.queryset)
fields = set()
check_map = {
'price_mode': '__price',
'value': '__price',
}
for k in self.fields:
if not self.is_bulk_checked(check_map.get(k, k)):
continue
if k == 'itemvar':
fields.add("item")
fields.add("variation")
fields.add("quota")
else:
fields.add(k)
for obj in objs:
if k == 'itemvar':
obj.item = self.cleaned_data["item"]
obj.variation = self.cleaned_data["variation"]
obj.quota = self.cleaned_data["quota"]
else:
setattr(obj, k, self.cleaned_data[k])
fields = [f for f in fields if f != 'itemvars']
if fields:
Voucher.objects.bulk_update(objs, fields, 200)
def full_clean(self):
if len(self.data) == 0:
# form wasn't submitted
self._errors = ErrorDict()
return
super().full_clean()
def _post_clean(self):
pass # skip model-level clean
class VoucherBulkForm(VoucherForm):
codes = forms.CharField(
widget=forms.Textarea,
+4 -17
View File
@@ -37,7 +37,7 @@ from urllib.parse import quote, urljoin, urlparse
from django.conf import settings
from django.contrib.auth import REDIRECT_FIELD_NAME, logout
from django.contrib.auth.views import redirect_to_login
from django.http import Http404, HttpResponse
from django.http import Http404
from django.shortcuts import get_object_or_404, resolve_url
from django.template.response import TemplateResponse
from django.urls import get_script_prefix, resolve, reverse
@@ -98,8 +98,6 @@ class PermissionMiddleware:
super().__init__()
def _login_redirect(self, request):
from django.contrib.auth.views import redirect_to_login
# Taken from django/contrib/auth/decorators.py
path = request.build_absolute_uri()
# urlparse chokes on lazy objects in Python 3, force to str
@@ -112,21 +110,10 @@ class PermissionMiddleware:
if ((not login_scheme or login_scheme == current_scheme) and
(not login_netloc or login_netloc == current_netloc)):
path = request.get_full_path()
from django.contrib.auth.views import redirect_to_login
if request.headers.get("X-Requested-With") == "XMLHttpRequest":
# It's not useful to return a 302 redirect on a XMLHttpRequest request, because
# the XMLHttpRequest is unable to detect redirects.
return HttpResponse(
"Authentication required",
status=401,
headers={
# Appending ?next= is handled by client, because it should be the top-level context url,
# not the URL called in the background
"X-Login-Url": resolved_login_url,
}
)
return redirect_to_login(path, resolved_login_url, REDIRECT_FIELD_NAME)
return redirect_to_login(
path, resolved_login_url, REDIRECT_FIELD_NAME)
def __call__(self, request):
url = resolve(request.path_info)
+6 -14
View File
@@ -39,8 +39,7 @@ from pretix.base.signals import (
html_page_start = GlobalSignal()
"""
This signal allows you to put code in the beginning of the main page for every
page in the backend. You are expected to return a SafeString containing HTML, or
a string that will be HTML-escaped.
page in the backend. You are expected to return HTML.
The ``sender`` keyword argument will contain the request.
"""
@@ -130,7 +129,7 @@ event_dashboard_top = EventPluginSignal()
Arguments: 'request'
This signal is sent out to include custom HTML in the top part of the the event dashboard.
Receivers should return a SafeString containing HTML, or a string that will be HTML-escaped.
Receivers should return HTML.
As with all event plugin signals, the ``sender`` keyword argument will contain the event.
An additional keyword argument ``subevent`` *can* contain a sub-event.
@@ -141,7 +140,7 @@ event_dashboard_widgets = EventPluginSignal()
This signal is sent out to include widgets in the event dashboard. Receivers
should return a list of dictionaries, where each dictionary can have the keys:
* content (SafeString, containing HTML)
* content (str, containing HTML)
* display_size (str, one of "full" (whole row), "big" (half a row) or "small"
(quarter of a row). May be ignored on small displays, default is "small")
* priority (int, used for ordering, higher comes first, default is 1)
@@ -158,7 +157,7 @@ Arguments: 'user'
This signal is sent out to include widgets in the personal user dashboard. Receivers
should return a list of dictionaries, where each dictionary can have the keys:
* content (SafeString, containing HTML)
* content (str, containing HTML)
* display_size (str, one of "full" (whole row), "big" (half a row) or "small"
(quarter of a row). May be ignored on small displays, default is "small")
* priority (int, used for ordering, higher comes first, default is 1)
@@ -173,7 +172,6 @@ Arguments: 'form'
This signal allows you to add additional HTML to the form that is used for modifying vouchers.
You receive the form object in the ``form`` keyword argument.
Receivers should return a SafeString containing HTML, or a string that will be HTML-escaped.
As with all event plugin signals, the ``sender`` keyword argument will contain the event.
"""
@@ -211,7 +209,6 @@ Arguments: 'quota'
This signal allows you to append HTML to a Quota's detail view. You receive the
quota as argument in the ``quota`` keyword argument.
Receivers should return a SafeString containing HTML, or a string that will be HTML-escaped.
As with all event plugin signals, the ``sender`` keyword argument will contain the event.
"""
@@ -222,7 +219,6 @@ Arguments: 'subevent'
This signal allows you to append HTML to a SubEvent's detail view. You receive the
subevent as argument in the ``subevent`` keyword argument.
Receivers should return a SafeString containing HTML, or a string that will be HTML-escaped.
As with all event plugin signals, the ``sender`` keyword argument will contain the event.
"""
@@ -269,8 +265,7 @@ order_info = EventPluginSignal()
"""
Arguments: ``order``, ``request``
This signal is sent out to display additional information on the order detail page.
Receivers should return a SafeString containing HTML, or a string that will be HTML-escaped.
This signal is sent out to display additional information on the order detail page
As with all event plugin signals, the ``sender`` keyword argument will contain the event.
Additionally, the argument ``order`` and ``request`` are available.
@@ -280,8 +275,7 @@ order_approve_info = EventPluginSignal()
"""
Arguments: ``order``, ``request``
This signal is sent out to display additional information on the order approve page.
Receivers should return a SafeString containing HTML, or a string that will be HTML-escaped.
This signal is sent out to display additional information on the order approve page
As with all event plugin signals, the ``sender`` keyword argument will contain the event.
Additionally, the argument ``order`` and ``request`` are available.
@@ -292,7 +286,6 @@ order_position_buttons = EventPluginSignal()
Arguments: ``order``, ``position``, ``request``
This signal is sent out to display additional buttons for a single position of an order.
Receivers should return a SafeString containing HTML, or a string that will be HTML-escaped.
As with all event plugin signals, the ``sender`` keyword argument will contain the event.
Additionally, the argument ``order`` and ``request`` are available.
@@ -322,7 +315,6 @@ Arguments: 'request'
This signal is sent out to include template snippets on the settings page of an event
that allows generating a pretix Widget code.
Receivers should return a SafeString containing HTML, or a string that will be HTML-escaped.
As with all event plugin signals, the ``sender`` keyword argument will contain the event.
A second keyword argument ``request`` will contain the request object.
@@ -56,4 +56,5 @@
</form>
<script type="text/plain" id="good_origin">{{ good_origin }}</script>
<script type="text/plain" id="bad_origin_report_url">{{ bad_origin_report_url }}</script>
<!-- pretix-login-marker -->{# marker required for ajax calls to detect that user session is over #}
{% endblock %}
@@ -3,7 +3,6 @@
{% load i18n %}
{% load static %}
{% load compress %}
{% load escapejson %}
{% block content %}
<form class="form-signin" action="" method="post" id="webauthn-form">
{% csrf_token %}
@@ -31,7 +30,8 @@
</form>
{% if jsondata %}
<script type="text/json" id="webauthn-login">
{{ jsondata|escapejson }}
{{ jsondata|safe }}
</script>
{% endif %}
{% compress js %}
@@ -28,7 +28,7 @@
{% if w.lazy %}
<span class="fa fa-cog fa-4x"></span>
{% else %}
{{ w.content }}
{{ w.content|safe }}
{% endif %}
</div>
</div>
@@ -51,7 +51,7 @@
{% if w.lazy %}
<span class="fa fa-cog fa-4x"></span>
{% else %}
{{ w.content }}
{{ w.content|safe }}
{% endif %}
</div>
</div>
@@ -72,7 +72,7 @@
{% if w.lazy %}
<span class="fa fa-cog fa-4x"></span>
{% else %}
{{ w.content }}
{{ w.content|safe }}
{% endif %}
</div>
</div>
@@ -94,7 +94,7 @@
{% if w.lazy %}
<span class="fa fa-cog fa-4x"></span>
{% else %}
{{ w.content }}
{{ w.content|safe }}
{% endif %}
</a>
{% else %}
@@ -102,7 +102,7 @@
{% if w.lazy %}
<span class="fa fa-cog fa-4x"></span>
{% else %}
{{ w.content }}
{{ w.content|safe }}
{% endif %}
</div>
{% endif %}
@@ -6,7 +6,7 @@ If this was you, enter the following code in the setup form:
{{ code }}
Don't share this code with anyone unless you want to authorize them to use this address for this purpose. The {{ instance }} team will never ask you for it.
Don't share this code with anyone. The {{ instance }} team will never ask you for it.
If you didn't request this, you can safely ignore this email.
@@ -10,7 +10,7 @@ We noticed a new sign-in to your {{ instance }} account:
{% endif %}
{% blocktrans with url=url|safe %}If it was you, no action is needed.
If you don't recognize this sign-in, please change your password immediately:
If you don't recognise this sign-in, please change your password immediately:
{{ url }}
@@ -50,46 +50,6 @@
{% endblocktrans %}
</div>
{% endif %}
{% if dkim_warning %}
<div class="alert alert-danger">
<p>
{{ dkim_warning }}
</p>
<p>
{% trans "Your new DKIM record should be set up as a CNAME record like this:" %}
</p>
<pre><code>{{ dkim_hostname }} CNAME {{ dkim_cname }}</code></pre>
<p>
{% trans "Please keep in mind that updates to DNS might require multiple hours to take effect." %}
</p>
</div>
{% elif dkim_cname %}
<div class="alert alert-success">
{% blocktrans trimmed %}
We found a DKIM record on your domain for this system. Great!
{% endblocktrans %}
</div>
{% endif %}
{% if dmarc_warning %}
<div class="alert alert-danger">
<p>
{{ dmarc_warning }}
</p>
<p>
{% trans "Your new DMARC record could look like this:" %}
</p>
<pre><code>_dmarc.{{ hostname }} TXT "v=DMARC1; p=quarantine; sp=none; adkim=r; aspf=r;"</code></pre>
<p>
{% trans "Please keep in mind that updates to DNS might require multiple hours to take effect." %}
</p>
</div>
{% elif dkim_cname %}
<div class="alert alert-success">
{% blocktrans trimmed %}
We found a DMARC record on your domain for this system. Great!
{% endblocktrans %}
</div>
{% endif %}
{% if verification %}
<h3>{% trans "Verification" %}</h3>
<p>
@@ -110,7 +70,7 @@
</div>
</div>
{% if spf_warning or dkim_warning or dmarc_warning %}
{% if spf_warning %}
<div class="form-group submit-group">
<a href="" class="btn btn-default btn-save">
{% trans "Cancel" %}
@@ -106,7 +106,7 @@
{% if w.lazy %}
<span class="fa fa-cog fa-4x"></span>
{% else %}
{{ w.content }}
{{ w.content|safe }}
{% endif %}
</a>
{% elif w.link %}
@@ -114,7 +114,7 @@
{% if w.lazy %}
<span class="fa fa-cog fa-4x´"></span>
{% else %}
{{ w.content }}
{{ w.content|safe }}
{% endif %}
</a>
{% else %}
@@ -122,7 +122,7 @@
{% if w.lazy %}
<span class="fa fa-cog fa-4x"></span>
{% else %}
{{ w.content }}
{{ w.content|safe }}
{% endif %}
</div>
{% endif %}
@@ -19,7 +19,7 @@
</p>
<ul>
{% for issue in issues %}
<li>{{ issue }}</li>
<li>{{ issue|safe }}</li>
{% endfor %}
</ul>
</div>
@@ -42,7 +42,7 @@
</p>
<ul>
{% for issue in issues %}
<li>{{ issue }}</li>
<li>{{ issue|safe }}</li>
{% endfor %}
</ul>
</div>
@@ -12,7 +12,7 @@
<table class="table table-payment-providers">
<tbody>
{% for provider in providers %}
<tr{% if provider.highlight %} class="success-left"{% endif %}>
<tr>
<td>
<strong>{{ provider.verbose_name }}</strong>
</td>
@@ -56,7 +56,7 @@
<td colspan="4">
<br>
{% url "control:event.settings.plugins" event=request.event.slug organizer=request.organizer.slug as plugin_settings_url %}
<a href="{{ plugin_settings_url }}?go=payment#tab-0-1-open" class="btn btn-default">
<a href="{{ plugin_settings_url }}#tab-0-1-open" class="btn btn-default">
<i class="fa fa-plus"></i> {% trans "Enable additional payment plugins" %}
</a>
</td>
@@ -28,7 +28,6 @@
</div>
<form action="" method="post" class="form-horizontal form-plugins">
{% csrf_token %}
<input type="hidden" name="go" value="{{ request.GET.go }}">
<div id="plugin_search_results" class="panel panel-default collapse">
<div class="panel-heading">
<button type="button" class="close" aria-label="Close"><span aria-hidden="true">×</span></button>
@@ -193,6 +193,7 @@
{% endblocktrans %}
</p>
{% bootstrap_field form.contact_mail layout="control" %}
{% bootstrap_field form.contact_url layout="control" %}
{% bootstrap_field form.imprint_url layout="control" %}
</div>
</fieldset>
@@ -156,11 +156,11 @@
<br/>
<small class="text-muted">
{% if not i.tax_rule.price_includes_tax %}
{% blocktrans trimmed with rate=i.tax_rule.rate|tax_rate_format taxname=i.tax_rule.name %}
{% blocktrans trimmed with rate=i.tax_rule.rate|floatformat:-2 taxname=i.tax_rule.name %}
<strong>plus</strong> {{ rate }}% {{ taxname }}
{% endblocktrans %}
{% else %}
{% blocktrans trimmed with rate=i.tax_rule.rate|tax_rate_format taxname=i.tax_rule.name|default:s_taxes %}
{% blocktrans trimmed with rate=i.tax_rule.rate|floatformat:-2 taxname=i.tax_rule.name|default:s_taxes %}
incl. {{ rate }}% {{ taxname }}
{% endblocktrans %}
{% endif %}
@@ -2,7 +2,6 @@
{% load i18n %}
{% load bootstrap3 %}
{% load money %}
{% load wrap_in %}
{% block title %}
{% trans "Cancel order" %}
{% endblock %}
@@ -27,7 +26,7 @@
{% if form.cancellation_fee %}
{% if fee %}
{% with fee|money:request.event.currency as f %}
<p>{% blocktrans trimmed with fee=f|wrap_in:"strong" %}
<p>{% blocktrans trimmed with fee="<strong>"|add:f|add:"</strong>"|safe %}
The configured cancellation fee for a self-service cancellation would be {{ fee }} for this
order, but for a cancellation performed by you, you need to set the cancellation fee here:
{% endblocktrans %}</p>
@@ -705,7 +705,7 @@
{% if line.tax_rate %}
<br/>
<small>
{% blocktrans trimmed with rate=line.tax_rate|tax_rate_format taxname=line.tax_rule.name|default:s_taxes %}
{% blocktrans trimmed with rate=line.tax_rate|floatformat:-2 taxname=line.tax_rule.name|default:s_taxes %}
<strong>plus</strong> {{ rate }}% {{ taxname }}
{% endblocktrans %}
</small>
@@ -715,7 +715,7 @@
{% if line.tax_rate and line.price %}
<br/>
<small>
{% blocktrans trimmed with rate=line.tax_rate|tax_rate_format taxname=line.tax_rule.name|default:s_taxes %}
{% blocktrans trimmed with rate=line.tax_rate|floatformat:-2 taxname=line.tax_rule.name|default:s_taxes %}
incl. {{ rate }}% {{ taxname }}
{% endblocktrans %}
</small>
@@ -755,7 +755,7 @@
{% if fee.tax_rate %}
<br/>
<small>
{% blocktrans trimmed with rate=fee.tax_rate|tax_rate_format taxname=fee.tax_rule.name|default:s_taxes %}
{% blocktrans trimmed with rate=fee.tax_rate|floatformat:-2 taxname=fee.tax_rule.name|default:s_taxes %}
<strong>plus</strong> {{ rate }}% {{ taxname }}
{% endblocktrans %}
</small>
@@ -765,7 +765,7 @@
{% if fee.tax_rate %}
<br/>
<small>
{% blocktrans trimmed with rate=fee.tax_rate|tax_rate_format taxname=fee.tax_rule.name|default:s_taxes %}
{% blocktrans trimmed with rate=fee.tax_rate|floatformat:-2 taxname=fee.tax_rule.name|default:s_taxes %}
incl. {{ rate }}% {{ taxname }}
{% endblocktrans %}
</small>
@@ -903,7 +903,7 @@
<tr>
<td colspan="1"></td>
<td colspan="5">
{{ p.html_info }}
{{ p.html_info|safe }}
{% if staff_session %}
<p>
<a href="" class="btn btn-default btn-xs admin-only" data-expandpayment data-id="{{ p.pk }}">
@@ -1018,7 +1018,7 @@
</dl>
{% endif %}
{% if r.html_info %}
{{ r.html_info }}
{{ r.html_info|safe }}
{% endif %}
{% if staff_session %}
<p>
@@ -2,7 +2,6 @@
{% load i18n %}
{% load static %}
{% load bootstrap3 %}
{% load escapejson %}
{% block inner %}
<h1>{% trans "Connect to device:" %} {{ device.name }}</h1>
@@ -19,7 +18,7 @@
{% trans "Open the app that you want to connect and optionally reset it to the original state." %}
</li>
<li>{% trans "Scan the following configuration code:" %}<br><br>
<script type="application/json" data-replace-with-qr>{{ qrdata|escapejson_dumps }}</script><br>
<script type="text/json" data-replace-with-qr>{{ qrdata|safe }}</script><br>
{% trans "If your app/device does not support scanning a QR code, you can also enter the following information:" %}
<br>
<strong>{% trans "System URL:" %}</strong> <code id="system_url">{{ settings.SITE_URL }}</code>
@@ -560,10 +560,11 @@
</div>
</div>
</div>
<script type="text/plain" id="schema-url">{% static "schema/pdf-layout.schema.json" %}</script>
<script type="text/javascript" src="{% static "pdfjs/pdf.js" %}"></script>
<script type="text/javascript" src="{% static "ajv/ajv2020.bundle.min.js" %}"></script>
<script type="text/javascript" src="{% static "fabric/fabric.min.js" %}"></script>
<script type="text/javascript" src="{% static "pretixcontrol/js/ui/editor.js" %}"></script>
<script type="text/javascript" src="{% static "schema/pdf-layout.validate.js" %}"></script>
<img src="{% static 'pretixpresale/pdf/powered_by_pretix_dark.png' %}" id="poweredby-dark" class="sr-only">
<img src="{% static 'pretixpresale/pdf/powered_by_pretix_white.png' %}" id="poweredby-white" class="sr-only">
{% for family, styles in fonts.items %}
@@ -1,7 +1,6 @@
{% extends "pretixcontrol/base.html" %}
{% load i18n %}
{% load bootstrap3 %}
{% load escapejson %}
{% block title %}{% trans "Add a two-factor authentication device" %}{% endblock %}
{% block content %}
<h1>{% trans "Add a two-factor authentication device" %}</h1>
@@ -33,7 +32,7 @@
</li>
<li>
{% trans "Add a new account to the app by scanning the following barcode:" %}
<script type="application/json" data-replace-with-qr>{{ qrdata|escapejson_dumps }}</script>
<div class="qrcode-canvas" data-qrdata="#qrdata"></div>
<p>
<a data-toggle="collapse" href="#no_scan">
{% trans "Can't scan the barcode?" %}
@@ -82,4 +81,9 @@
</li>
</ol>
<script type="text/json" id="qrdata">
{{ qrdata|safe }}
</script>
{% endblock %}
@@ -3,7 +3,6 @@
{% load bootstrap3 %}
{% load static %}
{% load compress %}
{% load escapejson %}
{% block title %}{% trans "Add a two-factor authentication device" %}{% endblock %}
{% block content %}
<h1>{% trans "Add a two-factor authentication device" %}</h1>
@@ -27,7 +26,9 @@
{% trans "Device registration failed." %}
</div>
<script type="text/json" id="webauthn-enroll">
{{ jsondata|escapejson }}
{{ jsondata|safe }}
</script>
{% compress js %}
<script type="text/javascript" src="{% static "pretixcontrol/js/base64js.js" %}"></script>
@@ -3,7 +3,6 @@
{% load bootstrap3 %}
{% load compress %}
{% load static %}
{% load escapejson %}
{% block content %}
<form class="form-signin" id="webauthn-form" action="" method="post">
{% csrf_token %}
@@ -44,7 +43,7 @@
{% if jsondata %}
<script type="text/json" id="webauthn-login">
{{ jsondata|escapejson }}
{{ jsondata|safe }}
</script>
{% endif %}
{% compress js %}
@@ -1,83 +0,0 @@
{% extends "pretixcontrol/items/base.html" %}
{% load i18n %}
{% load bootstrap3 %}
{% load eventsignal %}
{% load eventurl %}
{% block title %}{% trans "Change multiple vouchers" %}{% endblock %}
{% block inside %}
<h1>
{% trans "Change multiple vouchers" %}
<small>
{% blocktrans trimmed with number=vouchers.count %}
{{ number }} selected
{% endblocktrans %}
</small>
</h1>
<form action="" method="post" class="form-horizontal">
{% csrf_token %}
<div class="hidden">
{% for v in vouchers %}
<input type="hidden" name="voucher" value="{{ v.pk }}">
{% endfor %}
</div>
{% bootstrap_form_errors form %}
<fieldset>
<legend>{% trans "Voucher details" %}</legend>
{% bootstrap_field form.max_usages layout="bulkedit" %}
{% bootstrap_field form.valid_until layout="bulkedit" %}
{% bootstrap_field form.itemvar layout="bulkedit" %}
<div class="bulk-edit-field-group">
<label class="field-toggle">
<input type="checkbox" name="_bulk" value="{{ form.prefix }}__price" {% if form.prefix|add:"__price" in bulk_selected %}checked{% endif %}>
{% trans "change" context "form_bulk" %}
</label>
<div class="field-content">
<div class="form-group">
<label class="col-md-3 control-label" for="id_tag">{% trans "Price effect" %}</label>
<div class="col-md-5">
{% bootstrap_field form.price_mode show_label=False form_group_class="" %}
</div>
<div class="col-md-4">
{% bootstrap_field form.value show_label=False form_group_class="" %}
</div>
</div>
</div>
</div>
<div class="form-group">
<div class="col-md-9 col-md-offset-3">
<div class="controls">
<div class="alert alert-info">
{% blocktrans trimmed %}
If you choose "any product" for a specific quota and choose to reserve quota for this
voucher above, the product can still be unavailable to the voucher holder if another quota
associated with the product is sold out!
{% endblocktrans %}
</div>
</div>
</div>
</div>
{% if form.subevent %}
{% bootstrap_field form.subevent layout="bulkedit" %}
{% endif %}
</fieldset>
<fieldset>
<legend>{% trans "Advanced settings" %}</legend>
{% bootstrap_field form.block_quota layout="bulkedit" %}
{% bootstrap_field form.allow_ignore_quota layout="bulkedit" %}
{% bootstrap_field form.min_usages layout="bulkedit" %}
{% bootstrap_field form.budget addon_after=request.event.currency layout="bulkedit" %}
{% bootstrap_field form.tag layout="bulkedit" %}
{% bootstrap_field form.comment layout="bulkedit" %}
{% bootstrap_field form.show_hidden_items layout="bulkedit" %}
{% bootstrap_field form.all_addons_included layout="bulkedit" %}
{% bootstrap_field form.all_bundles_included layout="bulkedit" %}
</fieldset>
<div class="form-group submit-group">
<button type="submit" class="btn btn-primary btn-save">
{% trans "Save" %}
</button>
</div>
</form>
{% endblock %}
@@ -99,9 +99,6 @@
</p>
<form action="{% url "control:event.vouchers.bulkaction" organizer=request.event.organizer.slug event=request.event.slug %}" method="post">
{% csrf_token %}
{% for field in filter_form %}
{{ field.as_hidden }}
{% endfor %}
<div class="table-responsive">
<table class="table table-hover table-quotas">
<thead>
@@ -115,50 +112,38 @@
{% endif %}
<th>
{% trans "Voucher code" %}
<a href="?{% url_replace request 'filter-ordering' '-code' %}"><i class="fa fa-caret-down"></i></a>
<a href="?{% url_replace request 'filter-ordering' 'code' %}"><i class="fa fa-caret-up"></i></a>
<a href="?{% url_replace request 'ordering' '-code' %}"><i class="fa fa-caret-down"></i></a>
<a href="?{% url_replace request 'ordering' 'code' %}"><i class="fa fa-caret-up"></i></a>
</th>
<th>
{% trans "Redemptions" %}
<a href="?{% url_replace request 'filter-ordering' '-redeemed' %}"><i class="fa fa-caret-down"></i></a>
<a href="?{% url_replace request 'filter-ordering' 'redeemed' %}"><i class="fa fa-caret-up"></i></a>
<a href="?{% url_replace request 'ordering' '-redeemed' %}"><i class="fa fa-caret-down"></i></a>
<a href="?{% url_replace request 'ordering' 'redeemed' %}"><i class="fa fa-caret-up"></i></a>
</th>
<th>
{% trans "Expiry" %}
<a href="?{% url_replace request 'filter-ordering' '-valid_until' %}"><i class="fa fa-caret-down"></i></a>
<a href="?{% url_replace request 'filter-ordering' 'valid_until' %}"><i class="fa fa-caret-up"></i></a>
<a href="?{% url_replace request 'ordering' '-valid_until' %}"><i class="fa fa-caret-down"></i></a>
<a href="?{% url_replace request 'ordering' 'valid_until' %}"><i class="fa fa-caret-up"></i></a>
</th>
<th>
{% trans "Tag" %}
<a href="?{% url_replace request 'filter-ordering' '-tag' %}"><i class="fa fa-caret-down"></i></a>
<a href="?{% url_replace request 'filter-ordering' 'tag' %}"><i class="fa fa-caret-up"></i></a>
<a href="?{% url_replace request 'ordering' '-tag' %}"><i class="fa fa-caret-down"></i></a>
<a href="?{% url_replace request 'ordering' 'tag' %}"><i class="fa fa-caret-up"></i></a>
</th>
<th>
{% trans "Product" %}
<a href="?{% url_replace request 'filter-ordering' '-item' %}"><i class="fa fa-caret-down"></i></a>
<a href="?{% url_replace request 'filter-ordering' 'item' %}"><i class="fa fa-caret-up"></i></a>
<a href="?{% url_replace request 'ordering' '-item' %}"><i class="fa fa-caret-down"></i></a>
<a href="?{% url_replace request 'ordering' 'item' %}"><i class="fa fa-caret-up"></i></a>
</th>
{% if request.event.has_subevents %}
<th>
{% trans "Date" context "subevent" %}
<a href="?{% url_replace request 'filter-ordering' '-subevent' %}"><i class="fa fa-caret-down"></i></a>
<a href="?{% url_replace request 'filter-ordering' 'subevent' %}"><i class="fa fa-caret-up"></i></a>
<a href="?{% url_replace request 'ordering' '-subevent' %}"><i class="fa fa-caret-down"></i></a>
<a href="?{% url_replace request 'ordering' 'subevent' %}"><i class="fa fa-caret-up"></i></a>
</th>
{% endif %}
<th></th>
</tr>
{% if "event.vouchers:write" in request.eventpermset and page_obj.paginator.num_pages > 1 %}
<tr class="table-select-all warning hidden">
<td>
<input type="checkbox" name="__ALL" id="__all" data-results-total="{{ page_obj.paginator.count }}">
</td>
<td colspan="5">
<label for="__all">
{% trans "Select all results on other pages as well" %}
</label>
</td>
</tr>
{% endif %}
</thead>
<tbody>
{% for v in vouchers %}
@@ -226,10 +211,6 @@
<i class="fa fa-trash" aria-hidden="true"></i>
{% trans "Delete selected" %}
</button>
<button type="submit" class="btn btn-primary btn-save" name="action" value="edit"
formaction="{% url "control:event.vouchers.bulkedit" organizer=request.event.organizer.slug event=request.event.slug %}">
<i class="fa fa-edit"></i>{% trans "Edit selected" %}
</button>
</div>
{% endif %}
</form>
@@ -49,11 +49,11 @@
<td>
<strong>
{% if t.tag %}
<a href="{% url "control:event.vouchers" organizer=request.event.organizer.slug event=request.event.slug %}?filter-tag={{ '"'|add:t.tag|add:'"'|urlencode }}">
<a href="{% url "control:event.vouchers" organizer=request.event.organizer.slug event=request.event.slug %}?tag={{ '"'|add:t.tag|add:'"'|urlencode }}">
{{ t.tag }}
</a>
{% else %}
<a href="{% url "control:event.vouchers" organizer=request.event.organizer.slug event=request.event.slug %}?filter-tag={{ '<>'|urlencode }}">
<a href="{% url "control:event.vouchers" organizer=request.event.organizer.slug event=request.event.slug %}?tag={{ '<>'|urlencode }}">
{% trans "Empty tag" %}
</a>
{% endif %}
-1
View File
@@ -383,7 +383,6 @@ urlpatterns = [
re_path(r'^vouchers/bulk_add$', vouchers.VoucherBulkCreate.as_view(), name='event.vouchers.bulk'),
re_path(r'^vouchers/bulk_add/mail_preview$', vouchers.VoucherBulkMailPreview.as_view(), name='event.vouchers.bulk.mail_preview'),
re_path(r'^vouchers/bulk_action$', vouchers.VoucherBulkAction.as_view(), name='event.vouchers.bulkaction'),
re_path(r'^vouchers/bulk_edit$', vouchers.VoucherBulkUpdateView.as_view(), name='event.vouchers.bulkedit'),
re_path(r'^vouchers/import/$', modelimport.VoucherImportView.as_view(), name='event.vouchers.import'),
re_path(r'^vouchers/import/(?P<file>[^/]+)/$', modelimport.VoucherProcessView.as_view(), name='event.vouchers.import.process'),
re_path(r'^orders/(?P<code>[0-9A-Z]+)/transition$', orders.OrderTransition.as_view(),
+1 -2
View File
@@ -243,8 +243,7 @@ def invite(request, token):
if request.user.is_authenticated:
if inv.team.members.filter(pk=request.user.pk).exists():
messages.error(request, _('You cannot accept the invitation for "{}" as you already are part of '
'this team. If you want to add a different user or create a new account, '
'log out and click the invitation link again.').format(inv.team.name))
'this team.').format(inv.team.name))
return redirect('control:index')
else:
with transaction.atomic():
+18 -33
View File
@@ -49,7 +49,7 @@ from django.shortcuts import render
from django.template.loader import get_template
from django.urls import reverse
from django.utils.formats import date_format
from django.utils.html import conditional_escape, escape, format_html
from django.utils.html import escape
from django.utils.timezone import now
from django.utils.translation import gettext_lazy as _, ngettext, pgettext
@@ -112,7 +112,7 @@ def base_widgets(sender, subevent=None, lazy=False, **kwargs):
return [
{
'content': None if lazy else format_html(NUM_WIDGET, num=intcomma(tickc), text=_('Attendees (ordered)')),
'content': None if lazy else NUM_WIDGET.format(num=intcomma(tickc), text=_('Attendees (ordered)')),
'lazy': 'attendees-ordered',
'display_size': 'small',
'priority': 100,
@@ -122,7 +122,7 @@ def base_widgets(sender, subevent=None, lazy=False, **kwargs):
}) + ('?subevent={}'.format(subevent.pk) if subevent else '')
},
{
'content': None if lazy else format_html(NUM_WIDGET, num=intcomma(paidc), text=_('Attendees (paid)')),
'content': None if lazy else NUM_WIDGET.format(num=intcomma(paidc), text=_('Attendees (paid)')),
'lazy': 'attendees-paid',
'display_size': 'small',
'priority': 100,
@@ -132,8 +132,7 @@ def base_widgets(sender, subevent=None, lazy=False, **kwargs):
}) + ('?subevent={}'.format(subevent.pk) if subevent else '')
},
{
'content': None if lazy else format_html(
NUM_WIDGET,
'content': None if lazy else NUM_WIDGET.format(
num=money_filter(round_decimal(rev, sender.currency), sender.currency, hide_currency=True),
text=_('Total revenue ({currency})').format(currency=sender.currency)
),
@@ -146,7 +145,7 @@ def base_widgets(sender, subevent=None, lazy=False, **kwargs):
}) + ('?subevent={}'.format(subevent.pk) if subevent else '')
},
{
'content': None if lazy else format_html(NUM_WIDGET, num=prodc, text=_('Active products')),
'content': None if lazy else NUM_WIDGET.format(num=prodc, text=_('Active products')),
'lazy': 'active-products',
'display_size': 'small',
'priority': 100,
@@ -210,8 +209,8 @@ def waitinglist_widgets(sender, subevent=None, lazy=False, **kwargs):
quota_cache[q.pk] = (quota_cache[q.pk][0], quota_cache[q.pk][1] - min(wlt['cnt'], row[1]))
widgets.append({
'content': None if lazy else format_html(
NUM_WIDGET, num=intcomma(happy), text=_('available to give to people on waiting list')
'content': None if lazy else NUM_WIDGET.format(
num=intcomma(happy), text=_('available to give to people on waiting list')
),
'lazy': 'waitinglist-avail',
'priority': 50,
@@ -221,9 +220,7 @@ def waitinglist_widgets(sender, subevent=None, lazy=False, **kwargs):
})
})
widgets.append({
'content': None if lazy else format_html(
NUM_WIDGET, num=intcomma(wles.count()), text=_('total waiting list length')
),
'content': None if lazy else NUM_WIDGET.format(num=intcomma(wles.count()), text=_('total waiting list length')),
'lazy': 'waitinglist-length',
'display_size': 'small',
'priority': 50,
@@ -250,8 +247,7 @@ def quota_widgets(sender, subevent=None, lazy=False, **kwargs):
if not lazy:
status, left = qa.results[q] if q in qa.results else q.availability(allow_cache=True)
widgets.append({
'content': None if lazy else format_html(
NUM_WIDGET,
'content': None if lazy else NUM_WIDGET.format(
num='{}/{}'.format(intcomma(left), intcomma(q.size)) if q.size is not None else '\u221e',
text=_('{quota} left').format(quota=escape(q.name))
),
@@ -272,8 +268,7 @@ def shop_state_widget(sender, **kwargs):
return [{
'display_size': 'small',
'priority': 1000,
'content': format_html(
'<div class="shopstate">{t1}<br><span class="{cls}"><span class="fa {icon}"></span> {state}</span>{t2}</div>',
'content': '<div class="shopstate">{t1}<br><span class="{cls}"><span class="fa {icon}"></span> {state}</span>{t2}</div>'.format(
t1=_('Your ticket shop is'), t2=_('Click here to change'),
state=_('live') if sender.live and not sender.testmode else (
_('live and in test mode') if sender.live else (
@@ -304,8 +299,7 @@ def checkin_widget(sender, subevent=None, lazy=False, **kwargs):
qs = sender.checkin_lists.filter(subevent=subevent)
for cl in qs:
widgets.append({
'content': None if lazy else format_html(
NUM_WIDGET,
'content': None if lazy else NUM_WIDGET.format(
num='{}/{}'.format(intcomma(cl.inside_count), intcomma(cl.position_count)),
text=_('Present {list}').format(list=escape(cl.name))
),
@@ -346,12 +340,6 @@ def welcome_wizard_widget(sender, **kwargs):
}]
def build_json_response(widgets):
for widget in widgets:
widget['content'] = conditional_escape(widget['content'])
return JsonResponse({'widgets': widgets})
def event_index(request, organizer, event):
from pretix.control.forms.event import CommentForm
@@ -430,7 +418,7 @@ def event_index_widgets_lazy(request, organizer, event):
for r, result in event_dashboard_widgets.send(sender=request.event, subevent=subevent, lazy=False):
widgets.extend(result)
return build_json_response(widgets)
return JsonResponse({'widgets': widgets})
def event_index_log_lazy(request, organizer, event):
@@ -517,7 +505,7 @@ def widgets_for_event_qs(request, qs, user, nmax, lazy=False):
<a href="{url}" class="event">
<div class="name">{event}</div>
<div class="daterange">{daterange}</div>
<div class="times">{times}{timezone}</div>
<div class="times">{times}</div>
</a>
<div class="bottomrow">
{orders}
@@ -561,16 +549,14 @@ def widgets_for_event_qs(request, qs, user, nmax, lazy=False):
status = ('success', _('On sale'))
widgets.append({
'content': format_html(
tpl,
'content': tpl.format(
event=escape(event.name),
times=_('Event series') if event.has_subevents else (
((date_format(event.date_admission.astimezone(tz), 'TIME_FORMAT') + ' / ')
if event.date_admission and event.date_admission != event.date_from else '')
+ (date_format(event.date_from.astimezone(tz), 'TIME_FORMAT') if event.date_from else '')
),
timezone=(
format_html(' <span class="fa fa-globe text-muted" data-toggle="tooltip" title="{}"></span>', tzname)
) + (
' <span class="fa fa-globe text-muted" data-toggle="tooltip" title="{}"></span>'.format(tzname)
if tzname != request.timezone and not event.has_subevents else ''
),
url=reverse('control:event.index', kwargs={
@@ -578,8 +564,7 @@ def widgets_for_event_qs(request, qs, user, nmax, lazy=False):
'organizer': event.organizer.slug
}),
orders=(
format_html(
'<a href="{orders_url}" class="orders">{orders_text}</a>',
'<a href="{orders_url}" class="orders">{orders_text}</a>'.format(
orders_url=reverse('control:event.orders', kwargs={
'event': event.slug,
'organizer': event.organizer.slug
@@ -646,7 +631,7 @@ def user_index_widgets_lazy(request):
request.user,
8
)
return build_json_response(widgets)
return JsonResponse({'widgets': widgets})
def user_index(request):
+13 -33
View File
@@ -41,7 +41,7 @@ from collections import OrderedDict, defaultdict
from decimal import Decimal
from io import BytesIO
from itertools import groupby
from urllib.parse import quote, urlsplit
from urllib.parse import urlsplit
from zoneinfo import ZoneInfo
import bleach
@@ -82,7 +82,7 @@ from pretix.base.models import Event, LogEntry, Order, TaxRule, Voucher
from pretix.base.models.event import EventMetaValue
from pretix.base.services import tickets
from pretix.base.services.invoices import build_preview_invoice_pdf
from pretix.base.signals import get_defining_app, register_ticket_outputs
from pretix.base.signals import register_ticket_outputs
from pretix.base.templatetags.rich_text import markdown_compile_email
from pretix.control.forms.event import (
CancelSettingsForm, CommentForm, ConfirmTextFormset, EventDeleteForm,
@@ -441,7 +441,6 @@ class EventPlugins(EventSettingsViewMixin, EventPermissionRequiredMixin, Templat
plugins_available = {
p.module: p for p in self.available_plugins(self.object)
}
plugin_enabled = None
with transaction.atomic():
save_organizer = False
@@ -491,7 +490,6 @@ class EventPlugins(EventSettingsViewMixin, EventPermissionRequiredMixin, Templat
format_html(_('The plugin {} is now active.'),
format_html("<strong>{}</strong>", pluginmeta.name)),
]
plugin_enabled = module
messages.success(self.request, mark_safe("".join(info)))
else:
self.request.event.log_action('pretix.event.plugins.disabled', user=self.request.user,
@@ -501,19 +499,13 @@ class EventPlugins(EventSettingsViewMixin, EventPermissionRequiredMixin, Templat
self.object.save()
if save_organizer:
self.object.organizer.save()
return redirect(self.get_success_url(plugin_enabled))
return redirect(self.get_success_url())
def get_success_url(self, plugin_enabled) -> str:
if plugin_enabled and self.request.POST.get('go') == 'payment':
return reverse('control:event.settings.payment', kwargs={
'organizer': self.request.organizer.slug,
'event': self.request.event.slug,
}) + '?highlight=' + quote(plugin_enabled) + '#'
else:
return reverse('control:event.settings.plugins', kwargs={
'organizer': self.request.organizer.slug,
'event': self.request.event.slug,
})
def get_success_url(self) -> str:
return reverse('control:event.settings.plugins', kwargs={
'organizer': self.request.organizer.slug,
'event': self.request.event.slug,
})
class PaymentProviderSettings(EventSettingsViewMixin, EventPermissionRequiredMixin, TemplateView, SingleObjectMixin):
@@ -679,8 +671,6 @@ class PaymentSettings(WritePermissionMixin, EventSettingsViewMixin, EventSetting
p.sales_channels = [sales_channels[channel] for channel in p.settings.get('_restrict_to_sales_channels', as_type=list, default=['web'])]
if p.is_meta:
p.show_enabled = p.settings._enabled in (True, 'True')
if self.request.GET.get('highlight') and getattr(get_defining_app(p), 'name', None) == self.request.GET.get('highlight'):
p.highlight = True
return context
@@ -962,12 +952,7 @@ class MailSettingsRendererPreview(MailSettingsPreview):
context=context,
)
r = HttpResponse(v, content_type='text/html')
r['Content-Security-Policy'] = (
# Plugin-provided email templates will contain inline styles or remote images
# but emails should not contain JS
"style-src 'unsafe-inline'; "
"img-src https: data:"
)
r._csp_ignore = True
return r
else:
raise Http404(_('Unknown email renderer.'))
@@ -1443,16 +1428,11 @@ class TaxUpdate(EventSettingsViewMixin, EventPermissionRequiredMixin, UpdateView
form.instance.custom_rules = json.dumps([
f.cleaned_data for f in self.formset.ordered_forms if f not in self.formset.deleted_forms
], cls=I18nJSONEncoder)
if form.has_changed() or self.formset.has_changed():
change_data = {
k: form.cleaned_data.get(k) for k in form.changed_data
}
if self.formset.has_changed():
change_data["custom_rules"] = [
f.cleaned_data for f in self.formset.ordered_forms if f not in self.formset.deleted_forms
]
if form.has_changed():
self.object.log_action(
'pretix.event.taxrule.changed', user=self.request.user, data=change_data
'pretix.event.taxrule.changed', user=self.request.user, data={
k: form.cleaned_data.get(k) for k in form.changed_data
}
)
return super().form_valid(form)
+4 -75
View File
@@ -41,30 +41,6 @@ from pretix.control.forms.mailsetup import SimpleMailForm, SMTPMailForm
logger = logging.getLogger(__name__)
def get_cname_record(hostname):
try:
r = dns.resolver.Resolver()
answers = r.resolve(hostname, 'CNAME')
answers = list(answers)
if len(answers) != 1:
logger.exception('Found multiple CNAME records for {}'.format(hostname))
return
return str(answers[0].target).lower()
except:
logger.exception('Could not fetch CNAME record for {}'.format(hostname))
def get_dmarc_record(hostname):
try:
r = dns.resolver.Resolver()
for resp in r.resolve("_dmarc." + hostname, 'TXT'):
data = b''.join(resp.strings).decode()
if 'DMARC1' in data.strip():
return data
except:
logger.exception("Could not fetch DMARC record for {}".format(hostname))
def get_spf_record(hostname):
try:
r = dns.resolver.Resolver()
@@ -73,7 +49,7 @@ def get_spf_record(hostname):
if data.lower().strip().startswith('v=spf1 '): # RFC7208, section 4.5
return data
except:
logger.exception("Could not fetch SPF record for {}".format(hostname))
logger.exception("Could not fetch SPF record")
def _check_spf_record(not_found_lookup_parts, spf_record, depth):
@@ -192,15 +168,10 @@ class MailSettingsSetupView(TemplateView):
return super().get(request, *args, **kwargs)
session_key = f'sender_mail_verification_code_{self.request.path}_{self.simple_form.cleaned_data.get("mail_from")}'
verify_dns = (
settings.MAIL_CUSTOM_SENDER_SPF_STRING or
(settings.MAIL_CUSTOM_SENDER_DKIM_CNAME and settings.MAIL_CUSTOM_SENDER_DKIM_SELECTOR) or
settings.MAIL_CUSTOM_SENDER_DMARC_REQUIRED
)
allow_save = (
(not settings.MAIL_CUSTOM_SENDER_VERIFICATION_REQUIRED or
('verification' in self.request.POST and self.request.POST.get('verification', '') == self.request.session.get(session_key, None))) and
(not verify_dns or self.request.POST.get('state') == 'save')
(not settings.MAIL_CUSTOM_SENDER_SPF_STRING or self.request.POST.get('state') == 'save')
)
if allow_save:
@@ -221,8 +192,8 @@ class MailSettingsSetupView(TemplateView):
spf_warning = None
spf_record = None
hostname = self.simple_form.cleaned_data['mail_from'].split('@')[-1]
if settings.MAIL_CUSTOM_SENDER_SPF_STRING:
hostname = self.simple_form.cleaned_data['mail_from'].split('@')[-1]
spf_record = get_spf_record(hostname)
if not spf_record:
spf_warning = _(
@@ -239,43 +210,7 @@ class MailSettingsSetupView(TemplateView):
'this system in the SPF record.'
)
dkim_warning = None
dkim_hostname = None
dkim_cname = None
if settings.MAIL_CUSTOM_SENDER_DKIM_CNAME and settings.MAIL_CUSTOM_SENDER_DKIM_SELECTOR:
dkim_hostname = settings.MAIL_CUSTOM_SENDER_DKIM_SELECTOR + '._domainkey.' + hostname
cname_target = get_cname_record(dkim_hostname)
dkim_cname = settings.MAIL_CUSTOM_SENDER_DKIM_CNAME
if not dkim_cname.endswith("."):
dkim_cname += "."
if "%s" in dkim_cname:
dkim_cname = dkim_cname.replace("%s", hostname.replace(".", "-").lower())
if not cname_target:
dkim_warning = _(
'We could not find a CNAME record pointing to our DKIM key for domain you are trying to use. '
'This means that there is a very high change most of the emails will be rejected or marked as '
'spam. We strongly recommend setting up DKIM through a CNAME record. You can do so through the '
'DNS settings at the provider you registered your domain with.'
)
elif cname_target != dkim_cname:
dkim_warning = _(
'We found a CNAME record for a DKIM key, but it is not pointing to the right location. '
'This means that there is a very high chance most of the emails will be rejected or marked as '
'spam. You should update the DNS settings of your domain.'
)
dmarc_warning = None
dmarc_record = None
if settings.MAIL_CUSTOM_SENDER_DMARC_REQUIRED:
dmarc_record = get_dmarc_record(hostname)
if not dmarc_record:
spf_warning = _(
'We did not find DMARC record for your domain. This means that there is a very high chance '
'most of the emails will be rejected or marked as spam. You should update the DNS settings '
'of your domain.'
)
verification = settings.MAIL_CUSTOM_SENDER_VERIFICATION_REQUIRED and not spf_warning and not dkim_warning and not dmarc_warning
verification = settings.MAIL_CUSTOM_SENDER_VERIFICATION_REQUIRED and not spf_warning
if verification:
if 'verification' in self.request.POST:
messages.error(request, _('The verification code was incorrect, please try again.'))
@@ -306,12 +241,6 @@ class MailSettingsSetupView(TemplateView):
'spf_warning': spf_warning,
'spf_record': spf_record,
'spf_key': settings.MAIL_CUSTOM_SENDER_SPF_STRING,
'dkim_warning': dkim_warning,
'dkim_hostname': dkim_hostname,
'dkim_cname': dkim_cname,
'dmarc_warning': dmarc_warning,
'dmarc_record': dmarc_record,
'hostname': hostname,
'recp': self.simple_form.cleaned_data.get('mail_from')
},
using=self.template_engine,
+2 -2
View File
@@ -551,10 +551,10 @@ class OrderDetail(OrderView):
ctx['refunds'] = self.order.refunds.select_related('payment').order_by('-created')
for p in ctx['payments']:
if p.payment_provider:
p.html_info = p.payment_provider.payment_control_render(self.request, p) or ""
p.html_info = (p.payment_provider.payment_control_render(self.request, p) or "").strip()
for r in ctx['refunds']:
if r.payment_provider:
r.html_info = r.payment_provider.refund_control_render(self.request, r) or ""
r.html_info = (r.payment_provider.refund_control_render(self.request, r) or "").strip()
ctx['invoices'] = list(self.order.invoices.all().select_related('event'))
ctx['comment_form'] = CommentForm(initial={
'comment': self.order.comment,
+1
View File
@@ -70,6 +70,7 @@ class BaseEditorView(EventPermissionRequiredMixin, TemplateView):
if 'placeholders' in request.GET:
return self.get_placeholders_help(request)
resp = super().get(request, *args, **kwargs)
resp._csp_ignore = True
return resp
def get_placeholders_help(self, request):
+27 -168
View File
@@ -40,11 +40,9 @@ import bleach
from defusedcsv import csv
from django.conf import settings
from django.contrib import messages
from django.core.exceptions import (
BadRequest, PermissionDenied, ValidationError,
)
from django.core.exceptions import PermissionDenied, ValidationError
from django.db import connection, transaction
from django.db.models import Count, Exists, OuterRef, Sum
from django.db.models import Exists, OuterRef, Sum
from django.http import (
Http404, HttpResponse, HttpResponseBadRequest, HttpResponseRedirect,
JsonResponse,
@@ -57,7 +55,7 @@ from django.utils.safestring import mark_safe
from django.utils.timezone import now
from django.utils.translation import gettext_lazy as _
from django.views.generic import (
CreateView, FormView, ListView, TemplateView, UpdateView, View,
CreateView, ListView, TemplateView, UpdateView, View,
)
from django_scopes import scopes_disabled
@@ -72,9 +70,7 @@ from pretix.base.services.vouchers import vouchers_send
from pretix.base.templatetags.rich_text import markdown_compile_email
from pretix.base.views.tasks import AsyncFormView
from pretix.control.forms.filter import VoucherFilterForm, VoucherTagFilterForm
from pretix.control.forms.vouchers import (
VoucherBulkEditForm, VoucherBulkForm, VoucherForm,
)
from pretix.control.forms.vouchers import VoucherBulkForm, VoucherForm
from pretix.control.permissions import EventPermissionRequiredMixin
from pretix.control.signals import voucher_form_class
from pretix.control.views import PaginationMixin
@@ -84,37 +80,7 @@ from pretix.helpers.models import modelcopy
from pretix.multidomain.urlreverse import eventreverse_absolute
class VoucherQueryMixin:
@cached_property
def request_data(self):
if self.request.method == "POST":
return self.request.POST
return self.request.GET
@scopes_disabled() # we have an event check here, and we can save some performance on subqueries
def get_queryset(self):
qs = self.request.event.vouchers.exclude(
Exists(WaitingListEntry.objects.filter(voucher_id=OuterRef('pk')))
)
if 'voucher' in self.request_data and '__ALL' not in self.request_data:
qs = qs.filter(
id__in=self.request_data.getlist('voucher')
)
elif self.request.method == 'GET' or '__ALL' in self.request_data:
if self.filter_form.is_valid():
qs = self.filter_form.filter_qs(qs)
else:
raise BadRequest("No vouchers selected")
return qs
@cached_property
def filter_form(self):
return VoucherFilterForm(data=self.request_data, prefix='filter', event=self.request.event)
class VoucherList(VoucherQueryMixin, PaginationMixin, EventPermissionRequiredMixin, ListView):
class VoucherList(PaginationMixin, EventPermissionRequiredMixin, ListView):
model = Voucher
context_object_name = 'vouchers'
template_name = 'pretixcontrol/vouchers/index.html'
@@ -122,15 +88,25 @@ class VoucherList(VoucherQueryMixin, PaginationMixin, EventPermissionRequiredMix
@scopes_disabled() # we have an event check here, and we can save some performance on subqueries
def get_queryset(self):
return Voucher.annotate_budget_used(super().get_queryset().select_related(
qs = Voucher.annotate_budget_used(self.request.event.vouchers.exclude(
Exists(WaitingListEntry.objects.filter(voucher_id=OuterRef('pk')))
).select_related(
'item', 'variation', 'seat'
))
if self.filter_form.is_valid():
qs = self.filter_form.filter_qs(qs)
return qs
def get_context_data(self, **kwargs):
ctx = super().get_context_data(**kwargs)
ctx['filter_form'] = self.filter_form
return ctx
@cached_property
def filter_form(self):
return VoucherFilterForm(data=self.request.GET, event=self.request.event)
def get(self, request, *args, **kwargs):
if request.GET.get("download", "") == "yes":
return self._download_csv()
@@ -317,12 +293,6 @@ class VoucherUpdate(EventPermissionRequiredMixin, UpdateView):
f.disabled = True
return form
def get_form_kwargs(self):
return {
**super().get_form_kwargs(),
"event": self.request.event,
}
def get_object(self, queryset=None) -> VoucherForm:
url = resolve(self.request.path_info)
try:
@@ -633,21 +603,26 @@ class VoucherRNG(EventPermissionRequiredMixin, View):
})
class VoucherBulkAction(VoucherQueryMixin, EventPermissionRequiredMixin, View):
class VoucherBulkAction(EventPermissionRequiredMixin, View):
permission = 'event.vouchers:write'
@cached_property
def objects(self):
return self.request.event.vouchers.filter(
id__in=self.request.POST.getlist('voucher')
)
@transaction.atomic
def post(self, request, *args, **kwargs):
if request.POST.get('action') == 'delete':
return render(request, 'pretixcontrol/vouchers/delete_bulk.html', {
'allowed': self.get_queryset().filter(redeemed=0),
'forbidden': self.get_queryset().exclude(redeemed=0),
'allowed': self.objects.filter(redeemed=0),
'forbidden': self.objects.exclude(redeemed=0),
})
elif request.POST.get('action') == 'delete_confirm':
log_entries = []
to_delete = []
to_update = []
for obj in self.get_queryset():
for obj in self.objects:
if obj.allow_delete():
log_entries.append(obj.log_action('pretix.voucher.deleted', user=self.request.user, save=False))
to_delete.append(obj.pk)
@@ -657,14 +632,12 @@ class VoucherBulkAction(VoucherQueryMixin, EventPermissionRequiredMixin, View):
'bulk': True
}, save=False))
obj.max_usages = min(obj.redeemed, obj.max_usages)
to_update.append(obj)
obj.save(update_fields=['max_usages'])
if to_delete:
CartPosition.objects.filter(addon_to__voucher_id__in=to_delete).delete()
CartPosition.objects.filter(voucher_id__in=to_delete).delete()
Voucher.objects.filter(pk__in=to_delete).delete()
if to_update:
Voucher.objects.bulk_update(to_update, ['max_usages'])
LogEntry.bulk_create_and_postprocess(log_entries)
messages.success(request, _('The selected vouchers have been deleted or disabled.'))
@@ -675,117 +648,3 @@ class VoucherBulkAction(VoucherQueryMixin, EventPermissionRequiredMixin, View):
'organizer': self.request.event.organizer.slug,
'event': self.request.event.slug,
})
class VoucherBulkUpdateView(VoucherQueryMixin, EventPermissionRequiredMixin, FormView):
template_name = 'pretixcontrol/vouchers/bulk_edit.html'
permission = 'event.vouchers:write'
context_object_name = 'vouchers'
form_class = VoucherBulkEditForm
def get_queryset(self):
return super().get_queryset().prefetch_related(None).order_by()
def get(self, request, *args, **kwargs):
return HttpResponse(status=405)
@cached_property
def is_submitted(self):
# Usually, django considers a form "bound" / "submitted" on every POST request. However, this view is always
# called with POST method, even if just to pass the selection of objects to work on, so we want to modify
# that behavior
return '_bulk' in self.request.POST
def get_form_kwargs(self):
initial = {}
mixed_values = set()
qs = self.get_queryset().annotate()
fields = (
'valid_until', 'block_quota', 'allow_ignore_quota', 'value', 'tag', 'comment', 'max_usages',
'min_usages', 'price_mode', 'subevent', 'show_hidden_items', 'all_addons_included', 'all_bundles_included',
'budget',
)
for f in fields:
existing_values = list(qs.order_by(f).values(f).annotate(c=Count('*')))
if len(existing_values) == 1:
initial[f] = existing_values[0][f]
elif len(existing_values) > 1:
mixed_values.add(f)
if f == "max_usages":
initial[f] = 1
else:
initial[f] = None
existing_values = list(qs.order_by("item", "variation", "quota").values("item", "variation", "quota").annotate(c=Count('*')))
if len(existing_values) == 1:
i = existing_values[0]
if i["quota"]:
initial["itemvar"] = f'q-{i["quota"]}'
elif i["variation"]:
initial["itemvar"] = f'{i["item"]}-{i["variation"]}'
elif i["item"]:
initial["itemvar"] = f'{i["item"]}'
else:
initial["itemvar"] = None
elif len(existing_values) > 1:
mixed_values.add("itemvar")
initial["itemvar"] = None
kwargs = super().get_form_kwargs()
kwargs['event'] = self.request.event
kwargs['prefix'] = 'bulkedit'
kwargs['initial'] = initial
kwargs['queryset'] = self.get_queryset()
kwargs['mixed_values'] = mixed_values
if not self.is_submitted:
kwargs['data'] = None
kwargs['files'] = None
return kwargs
def get_success_url(self):
return reverse('control:event.vouchers', kwargs={
'organizer': self.request.event.organizer.slug,
'event': self.request.event.slug,
})
def form_valid(self, form):
log_entries = []
# Main form
form.save()
data = {
k: v
for k, v in form.cleaned_data.items()
if k in form.changed_data
}
data['_raw_bulk_data'] = self.request.POST.dict()
for obj in self.get_queryset():
log_entries.append(
obj.log_action('pretix.voucher.changed', data=data, user=self.request.user, save=False)
)
LogEntry.bulk_create_and_postprocess(log_entries)
messages.success(self.request, _('Your changes have been saved.'))
return super().form_valid(form)
def get_context_data(self, **kwargs):
ctx = super().get_context_data(**kwargs)
ctx['vouchers'] = self.get_queryset()
ctx['bulk_selected'] = self.request.POST.getlist("_bulk")
return ctx
@transaction.atomic
def post(self, request, *args, **kwargs):
form = self.get_form()
is_valid = (
self.is_submitted and
form.is_valid()
)
if is_valid:
return self.form_valid(form)
else:
if self.is_submitted:
messages.error(self.request, _('We could not save your changes. See below for details.'))
return self.form_invalid(form)
-37
View File
@@ -19,9 +19,7 @@
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
# <https://www.gnu.org/licenses/>.
#
import itertools
import re
from http.cookies import Morsel
from django.conf import settings
@@ -50,41 +48,6 @@ def set_cookie_without_samesite(request, response, key, *args, **kwargs):
response.cookies[key]['Partitioned'] = True
def thoroughly_delete_cookie(response, cookie_name, **kwargs):
""" Deletes different possible versions of a cookie (SameSite, Partitioned) """
properties = {"SameSite": ["", 'None'], "Partitioned": ["", True]}
for i, values in enumerate(itertools.product(*properties.values())):
m = Morsel()
m.set(cookie_name, '', '')
m.update(kwargs)
m.update(zip(properties.keys(), values))
m['expires'] = "Thu, 01 Jan 1970 00:00:00 GMT"
response.cookies[f'___DELETECOOKIE__{i}___{cookie_name}'] = m
# Make sure settings a cookie afterwards will add a new item in the dictionary, placing
# it below our deletion headers.
response.cookies.pop(cookie_name, None)
def get_all_values_of_cookie(cookie_header, cookie_name):
# like django.http.cookie.parse_cookie, but returns all values of duplicated cookies instead of only the last
values = list()
if not cookie_header:
return values
for chunk in cookie_header.split(";"):
if "=" in chunk:
key, val = chunk.split("=", 1)
else:
# Assume an empty name per
# https://bugzilla.mozilla.org/show_bug.cgi?id=169091
key, val = "", chunk
key, val = key.strip(), val.strip()
if key == cookie_name:
values.append(val)
return values
# Based on https://www.chromium.org/updates/same-site/incompatible-clients
# Copyright 2019 Google LLC.
# SPDX-License-Identifier: Apache-2.0
+1 -1
View File
@@ -47,5 +47,5 @@ def escapejson(value):
@keep_lazy(str, SafeText)
def escapejson_attr(value):
"""Hex encodes characters for use in a html attribute."""
"""Hex encodes characters for use in a html attributw script."""
return mark_safe(force_str(value).translate(_json_escapes_attr))
+1 -4
View File
@@ -20,7 +20,6 @@
# <https://www.gnu.org/licenses/>.
#
import logging
import uuid
from django.core.signals import request_finished
from django.dispatch import receiver
@@ -66,9 +65,7 @@ class RequestIdMiddleware:
import sentry_sdk
sentry_sdk.set_tag("request_id", request.request_id)
else:
# Web server did not pass a request ID, we still generate one to correlate between django logs and
# celery logs
local.request_id = request.request_id = str(uuid.uuid4())
local.request_id = request.request_id = None
return self.get_response(request)
-32
View File
@@ -20,11 +20,9 @@
# <https://www.gnu.org/licenses/>.
#
import copy
from decimal import Decimal
from django.core.files import File
from django.db import models
from django.db.models.fields import DecimalField
class Thumbnail(models.Model):
@@ -56,33 +54,3 @@ def flatten_choices(choices):
yield from label_or_nested
else:
yield value_or_group, label_or_nested
def _normalize_decimal(d: Decimal) -> Decimal:
"""
Strips trailing zeros, e.g.
20.000 20
20.010 20.01
20.100 20.1
But unlike of Decimal.normalize(), 20.000 will not become 2e+1. Very small decimals might still be represented
in scientific notation when printed.
"""
normalized = d.normalize()
sign, digit, exponent = normalized.as_tuple()
if exponent > 0:
return normalized.quantize(1)
return normalized
class NormalizedDecimalField(DecimalField):
"""
Variant of DecimalField that never outputs the trailing zeros, so we always have normalized decimals internally.
Use this only for fields where the trailing zeros are pointless (e.g. percentages), not for monetary amounts.
"""
def from_db_value(self, value, expression, connection):
if value is not None:
value = _normalize_decimal(value)
return value
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+4 -16
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -10195,17 +10195,6 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr ""
@@ -17557,9 +17546,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -17626,7 +17614,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
File diff suppressed because it is too large Load Diff
+183 -132
View File
@@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-06 15:52+0000\n"
"PO-Revision-Date: 2026-07-13 11:28+0000\n"
"Last-Translator: ahmed badr <ahmedbadr@oma.com.eg>\n"
"PO-Revision-Date: 2021-09-15 11:22+0000\n"
"Last-Translator: Mohamed Tawfiq <mtawfiq@wafyapp.com>\n"
"Language-Team: Arabic <https://translate.pretix.eu/projects/pretix/pretix-js/"
"ar/>\n"
"Language: ar\n"
@@ -18,7 +18,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 2026.7.1\n"
"X-Generator: Weblate 4.8\n"
#: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js
msgid "Marked as paid"
@@ -30,110 +30,112 @@ msgstr "تعليق:"
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "PayPal"
msgstr "باي بال"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Venmo"
msgstr "Venmo"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
#: pretix/static/pretixpresale/js/walletdetection.js
msgid "Apple Pay"
msgstr "Apple Pay"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Itaú"
msgstr "إيتاو"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "PayPal Credit"
msgstr "الائتمان من PayPal"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Credit Card"
msgstr "بطاقة الائتمان"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "PayPal Pay Later"
msgstr "الدفع لاحقًا عبر PayPal"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "iDEAL | Wero"
msgstr "iDEAL | التحدي"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "SEPA Direct Debit"
msgstr "الخصم المباشر في منطقة الدفع الموحدة (SEPA)"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Bancontact"
msgstr "بانكونتاكت"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "giropay"
msgstr "giropay"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "SOFORT"
msgstr "فوراً"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
#, fuzzy
#| msgid "Yes"
msgid "eps"
msgstr قاط إضافية"
msgstr عم"
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "MyBank"
msgstr "بنكي"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Przelewy24"
msgstr "Przelewy24"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Verkkopankki"
msgstr "الخدمات المصرفية عبر الإنترنت"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "PayU"
msgstr "الدفع لك"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "BLIK"
msgstr "BLIK"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Trustly"
msgstr "Trustly"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Zimpler"
msgstr "Zimpler"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Maxima"
msgstr "الأعظم"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "OXXO"
msgstr "OXXO"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Boleto"
msgstr "تذكرة"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "WeChat Pay"
msgstr "WeChat Pay"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Mercado Pago"
msgstr "Mercado Pago"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
#: pretix/static/pretixpresale/js/ui/cart.js
msgid "Continue"
msgstr "تابع"
msgstr "المتابعة"
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js
@@ -142,7 +144,7 @@ msgstr "جاري تأكيد الدفع الخاص بك …"
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Payment method unavailable"
msgstr "طريقة الدفع غير متاحة"
msgstr ""
#: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js
msgid "Placed orders"
@@ -154,11 +156,11 @@ msgstr "الطلبات المدفوعة"
#: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js
msgid "Attendees (ordered)"
msgstr "الحاضرون (حسب الترتيب)"
msgstr ""
#: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js
msgid "Attendees (paid)"
msgstr "الحاضرون (الذين دفعوا رسوم الاشتراك)"
msgstr ""
#: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js
msgid "Total revenue"
@@ -190,7 +192,7 @@ msgstr "تبديل قائمة الدخول"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Search results"
msgstr "نتائج البحث"
msgstr "البحث في النتائج"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "No tickets found"
@@ -234,15 +236,15 @@ msgstr "غير مدفوع"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Canceled"
msgstr "تم إلغاؤه"
msgstr "ملغاة"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Confirmed"
msgstr "تم التأكيد"
msgstr ""
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Approval pending"
msgstr "في انتظار الموافقة"
msgstr ""
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Redeemed"
@@ -250,11 +252,11 @@ msgstr "مستخدم"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Cancel"
msgstr "إلغاء"
msgstr "قم بالإلغاء"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Ticket not paid"
msgstr "التذكرة لم يتم دفع ثمنها"
msgstr "لم يتم دفع قيمة التذكرة"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "This ticket is not yet paid. Do you want to continue anyways?"
@@ -274,19 +276,23 @@ msgstr "تم تسجيل الخروج"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Ticket already used"
msgstr "تم استخدام التذكرة بالفعل"
msgstr "تم استخدام التذكرة مسبقا"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Information required"
msgstr "المعلومات المطلوبة"
msgstr "معلومات مطلوبة"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
#, fuzzy
#| msgid "Unknown error."
msgid "Unknown ticket"
msgstr "تذكرة غير معروفة"
msgstr "خطأ غير معروف."
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
#, fuzzy
#| msgid "Entry not allowed"
msgid "Ticket type not allowed here"
msgstr "نوع تذكرة الدخول غير مسموح به هنا"
msgstr "إدخال غير مسموح"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Entry not allowed"
@@ -294,13 +300,17 @@ msgstr "إدخال غير مسموح"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Ticket code revoked/changed"
msgstr "تم إلغاء/تغيير رمز التذكرة"
msgstr "تم إلغاء رمز التذكرة أو تبديله"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
#, fuzzy
#| msgid "Ticket not paid"
msgid "Ticket blocked"
msgstr "التذكرة غير محجوبة"
msgstr "لم يتم دفع قيمة التذكرة"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
#, fuzzy
#| msgid "Ticket not paid"
msgid "Ticket not valid at this time"
msgstr "لم يتم دفع قيمة التذكرة"
@@ -310,11 +320,11 @@ msgstr "تم إلغاء الطلب"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Ticket code is ambiguous on list"
msgstr "رمز التذكرة غير واضح في القائمة"
msgstr ""
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Order not approved"
msgstr "لم تتم الموافقة على الطلب"
msgstr ""
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Checked-in Tickets"
@@ -338,9 +348,12 @@ msgstr "نعم"
#: pretix/static/pretixcontrol/js/ui/question.js
#: pretix/static/pretixpresale/js/ui/questions.js
msgid "No"
msgstr "من"
msgstr "لا"
#: pretix/static/lightbox/js/lightbox.js
#, fuzzy
#| msgctxt "widget"
#| msgid "Close"
msgid "close"
msgstr "إغلاق"
@@ -395,7 +408,7 @@ msgstr ""
#: pretix/static/pretixbase/js/asynctask.js
msgid "We are processing your request …"
msgstr "نحن نقوم بمعالجة طلبك …"
msgstr "جاري معالجة طلبك …"
#: pretix/static/pretixbase/js/asynctask.js
msgid ""
@@ -408,7 +421,7 @@ msgstr ""
#: pretix/static/pretixbase/js/asynctask.js
msgid "If this takes longer than a few minutes, please contact us."
msgstr "إذا استغرق ذلك أكثر من بضع دقائق، يرجى الاتصال بنا."
msgstr ""
#: pretix/static/pretixbase/js/asynctask.js
msgid "Close message"
@@ -424,11 +437,11 @@ msgstr "للنسخ اضغط Ctrl + C!"
#: pretix/static/pretixcontrol/js/ui/checkinrules/App.vue
msgid "Edit"
msgstr "تحرير"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/App.vue
msgid "Visualize"
msgstr "تصور"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/App.vue
msgid ""
@@ -436,13 +449,10 @@ msgid ""
"or variations are not contained in any of your rule parts so people with "
"these tickets will not get in:"
msgstr ""
"تقوم القاعدة الخاصة بك دائمًا بالتصفية حسب المنتج أو النوع، لكن المنتجات أو "
"الأنواع التالية غير مدرجة في أي من أجزاء القاعدة الخاصة بك، لذا لن يتم قبول "
"الأشخاص الذين يحملون هذه التذاكر:"
#: pretix/static/pretixcontrol/js/ui/checkinrules/App.vue
msgid "Please double-check if this was intentional."
msgstr "يرجى التأكد مرة أخرى مما إذا كان ذلك مقصودًا أم لا."
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "All of the conditions below (AND)"
@@ -482,21 +492,21 @@ msgstr "أضف شرطا"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "minutes"
msgstr "دقائق"
msgstr "الدقائق"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Duplicate"
msgstr "مكرر"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgctxt "entry_status"
msgid "present"
msgstr "حاضر"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgctxt "entry_status"
msgid "absent"
msgstr "غائب"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "is one of"
@@ -512,11 +522,11 @@ msgstr "بعد"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "="
msgstr "="
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Product"
msgstr "المنتج"
msgstr "منتج"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Product variation"
@@ -524,7 +534,7 @@ msgstr "نوع المنتج"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Gate"
msgstr "الشارع"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Current date and time"
@@ -532,11 +542,11 @@ msgstr "التاريخ والوقت الحالي"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Current day of the week (1 = Monday, 7 = Sunday)"
msgstr "اليوم الحالي من الأسبوع (1 = الاثنين، 7 = الأحد)"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Current entry status"
msgstr "الحالة الحالية للطلب"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Number of previous entries"
@@ -547,40 +557,48 @@ msgid "Number of previous entries since midnight"
msgstr "عدد المدخلات السابقة قبل منتصف الليل"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
#, fuzzy
#| msgid "Number of previous entries"
msgid "Number of previous entries since"
msgstr "عدد الإدخالات السابقة منذ"
msgstr "عدد المدخلات السابقة"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
#, fuzzy
#| msgid "Number of previous entries"
msgid "Number of previous entries before"
msgstr "عدد الإدخالات السابقة قبل"
msgstr "عدد المدخلات السابقة"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Number of days with a previous entry"
msgstr "عدد الأيام التي تحتوي على مدخل سابق"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
#, fuzzy
#| msgid "Number of days with a previous entry"
msgid "Number of days with a previous entry since"
msgstr "عدد الأيام التي تحتوي على قيد سابق منذ"
msgstr "عدد الأيام التي تحتوي على مدخل سابق"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
#, fuzzy
#| msgid "Number of days with a previous entry"
msgid "Number of days with a previous entry before"
msgstr "عدد الأيام التي يوجد فيها قيد سابق قبل ذلك"
msgstr "عدد الأيام التي تحتوي على مدخل سابق"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Minutes since last entry (-1 on first entry)"
msgstr "عدد الدقائق منذ آخر تسجيل (-1 عند التسجيل الأول)"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Minutes since first entry (-1 on first entry)"
msgstr "عدد الدقائق منذ أول دخول (-1 عند أول دخول)"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/django-interop.ts
msgid "Error: Product not found!"
msgstr "خطأ: لم يتم العثور على المنتج!"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/django-interop.ts
msgid "Error: Variation not found!"
msgstr "خطأ: لم يتم العثور على النسخة!"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/editor.js
msgid "Check-in QR"
@@ -595,12 +613,16 @@ msgid "Group of objects"
msgstr "مجموعة من العناصر"
#: pretix/static/pretixcontrol/js/ui/editor.js
#, fuzzy
#| msgid "Text object"
msgid "Text object (deprecated)"
msgstr "كائن نصي (مهمل)"
msgstr "عنصر نص"
#: pretix/static/pretixcontrol/js/ui/editor.js
#, fuzzy
#| msgid "Text object"
msgid "Text box"
msgstr "مربع نصي"
msgstr نصر نص"
#: pretix/static/pretixcontrol/js/ui/editor.js
msgid "Barcode area"
@@ -647,28 +669,28 @@ msgid "Unknown error."
msgstr "خطأ غير معروف."
#: pretix/static/pretixcontrol/js/ui/main.js
#, fuzzy
#| msgid "Your color has great contrast and is very easy to read!"
msgid "Your color has great contrast and will provide excellent accessibility."
msgstr "يتميز لونك بتباين رائع ويسهل قراءته للغاية! وسيوفر إمكانية وصول ممتازة."
msgstr "اللون يتمتع بتباين كبير وتسهل قراءته!"
#: pretix/static/pretixcontrol/js/ui/main.js
#, fuzzy
#| msgid "Your color has decent contrast and is probably good-enough to read!"
msgid ""
"Your color has decent contrast and is sufficient for minimum accessibility "
"requirements."
msgstr ""
"يتميز لونك بتباين جيد، ومن المرجح أنه مناسب للقراءة! وهو كافٍ لتلبية الحد "
"الأدنى من متطلبات سهولة الوصول."
msgstr "اللون يحظى بتباين معقول ويمكن أن يكون مناسب للقراءة!"
#: pretix/static/pretixcontrol/js/ui/main.js
msgid ""
"Your color has insufficient contrast to white. Accessibility of your site "
"will be impacted."
msgstr ""
"اللون الذي اخترته لا يتمتع بتباين كافٍ مع اللون الأبيض. وسيؤثر ذلك على إمكانية "
"الوصول إلى موقعك."
#: pretix/static/pretixcontrol/js/ui/main.js
msgid "Search query"
msgstr "استعلام البحث"
msgstr "البحث في الاستفسارات"
#: pretix/static/pretixcontrol/js/ui/main.js
msgid "All"
@@ -684,11 +706,11 @@ msgstr "المختارة فقط"
#: pretix/static/pretixcontrol/js/ui/main.js
msgid "Enter page number between 1 and %(max)s."
msgstr "أدخل رقم الصفحة بين 1 و %(max)s."
msgstr ""
#: pretix/static/pretixcontrol/js/ui/main.js
msgid "Invalid page number."
msgstr "رقم الصفحة غير صحيح."
msgstr ""
#: pretix/static/pretixcontrol/js/ui/main.js
msgid "Use a different name internally"
@@ -707,8 +729,10 @@ msgid "Calculating default price…"
msgstr "حساب السعر الافتراضي…"
#: pretix/static/pretixcontrol/js/ui/plugins.js
#, fuzzy
#| msgid "Search results"
msgid "No results"
msgstr "البحث: لا توجد نتائج"
msgstr "البحث في النتائج"
#: pretix/static/pretixcontrol/js/ui/question.js
msgid "Others"
@@ -716,7 +740,7 @@ msgstr "غير ذلك"
#: pretix/static/pretixcontrol/js/ui/question.js
msgid "Count"
msgstr "العدد"
msgstr "احسب"
#: pretix/static/pretixcontrol/js/ui/subevent.js
msgid "(one more date)"
@@ -729,12 +753,12 @@ msgstr[4] "أيام عديدة"
msgstr[5] "أخرى"
#: pretix/static/pretixpresale/js/ui/cart.js
#, fuzzy
#| msgid "The items in your cart are no longer reserved for you."
msgid ""
"The items in your cart are no longer reserved for you. You can still "
"complete your order as long as theyre available."
msgstr ""
"لم تعد المنتجات الموجودة في سلة التسوق محجوزة لك. لا يزال بإمكانك إتمام طلبك "
"طالما كانت هذه المنتجات متوفرة."
msgstr "لم تعد العناصر الموجودة في عربة التسوق الخاصة بك محجوزة لك."
#: pretix/static/pretixpresale/js/ui/cart.js
msgid "Cart expired"
@@ -742,9 +766,13 @@ msgstr "انتهت صلاحية عربة التسوق"
#: pretix/static/pretixpresale/js/ui/cart.js
msgid "Your cart is about to expire."
msgstr "سوف تنتهي صلاحية سلة التسوق الخاصة بك قريبًا."
msgstr ""
#: pretix/static/pretixpresale/js/ui/cart.js
#, fuzzy
#| msgid "The items in your cart are reserved for you for one minute."
#| msgid_plural ""
#| "The items in your cart are reserved for you for {num} minutes."
msgid "The items in your cart are reserved for you for one minute."
msgid_plural "The items in your cart are reserved for you for {num} minutes."
msgstr[0] "سيتم حجز العناصر لك في سلة التسوق لمدة {num}."
@@ -755,24 +783,26 @@ msgstr[4] "سيتم حجز العناصر لك في سلة التسوق لدقا
msgstr[5] "سيتم حجز العناصر لك في سلة التسوق لمدة {num}."
#: pretix/static/pretixpresale/js/ui/cart.js
#, fuzzy
#| msgid "Cart expired"
msgid "Your cart has expired."
msgstr "انتهت صلاحية عربة التسوق"
#: pretix/static/pretixpresale/js/ui/cart.js
#, fuzzy
#| msgid "The items in your cart are no longer reserved for you."
msgid ""
"The items in your cart are no longer reserved for you. You can still "
"complete your order as long as they're available."
msgstr ""
"لم تعد المنتجات الموجودة في سلة التسوق محجوزة لك. لا يزال بإمكانك إتمام طلبك "
"طالما كانت هذه المنتجات متوفرة."
msgstr "لم تعد العناصر الموجودة في عربة التسوق الخاصة بك محجوزة لك."
#: pretix/static/pretixpresale/js/ui/cart.js
msgid "Do you want to renew the reservation period?"
msgstr "هل ترغب في تمديد فترة الحجز؟"
msgstr ""
#: pretix/static/pretixpresale/js/ui/cart.js
msgid "Renew reservation"
msgstr "تجديد الحجز"
msgstr ""
#: pretix/static/pretixpresale/js/ui/main.js
msgid "The organizer keeps %(currency)s %(amount)s"
@@ -792,77 +822,82 @@ msgstr "التوقيت المحلي:"
#: pretix/static/pretixpresale/js/walletdetection.js
msgid "Google Pay"
msgstr "Google Pay"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgctxt "widget"
msgid "Quantity"
msgstr "الكمية"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgctxt "widget"
msgid "Decrease quantity"
msgstr "تقليل الكمية"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgctxt "widget"
msgid "Increase quantity"
msgstr "زيادة الكمية"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgctxt "widget"
msgid "Filter events by"
msgstr "تصفية الأحداث حسب"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgctxt "widget"
msgid "Filter"
msgstr "فلتر"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgctxt "widget"
msgid "Price"
msgstr "السعر"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, javascript-format
msgctxt "widget"
msgid "Original price: %s"
msgstr "السعر الأصلي: %s"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, javascript-format
msgctxt "widget"
msgid "New price: %s"
msgstr "السعر الجديد: %s"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, fuzzy
#| msgid "Selected only"
msgctxt "widget"
msgid "Select"
msgstr "المختارة فقط"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, javascript-format
#, fuzzy, javascript-format
#| msgid "Selected only"
msgctxt "widget"
msgid "Select %s"
msgstr "تم اختيار %s فقط"
msgstr "المختارة فقط"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, javascript-format
#, fuzzy, javascript-format
#| msgctxt "widget"
#| msgid "See variations"
msgctxt "widget"
msgid "Select variant %s"
msgstr "اختر النوع %s"
msgstr "أنظر إلى الاختلافات"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
@@ -905,7 +940,7 @@ msgstr "من %(currency) s %(price)s"
#, javascript-format
msgctxt "widget"
msgid "Image of %s"
msgstr "صورة لـ %s"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
@@ -946,21 +981,27 @@ msgstr "متوفرة مع القسيمة فقط"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, fuzzy
#| msgctxt "widget"
#| msgid "currently available: %s"
msgctxt "widget"
msgid "Not yet available"
msgstr "حاليًا غير متوفر: %s"
msgstr "متوفر حاليا: %s"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgctxt "widget"
msgid "Not available anymore"
msgstr "لم يعد متوفراً"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, fuzzy
#| msgctxt "widget"
#| msgid "currently available: %s"
msgctxt "widget"
msgid "Currently not available"
msgstr "غير متوفر حاليًا: %s"
msgstr "متوفر حاليا: %s"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
@@ -988,20 +1029,24 @@ msgid ""
"There are currently a lot of users in this ticket shop. Please open the shop "
"in a new tab to continue."
msgstr ""
"يوجد حالياً عدد كبير من المستخدمين في متجر التذاكر هذا. يرجى فتح المتجر في "
"علامة تبويب جديدة للمتابعة."
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, fuzzy
#| msgctxt "widget"
#| msgid "Close ticket shop"
msgctxt "widget"
msgid "Open ticket shop"
msgstr "إغلاق/فتح متجر التذاكر"
msgstr "إغلاق متجر التذاكر"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, fuzzy
#| msgctxt "widget"
#| msgid "Resume checkout"
msgctxt "widget"
msgid "Checkout"
msgstr "استئناف عملية الدفع"
msgstr "استئناف الدفع"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
@@ -1016,9 +1061,6 @@ msgid ""
"We could not create your cart, since there are currently too many users in "
"this ticket shop. Please click \"Continue\" to retry in a new tab."
msgstr ""
"لم نتمكن من إنشاء سلة التسوق الخاصة بك، نظرًا لوجود عدد كبير جدًّا من "
"المستخدمين حاليًّا في متجر التذاكر هذا. يرجى النقر على «متابعة» لإعادة المحاولة "
"في علامة تبويب جديدة."
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
@@ -1068,15 +1110,18 @@ msgstr "إغلاق"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, fuzzy
#| msgctxt "widget"
#| msgid "Resume checkout"
msgctxt "widget"
msgid "Close checkout"
msgstr "إغلاق عملية الدفع"
msgstr "استئناف الدفع"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgctxt "widget"
msgid "You cannot cancel this operation. Please wait for loading to finish."
msgstr "لا يمكنك إلغاء هذه العملية. يرجى الانتظار حتى ينتهي التحميل."
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
@@ -1086,15 +1131,21 @@ msgstr "استمرار"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, fuzzy
#| msgctxt "widget"
#| msgid "See variations"
msgctxt "widget"
msgid "Show variants"
msgstr "انظر الاختلافات"
msgstr "أنظر إلى الاختلافات"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, fuzzy
#| msgctxt "widget"
#| msgid "See variations"
msgctxt "widget"
msgid "Hide variants"
msgstr "إخفاء الاختلافات"
msgstr "أنظر إلى الاختلافات"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
@@ -1152,11 +1203,11 @@ msgid ""
"add yourself to the waiting list. We will then notify if seats are available "
"again."
msgstr ""
"تم بيع جميع فئات التذاكر أو بعضها حاليًا. إذا أردت، يمكنك إضافة اسمك إلى "
"قائمة الانتظار. وسنقوم بإخطارك إذا توفرت مقاعد مرة أخرى."
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, fuzzy
#| msgid "Load more"
msgctxt "widget"
msgid "Load more"
msgstr "تحميل المزيد"
@@ -1199,37 +1250,37 @@ msgstr "الأحد"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "Monday"
msgstr "الاثنين"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "Tuesday"
msgstr "الثلاثاء"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "Wednesday"
msgstr "الأربعاء"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "Thursday"
msgstr "الخميس"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "Friday"
msgstr "الجمعة"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "Saturday"
msgstr "السبت"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "Sunday"
msgstr "الأحد"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
@@ -1254,7 +1305,7 @@ msgstr "أبريل"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "May"
msgstr "هناك"
msgstr "مايو"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
+4 -16
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2024-12-11 01:00+0000\n"
"Last-Translator: Neriman Memmedli <nerim4n@pm.me>\n"
"Language-Team: Azerbaijani <https://translate.pretix.eu/projects/pretix/"
@@ -10197,17 +10197,6 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr ""
@@ -17559,9 +17548,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -17628,7 +17616,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
+4 -18
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2026-06-25 14:00+0000\n"
"Last-Translator: Kim Lozano <joaquim.lozano@upc.edu>\n"
"Language-Team: Catalan <https://translate.pretix.eu/projects/pretix/pretix/"
@@ -11822,19 +11822,6 @@ msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
"Això es mostrarà públicament per permetre que els assistents us contactin."
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact address"
msgid "Contact URL"
msgstr "Adreça de contacte"
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr "Imprimeix l'URL"
@@ -20607,9 +20594,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -20710,7 +20696,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
+4 -18
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2026-01-29 19:42+0000\n"
"Last-Translator: Jiří Pastrňák <jiri@pastrnak.email>\n"
"Language-Team: Czech <https://translate.pretix.eu/projects/pretix/pretix/cs/"
@@ -11288,19 +11288,6 @@ msgstr "Kontaktní e-mail"
msgid "We'll show this publicly to allow attendees to contact you."
msgstr "Tento údaj zobrazíme veřejně, aby vás účastníci mohli kontaktovat."
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact"
msgid "Contact URL"
msgstr "Kontakt"
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr "Impressum (adresa URL)"
@@ -19745,9 +19732,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -19865,7 +19851,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
+4 -18
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2023-11-14 11:00+0000\n"
"Last-Translator: Charliecoleg <DM229135@colegsirgar.ac.uk>\n"
"Language-Team: Welsh <https://translate.pretix.eu/projects/pretix/pretix/cy/"
@@ -10258,19 +10258,6 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Content"
msgid "Contact URL"
msgstr "Cynnwys"
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr ""
@@ -17662,9 +17649,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -17731,7 +17717,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
+4 -18
View File
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2026-06-20 17:00+0000\n"
"Last-Translator: Nikolai <nikolai@lengefeldt.de>\n"
"Language-Team: Danish <https://translate.pretix.eu/projects/pretix/pretix/da/"
@@ -11339,19 +11339,6 @@ msgstr "Kontaktadresse"
msgid "We'll show this publicly to allow attendees to contact you."
msgstr "Vi vil vise dette offentligt, så deltagerne kan kontakte dig."
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact"
msgid "Contact URL"
msgstr "Kontakt"
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr "URL til kolofon"
@@ -19824,9 +19811,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -19893,7 +19879,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
+213 -153
View File
@@ -4,17 +4,17 @@ msgid ""
msgstr ""
"Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2026-07-15 14:20+0000\n"
"Last-Translator: Jochen Siebert <siebert@rami.io>\n"
"Language-Team: German <https://translate.pretix.eu/projects/pretix/pretix/"
"de/>\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2026-06-29 17:00+0000\n"
"Last-Translator: CVZ-es <damien.bremont@casadevelazquez.org>\n"
"Language-Team: German <https://translate.pretix.eu/projects/pretix/pretix/de/"
">\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2026.7.1\n"
"X-Generator: Weblate 2026.6.1\n"
"X-Poedit-Bookmarks: -1,-1,904,-1,-1,-1,-1,-1,-1,-1\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
@@ -179,7 +179,7 @@ msgstr "Spanisch (Lateinamerika)"
#: pretix/_base_settings.py
msgid "Thai"
msgstr "Thailändisch"
msgstr ""
#: pretix/_base_settings.py
msgid "Turkish"
@@ -436,7 +436,7 @@ msgstr ""
#: pretix/api/serializers/organizer.py pretix/control/views/organizer.py
#, python-format
msgid "You've been invited to join %(organizer)s"
msgstr "Sie wurden eingeladen, %(organizer)s beizutreten"
msgstr ""
#: pretix/api/serializers/organizer.py pretix/control/views/organizer.py
msgid "This user already has been invited for this team."
@@ -4072,31 +4072,43 @@ msgid "Users"
msgstr "Benutzer"
#: pretix/base/models/auth.py
#, fuzzy
#| msgid "Changes to your account at {organizer}"
msgid "Changes to your account"
msgstr "Änderungen an Ihrem Konto"
msgstr "Änderungen an Ihrem Kundenkonto bei {organizer}"
#: pretix/base/models/auth.py
#, python-brace-format
#, fuzzy, python-brace-format
#| msgid ""
#| "to confirm changing your email address from {old_email}\n"
#| "to {new_email}, use the following code:"
msgid ""
"To change your email address from {old_email} to {new_email}, use the "
"following code:"
msgstr ""
"um Ihre E-Mail-Adresse von {old_email} zu {new_email} zu ändern, verwenden "
"Sie den folgenden Code:"
"um zu bestätigen, dass Sie Ihre E-Mail-Adresse von {old_email}\n"
"zu {new_email} ändern möchten, verwenden Sie den folgenden Code:"
#: pretix/base/models/auth.py
#, python-brace-format
#, fuzzy, python-brace-format
#| msgid ""
#| "to confirm changing your email address from {old_email}\n"
#| "to {new_email}, use the following code:"
msgid ""
"To verify your email address {email} on {instance}, use the following code:"
msgstr ""
"um Ihre Absenderadresse {email} für {instance} zu bestätigen, verwenden Sie "
"den folgenden Code:"
"um zu bestätigen, dass Sie Ihre E-Mail-Adresse von {old_email}\n"
"zu {new_email} ändern möchten, verwenden Sie den folgenden Code:"
#: pretix/base/models/auth.py
#, fuzzy
#| msgid "Enter confirmation code"
msgid "Your confirmation code"
msgstr "Ihr Bestätigungscode"
msgstr "Bestätigungs-Code eingeben"
#: pretix/base/models/auth.py
#, fuzzy
#| msgid "Reset password"
msgid "Reset your password"
msgstr "Passwort zurücksetzen"
@@ -8166,7 +8178,7 @@ msgstr "Zugang zu existierenden Veranstaltungen"
msgctxt "permission_level"
msgid "Access existing and create new events"
msgstr ""
"Zugang zu existierenden Veranstaltungen und neue Veranstaltungen erstellen"
"Zugang zu existieren Veranstaltungen und neue Veranstaltungen erstellen"
#: pretix/base/permissions.py
msgid ""
@@ -8312,7 +8324,7 @@ msgstr "Veranstaltung abgesagt"
#: pretix/base/services/cancelevent.py
msgid "Confirm event cancellation and bulk refund"
msgstr "Event-Absage und Rückerstattung bestätigen"
msgstr ""
#: pretix/base/services/cart.py pretix/base/services/modelimport.py
#: pretix/base/services/orders.py
@@ -8893,8 +8905,10 @@ msgid "Your export did not contain any data."
msgstr "Der Export enthielt keine Daten."
#: pretix/base/services/export.py
#, fuzzy
#| msgid "Scheduled exports"
msgid "Scheduled export failed"
msgstr "Geplanter Export fehlgeschlagen"
msgstr "Geplante Exporte"
#: pretix/base/services/export.py
msgid "Permission denied."
@@ -9230,8 +9244,6 @@ msgstr "Ein Gutschein kann ohne Code nicht erzeugt werden."
msgid ""
"Voucher codes must be unique. Code \"{code}\" already exists in this import."
msgstr ""
"Gutscheincodes müssen einmalig sein. Code \"{code}\" existiert bereits in "
"diesem Import."
#: pretix/base/services/modelimport.py
#, python-brace-format
@@ -9240,19 +9252,13 @@ msgid ""
msgid_plural ""
"Voucher codes must be unique. Import contains existing voucher codes {code}."
msgstr[0] ""
"Gutscheincodes müssen eindeutig sein. Der Import enthält den existierenden "
"Gutscheincode {code}."
msgstr[1] ""
"Gutscheincodes müssen eindeutig sein. Der Import enthält die existierenden "
"Gutscheincodes {code}."
#: pretix/base/services/modelimport.py
msgid ""
"Vouchers could not be imported, probably due to a voucher code already being "
"in use."
msgstr ""
"Die Gutscheine konnten nicht importiert werden, vermutlich weil ein "
"Gutscheincode bereits in Verwendung ist."
#: pretix/base/services/orders.py
msgid ""
@@ -9632,9 +9638,10 @@ msgstr ""
"Bitte erneut versuchen."
#: pretix/base/services/shredder.py
#, python-format
#, fuzzy, python-format
#| msgid "Data shredding completed"
msgid "Data shredding completed for %(event)s"
msgstr "Löschen personenbezogener Daten abgeschlossen für %(event)s"
msgstr "Löschen personenbezogener Daten abgeschlossen"
#: pretix/base/services/stats.py
msgid "Uncategorized"
@@ -11446,21 +11453,6 @@ msgstr ""
"Wir werden diese Adresse veröffentlichen um Teilnehmern zu ermöglichen, Sie "
"zu kontaktieren."
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr "Kontakt-URL"
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
"Wenn Sie diese Option setzen, wird der Kontakt-Link in der Fußzeile auf "
"diese Adresse verweisen statt auf die obige E-Mail-Adresse. Bitte beachten "
"Sie, dass die Kontakt-E-Mail-Adresse trotzdem z.B. mit allen Empfängern von "
"E-Mails geteilt wird."
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr "Impressum (URL)"
@@ -13341,16 +13333,26 @@ msgstr ""
"oder kontaktieren Sie uns."
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#, fuzzy
#| msgid ""
#| "You have requested us to cancel an event which includes a larger bulk-"
#| "refund:"
msgid "You requested to cancel an event that involves a large bulk refund:"
msgstr ""
"Sie haben angefordert, dass eine Veranstaltung abgesagt wird, wodurch eine "
"größere Erstattung vorgenommen wird:"
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#, fuzzy
#| msgid "Estimated refund amount"
msgid "Estimated refund"
msgstr "Voraussichtliche Erstattung"
msgstr "Voraussichtlicher Erstattungsbetrag"
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#, fuzzy
#| msgid ""
#| "Please confirm that you want to proceed by coping the following "
#| "confirmation code into the cancellation form:"
msgid "To confirm, paste the following code into the cancellation form:"
msgstr ""
"Bitte bestätigen Sie, dass Sie fortfahren wollen, indem Sie den folgenden "
@@ -13362,8 +13364,6 @@ msgid ""
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it."
msgstr ""
"Teilen Sie den Code mit niemandem. Das Team von %(instance)s wird nie danach "
"fragen."
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#: pretix/base/templates/pretixbase/email/export_failed.txt
@@ -13372,8 +13372,6 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team"
msgstr ""
"Danke, \n"
"Das Team von %(instance)s"
#: pretix/base/templates/pretixbase/email/email_footer.html
#, python-format
@@ -13381,8 +13379,10 @@ msgid "powered by <a %(a_attr)s>pretix</a>"
msgstr "powered by <a %(a_attr)s>pretix</a>"
#: pretix/base/templates/pretixbase/email/export_failed.txt
#, fuzzy
#| msgid "Your export failed."
msgid "Your scheduled export failed."
msgstr "Ihr geplanter Export ist fehlgeschlagen."
msgstr "Der Export ist fehlgeschlagen."
#: pretix/base/templates/pretixbase/email/export_failed.txt
#: pretix/control/templates/pretixcontrol/event/tax_edit.html
@@ -13390,29 +13390,39 @@ msgid "Reason"
msgstr "Grund"
#: pretix/base/templates/pretixbase/email/export_failed.txt
#, fuzzy
#| msgid "If your export fails five times in a row, it will no longer be sent."
msgid "If an export fails five times in a row, we'll stop sending it."
msgstr ""
"Wenn der Export fünf mal in Folge fehlschlägt, wird er nicht mehr verschickt."
#: pretix/base/templates/pretixbase/email/export_failed.txt
#, fuzzy
#| msgid "You can request to cancel this order."
msgid "You can adjust or remove this export here:"
msgstr "Sie können diesen Export hier anpassen oder löschen:"
msgstr "Sie können eine Stornierung dieser Bestellung anfragen."
#: pretix/base/templates/pretixbase/email/notification.html
#: pretix/base/templates/pretixbase/email/notification.txt
#, fuzzy
#| msgid "You receive these emails based on your notification settings."
msgid "You're receiving this email based on your notification settings."
msgstr ""
"Sie erhalten diese E-Mail auf Basis Ihrer Benachrichtigungs-Einstellungen."
"Sie erhalten diese E-Mail aufgrund Ihrer Benachrichtigungseinstellungen."
#: pretix/base/templates/pretixbase/email/notification.html
#: pretix/base/templates/pretixbase/email/notification.txt
#, fuzzy
#| msgid "Change settings"
msgid "Manage settings"
msgstr "Einstellungen bearbeiten"
#: pretix/base/templates/pretixbase/email/notification.html
#: pretix/base/templates/pretixbase/email/notification.txt
#, fuzzy
#| msgid "Disable notifications"
msgid "Disable all notifications"
msgstr "Alle Benachrichtigungen deaktivieren"
msgstr "Benachrichtigungen deaktivieren"
#: pretix/base/templates/pretixbase/email/order_details.html
msgid ""
@@ -13470,7 +13480,25 @@ msgid "Contact"
msgstr "Kontakt"
#: pretix/base/templates/pretixbase/email/shred_completed.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "we hereby confirm that the following data shredding job has been "
#| "completed:\n"
#| "\n"
#| "Organizer: %(organizer)s\n"
#| "\n"
#| "Event: %(event)s\n"
#| "\n"
#| "Data selection: %(shredders)s\n"
#| "\n"
#| "Start time: %(start_time)s (new data added after this time might not have "
#| "been deleted)\n"
#| "\n"
#| "Best regards,\n"
#| "\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -13488,17 +13516,21 @@ msgid ""
msgstr ""
"Hallo,\n"
"\n"
"der folgende Lösch-Auftrag wurde abgeschlossen:\n"
"wir bestätigen hiermit, dass der folgende Lösch-Auftrag abgeschlossen "
"wurde:\n"
"\n"
"- Veranstalter: %(organizer)s\n"
"- Veranstaltung: %(event)s\n"
"- Datenauswahl: %(shredders)s\n"
"- Startzeit: %(start_time)s\n"
"Veranstalter: %(organizer)s\n"
"\n"
"Daten, die nach dieser Startzeit entstanden sind, sind ggf. nicht gelöscht.\n"
"Veranstaltung: %(event)s\n"
"\n"
"Danke, \n"
"Das Team von %(instance)s\n"
"Datenauswahl: %(shredders)s\n"
"\n"
"Startzeit: %(start_time)s (Daten, die nach diesem Zeitpunkt entstanden sind, "
"sind ggf. nicht gelöscht)\n"
"\n"
"Freundliche Grüße\n"
"\n"
"Das %(instance)s-Team\n"
#: pretix/base/templates/pretixbase/forms/widgets/checkbox_sales_channel_option.html
msgid ""
@@ -13535,15 +13567,11 @@ msgstr "Bitte in neuem Tab fortfahren"
#: pretix/base/templates/pretixbase/framebreak.html
msgid "For security reasons, the following step is only possible in a new tab."
msgstr ""
"Aus Sicherheitsgründen ist der folgende Schritt nur in einem neuen Tab "
"möglich."
#: pretix/base/templates/pretixbase/framebreak.html
msgid ""
"If the new tab did not open automatically, please click the following button:"
msgstr ""
"Wenn der neue Tab sich nicht automatisch geöffnet hat, klicken Sie bitte den "
"folgenden Button:"
#: pretix/base/templates/pretixbase/framebreak.html
#: pretix/presale/templates/pretixpresale/event/cookies.html
@@ -19915,7 +19943,21 @@ msgid "Add property"
msgstr "Eigenschaft hinzufügen"
#: pretix/control/templates/pretixcontrol/email/confirmation_code.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "%(reason)s\n"
#| "\n"
#| " %(code)s\n"
#| "\n"
#| "Please do never give this code to another person. Our support team will "
#| "never ask for this code.\n"
#| "\n"
#| "If this code was not requested by you, please contact us immediately.\n"
#| "\n"
#| "Best regards,\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -19937,17 +19979,33 @@ msgstr ""
"\n"
" %(code)s\n"
"\n"
"Bitte geben Sie diesen Code an niemanden weiter. Das Team von %(instance)s "
"wird nie danach fragen.\n"
"Bitte geben Sie diesen Code nie an eine andere Person weiter. Unser Support-"
"Team wird nie nach diesem Code fragen.\n"
"\n"
"Wenn Sie diesen Code nicht angefragt haben, kontaktieren Sie uns bitte "
"sofort.\n"
"\n"
"Danke, \n"
"Das Team von %(instance)s\n"
"Viele Grüße,\n"
"Ihr %(instance)s-Team\n"
#: pretix/control/templates/pretixcontrol/email/email_setup.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "someone requested to use %(address)s as a sender address on "
#| "%(instance)s.\n"
#| "This will allow them to send emails that are shown to originate from this "
#| "email address.\n"
#| "If that was you, please enter the following confirmation code:\n"
#| "\n"
#| "%(code)s\n"
#| "\n"
#| "If this was not requested by you, you can safely ignore this email.\n"
#| "\n"
#| "Best regards, \n"
#| "\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -19959,9 +20017,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -19970,21 +20027,19 @@ msgid ""
msgstr ""
"Hallo,\n"
"\n"
"jemand hat angefragt, die Adresse %(address)s als Absenderadresse auf %"
"(instance)s zu nutzen. Hierdurch könnten dann E-Mails über %(instance)s "
"verschickt werden, die diese Adresse als Absender tragen. Wenn Sie das "
"waren, geben Sie bitte folgenden Bestätigungscode im Formular ein:\n"
"jemand hat angefragt, die Adresse %(address)s als Absenderadresse auf "
"%(instance)s zu nutzen.\n"
"Hierdurch könnten dann E-Mails verschickt werden, die diese Adresse als "
"Absender tragen.\n"
"Wenn Sie das waren, geben Sie bitte folgenden Bestätigungscode ein:\n"
"\n"
"%(code)s\n"
"\n"
"Teilen Sie diesen Code mit niemandem, außer Sie möchten die Person dazu "
"berechtigen, diese E-Mail-Adresse zu diesem Zweck zu nutzen. Das Team von %"
"(instance)s wird nie nach diesem Code fragen.\n"
"\n"
"Wenn Sie das nicht waren, können Sie diese E-Mail gefahrlos ignorieren.\n"
"\n"
"Danke, \n"
"Das Team von %(instance)s\n"
"Viele Grüße, \n"
"\n"
"Ihr Team von %(instance)s\n"
#: pretix/control/templates/pretixcontrol/email/forgot.txt
#, python-format
@@ -20002,22 +20057,27 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team\n"
msgstr ""
"Hallo,\n"
"\n"
"wir haben eine Anfrage erhalten, das Passwort für Ihren Account bei "
"%(instance)s zurückzusetzen. Um ein neues Passwort zu wählen, klicken Sie "
"auf den folgenden Link:\n"
"\n"
"%(url)s\n"
"\n"
"Wenn Sie dies nicht angefordert haben, können Sie diese E-Mail ignorieren "
"Ihr Passwort wird nicht geändert.\n"
"\n"
"Danke, \n"
"Das Team von %(instance)s\n"
#: pretix/control/templates/pretixcontrol/email/invitation.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "you have been invited to a team on %(instance)s, a platform to perform "
#| "event\n"
#| "ticket sales.\n"
#| "\n"
#| "Organizer: %(organizer)s\n"
#| "Team: %(team)s\n"
#| "\n"
#| "If you want to join that team, just click on the following link:\n"
#| "%(url)s\n"
#| "\n"
#| "If you do not want to join, you can safely ignore or delete this email.\n"
#| "\n"
#| "Best regards, \n"
#| "\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -20039,18 +20099,23 @@ msgstr ""
"Hallo,\n"
"\n"
"Sie wurden in das Team eines Veranstalters auf %(instance)s eingeladen, "
"einer Plattform zum Verkaufen von Veranstaltungstickets.\n"
"einer Plattform zum\n"
"Verkaufen von Veranstaltungstickets.\n"
"\n"
"- Veranstalter: %(organizer)s\n"
"- Team: %(team)s\n"
"Veranstalter: %(organizer)s\n"
"\n"
"Zum Akzeptieren klicken Sie auf den folgenden Link:\n"
"Team: %(team)s\n"
"\n"
"Wenn Sie dem Team beitreten möchten, klicken Sie einfach auf den folgenden "
"Link:\n"
"%(url)s\n"
"\n"
"Wenn Sie dies nicht möchten, können Sie diese Mail ignorieren.\n"
"Wenn Sie dies nicht möchten, können Sie diese Mail problemlos ignorieren\n"
"oder löschen.\n"
"\n"
"Danke, \n"
"Das Team von %(instance)s\n"
"Viele Grüße\n"
"\n"
"Das %(instance)s-Team\n"
#: pretix/control/templates/pretixcontrol/email/login_notice.txt
#, python-format
@@ -20059,24 +20124,21 @@ msgid ""
"\n"
"We noticed a new sign-in to your %(instance)s account:\n"
msgstr ""
"Hallo,\n"
"\n"
"wir haben einen neuen Login in Ihren Account bei %(instance)s festgestellt:\n"
#: pretix/control/templates/pretixcontrol/email/login_notice.txt
msgid "Browser"
msgstr "Browser"
msgstr ""
#: pretix/control/templates/pretixcontrol/email/login_notice.txt
msgid "Operating system"
msgstr "Betriebssystem"
msgstr ""
#: pretix/control/templates/pretixcontrol/email/login_notice.txt
#, python-format
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
@@ -20084,18 +20146,26 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team\n"
msgstr ""
"Wenn Sie dies waren, ist keine Aktion erforderlich.\n"
"\n"
"Wenn Sie diesen Login nicht wiedererkennen, ändern Sie bitte sofort Ihr "
"Passwort:\n"
"\n"
"%(url)s\n"
"\n"
"Danke, \n"
"Das Team von %(instance)s\n"
#: pretix/control/templates/pretixcontrol/email/security_notice.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "this is to inform you that the account information of your %(instance)s "
#| "account has been\n"
#| "changed. In particular, the following changes have been performed:\n"
#| "\n"
#| "%(messages)s\n"
#| "\n"
#| "If this change was not performed by you, please contact us immediately.\n"
#| "\n"
#| "You can review and change your account settings here:\n"
#| "\n"
#| "%(url)s\n"
#| "\n"
#| "Best regards, \n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -20115,19 +20185,21 @@ msgid ""
msgstr ""
"Hallo,\n"
"\n"
"die folgenden Einstellungen Ihres Kontos bei %(instance)s wurden verändert:\n"
"die Einstellungen Ihres %(instance)s-Kontos wurden verändert. Es wurden die "
"folgenden Änderungen\n"
"vorgenommen:\n"
"\n"
"%(messages)s\n"
"\n"
"Wenn diese Änderung nicht von Ihnen vorgenommen wurde, kontaktieren Sie das "
"Team von %(instance)s bitte unverzüglich.\n"
"Wenn diese Änderung nicht von Ihnen vorgenommen wurde, kontaktieren Sie uns "
"bitte unverzüglich.\n"
"\n"
"Sie können Ihre Kontoeinstellungen hier einsehen und verändern:\n"
"\n"
"%(url)s\n"
"\n"
"Danke, \n"
"Das Team von %(instance)s\n"
"Viele Grüße\n"
"Ihr %(instance)s-Team\n"
#: pretix/control/templates/pretixcontrol/email_setup.html
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
@@ -28745,7 +28817,7 @@ msgstr "Der Bestätigungscode war falsch, bitte erneut versuchen."
#: pretix/control/views/mailsetup.py
#, python-format
msgid "Confirm %(address)s as a sender address"
msgstr "Bestätigen Sie %(address)s als Absenderadresse"
msgstr ""
#: pretix/control/views/mailsetup.py
#, python-format
@@ -29970,8 +30042,10 @@ msgid "Open BezahlCode in your banking app to start the payment process."
msgstr "BezahlCode in Banking-App öffnen um den Zahlungsvorgang zu starten."
#: pretix/helpers/security.py
#, fuzzy
#| msgid "Sign in to your account at %(org)s"
msgid "New sign-in to your account"
msgstr "Neue Anmeldung in Ihrem Konto"
msgstr "Log-in in Ihr Kundenkonto bei %(org)s"
#: pretix/multidomain/models.py
msgid "Organizer domain"
@@ -36093,8 +36167,10 @@ msgstr[0] "%(count)s Veranstaltung"
msgstr[1] "%(count)s Veranstaltungen"
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#, fuzzy
#| msgid "No event"
msgid "No events"
msgstr "Keine Veranstaltungen"
msgstr "Keine Veranstaltung"
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_day_calendar.html
@@ -36440,8 +36516,10 @@ msgid "Create account"
msgstr "Konto erstellen"
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
#, fuzzy
#| msgid "The invoice could not be generated."
msgid "Login could not be completed"
msgstr "Login konnte nicht durchgeführt werden"
msgstr "Die Rechnung konnte nicht erstellt werden."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
@@ -36450,54 +36528,43 @@ msgid ""
"process.\n"
" "
msgstr ""
"\n"
" Wir konnten Ihren Login nicht durchführen, da der Prozess "
"unterbrochen wurde.\n"
" "
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "Possible reasons for this:"
msgstr "Mögliche Gründe:"
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
"You started logging in from a link opened inside an app (such as Instagram "
"or an email app), and then continued the login in your main browser."
msgstr ""
"Sie haben den Login von einem Link in einer App (wie z.B. Instagram oder "
"einer E-Mail-App) gestartet und dann in Ihrem normalen Browser fortgesetzt."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "You refreshed the page or used the back button during login."
msgstr ""
"Sie haben während des Logins die Seite neu geladen oder den Zurück-Button "
"betätigt."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "The site was opened in more than one tab or window at the same time."
msgstr ""
"Die Seite war in mehr als einem Tab oder Fenster gleichzeitig geöffnet."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
"There was a long delay between starting and completing the login process."
msgstr "Es gab eine lange Pause zwischen Start und Ende des Loginvorgangs."
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "How to fix this:"
msgstr "Wie Sie dies beheben können:"
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "Close this page."
msgstr "Schließen Sie diese Seite."
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
"Open this website again directly in your main browser (for example Safari or "
"Chrome)."
msgstr ""
"Öffnen Sie die Website erneut direkt mit Ihrem bevorzugten Browser (z.B. "
"Safari oder Chrome)."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
@@ -36505,9 +36572,6 @@ msgid ""
"browser window, without refreshing the page, opening new tabs, or switching "
"apps part-way through."
msgstr ""
"Beginnen Sie den Kauf- oder Login-Vorgang erneut und führen Sie ihn im "
"selben Browserfenster durch, ohne die Seite neu zu laden, neue Tabs zu "
"öffnen oder zwischendurch Apps zu wechseln."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
@@ -36515,10 +36579,6 @@ msgid ""
"before retrying can help. As a last step, try using a different browser or "
"another device (for example, a desktop or laptop computer)."
msgstr ""
"Wenn das Problem fortbesteht, kann es helfen, alle Browser-Fenster zu "
"schließen und Cookies zu löschen. Als letzten Schritt können Sie einen "
"anderen Browser oder ein andres Gerät (z.B. ein Laptop oder Desktop-"
"Computer) verwenden."
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Your membership"
-6
View File
@@ -74,7 +74,6 @@ Bokmål
Boleto
Branding-Informationen
Browsereinstellungen
Browserfenster
BSD-Lizenz
bspw
Bundles
@@ -135,7 +134,6 @@ Einlasskontrolle
Einmalpasswörter
einzuchecken
email
E-Mail-App
E-Mail-Renderer
Enterprise-Lizenz
Enterprise-Lizenzen
@@ -154,7 +152,6 @@ erstmalig
etc
EU-USt-ID-Nr
Event
Event-Absage
Event-Eigenschaft
Eventeingang
Event-Erstellung
@@ -209,7 +206,6 @@ innenname
innennamen
innergemeinschaftliche
Innergemeinschaftlicher
Instagram
Installations-ID
Integrationen
invalidieren
@@ -231,7 +227,6 @@ Linktext
lit
Log-ID
Logindaten
Loginvorgangs
Macau
MapQuest-API-Key
max
@@ -455,7 +450,6 @@ Strong
Swish
systemweiten
Tab
Tabs
tag
Teammitglied
Teamname
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2026-07-07 09:55+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2026-06-28 15:19+0000\n"
"Last-Translator: Raphael Michel <michel@rami.io>\n"
"Language-Team: German (informal) <https://translate.pretix.eu/projects/"
"pretix/pretix/de_Informal/>\n"
@@ -181,7 +181,7 @@ msgstr "Spanisch (Lateinamerika)"
#: pretix/_base_settings.py
msgid "Thai"
msgstr "Thailändisch"
msgstr ""
#: pretix/_base_settings.py
msgid "Turkish"
@@ -438,7 +438,7 @@ msgstr ""
#: pretix/api/serializers/organizer.py pretix/control/views/organizer.py
#, python-format
msgid "You've been invited to join %(organizer)s"
msgstr "Du wurdest eingeladen, %(organizer)s beizutreten"
msgstr ""
#: pretix/api/serializers/organizer.py pretix/control/views/organizer.py
msgid "This user already has been invited for this team."
@@ -4072,31 +4072,43 @@ msgid "Users"
msgstr "Benutzer"
#: pretix/base/models/auth.py
#, fuzzy
#| msgid "Changes to your account at {organizer}"
msgid "Changes to your account"
msgstr "Änderungen an deinem Konto"
msgstr "Änderungen an deinem Kundenkonto bei {organizer}"
#: pretix/base/models/auth.py
#, python-brace-format
#, fuzzy, python-brace-format
#| msgid ""
#| "to confirm changing your email address from {old_email}\n"
#| "to {new_email}, use the following code:"
msgid ""
"To change your email address from {old_email} to {new_email}, use the "
"following code:"
msgstr ""
"um deine E-Mail-Adresse von {old_email} zu {new_email} zu ändern, verwende "
"den folgenden Code:"
"um zu bestätigen, dass du deine E-Mail-Adresse von {old_email}\n"
"zu {new_email} ändern möchtest, verwende den folgenden Code:"
#: pretix/base/models/auth.py
#, python-brace-format
#, fuzzy, python-brace-format
#| msgid ""
#| "to confirm changing your email address from {old_email}\n"
#| "to {new_email}, use the following code:"
msgid ""
"To verify your email address {email} on {instance}, use the following code:"
msgstr ""
"um deine Absenderadresse {email} für {instance} zu bestätigen, verwende den "
"folgenden Code:"
"um zu bestätigen, dass du deine E-Mail-Adresse von {old_email}\n"
"zu {new_email} ändern möchtest, verwende den folgenden Code:"
#: pretix/base/models/auth.py
#, fuzzy
#| msgid "Enter confirmation code"
msgid "Your confirmation code"
msgstr "Dein Bestätigungscode"
msgstr "Bestätigungs-Code eingeben"
#: pretix/base/models/auth.py
#, fuzzy
#| msgid "Reset password"
msgid "Reset your password"
msgstr "Passwort zurücksetzen"
@@ -8305,7 +8317,7 @@ msgstr "Veranstaltung abgesagt"
#: pretix/base/services/cancelevent.py
msgid "Confirm event cancellation and bulk refund"
msgstr "Event-Absage und Rückerstattung bestätigen"
msgstr ""
#: pretix/base/services/cart.py pretix/base/services/modelimport.py
#: pretix/base/services/orders.py
@@ -8883,8 +8895,10 @@ msgid "Your export did not contain any data."
msgstr "Der Export enthielt keine Daten."
#: pretix/base/services/export.py
#, fuzzy
#| msgid "Scheduled exports"
msgid "Scheduled export failed"
msgstr "Geplanter Export fehlgeschlagen"
msgstr "Geplante Exporte"
#: pretix/base/services/export.py
msgid "Permission denied."
@@ -9219,8 +9233,6 @@ msgstr "Ein Gutschein kann ohne Code nicht erzeugt werden."
msgid ""
"Voucher codes must be unique. Code \"{code}\" already exists in this import."
msgstr ""
"Gutscheincodes müssen einmalig sein. Code \"{code}\" existiert bereits in "
"diesem Import."
#: pretix/base/services/modelimport.py
#, python-brace-format
@@ -9229,19 +9241,13 @@ msgid ""
msgid_plural ""
"Voucher codes must be unique. Import contains existing voucher codes {code}."
msgstr[0] ""
"Gutscheincodes müssen eindeutig sein. Der Import enthält den existierenden "
"Gutscheincode {code}."
msgstr[1] ""
"Gutscheincodes müssen eindeutig sein. Der Import enthält die existierenden "
"Gutscheincodes {code}."
#: pretix/base/services/modelimport.py
msgid ""
"Vouchers could not be imported, probably due to a voucher code already being "
"in use."
msgstr ""
"Die Gutscheine konnten nicht importiert werden, vermutlich weil ein "
"Gutscheincode bereits in Verwendung ist."
#: pretix/base/services/orders.py
msgid ""
@@ -9620,9 +9626,10 @@ msgstr ""
"bitte erneut versuchen."
#: pretix/base/services/shredder.py
#, python-format
#, fuzzy, python-format
#| msgid "Data shredding completed"
msgid "Data shredding completed for %(event)s"
msgstr "Löschen personenbezogener Daten abgeschlossen für %(event)s"
msgstr "Löschen personenbezogener Daten abgeschlossen"
#: pretix/base/services/stats.py
msgid "Uncategorized"
@@ -11432,21 +11439,6 @@ msgstr ""
"Wir werden diese Adresse veröffentlichen um Teilnehmer*innen zu ermöglichen, "
"dich zu kontaktieren."
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr "Kontakt-URL"
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
"Wenn du diese Option setzt, wird der Kontakt-Link in der Fußzeile auf diese "
"Adresse verweisen statt auf die obige E-Mail-Adresse. Bitte beachte, dass "
"die Kontakt-E-Mail-Adresse trotzdem z.B. mit allen Empfängern von E-Mails "
"geteilt wird."
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr "Impressum (URL)"
@@ -13319,16 +13311,26 @@ msgstr ""
"kontaktiere uns."
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#, fuzzy
#| msgid ""
#| "You have requested us to cancel an event which includes a larger bulk-"
#| "refund:"
msgid "You requested to cancel an event that involves a large bulk refund:"
msgstr ""
"Du hast angefordert, dass eine Veranstaltung abgesagt wird, wodurch eine "
"größere Erstattung vorgenommen wird:"
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#, fuzzy
#| msgid "Estimated refund amount"
msgid "Estimated refund"
msgstr "Voraussichtliche Erstattung"
msgstr "Voraussichtlicher Erstattungsbetrag"
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#, fuzzy
#| msgid ""
#| "Please confirm that you want to proceed by coping the following "
#| "confirmation code into the cancellation form:"
msgid "To confirm, paste the following code into the cancellation form:"
msgstr ""
"Bitte bestätige, dass du fortfahren willst, indem du den folgenden "
@@ -13340,8 +13342,6 @@ msgid ""
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it."
msgstr ""
"Teilen den Code mit niemandem. Das Team von %(instance)s wird nie danach "
"fragen."
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#: pretix/base/templates/pretixbase/email/export_failed.txt
@@ -13350,8 +13350,6 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team"
msgstr ""
"Danke, \n"
"Das Team von %(instance)s"
#: pretix/base/templates/pretixbase/email/email_footer.html
#, python-format
@@ -13359,8 +13357,10 @@ msgid "powered by <a %(a_attr)s>pretix</a>"
msgstr "powered by <a %(a_attr)s>pretix</a>"
#: pretix/base/templates/pretixbase/email/export_failed.txt
#, fuzzy
#| msgid "Your export failed."
msgid "Your scheduled export failed."
msgstr "Dein geplanter Export ist fehlgeschlagen."
msgstr "Der Export ist fehlgeschlagen."
#: pretix/base/templates/pretixbase/email/export_failed.txt
#: pretix/control/templates/pretixcontrol/event/tax_edit.html
@@ -13368,29 +13368,39 @@ msgid "Reason"
msgstr "Grund"
#: pretix/base/templates/pretixbase/email/export_failed.txt
#, fuzzy
#| msgid "If your export fails five times in a row, it will no longer be sent."
msgid "If an export fails five times in a row, we'll stop sending it."
msgstr ""
"Wenn der Export fünf mal in Folge fehlschlägt, wird er nicht mehr verschickt."
#: pretix/base/templates/pretixbase/email/export_failed.txt
#, fuzzy
#| msgid "You can request to cancel this order."
msgid "You can adjust or remove this export here:"
msgstr "Du kannst diesen Export hier anpassen oder löschen:"
msgstr "Du kannst eine Stornierung dieser Bestellung anfragen."
#: pretix/base/templates/pretixbase/email/notification.html
#: pretix/base/templates/pretixbase/email/notification.txt
#, fuzzy
#| msgid "You receive these emails based on your notification settings."
msgid "You're receiving this email based on your notification settings."
msgstr ""
"Du erhältst diese E-Mail auf Basis deiner Benachrichtigungs-Einstellungen."
"Du erhältst diese E-Mail aufgrund deiner Benachrichtigungseinstellungen."
#: pretix/base/templates/pretixbase/email/notification.html
#: pretix/base/templates/pretixbase/email/notification.txt
#, fuzzy
#| msgid "Change settings"
msgid "Manage settings"
msgstr "Einstellungen bearbeiten"
#: pretix/base/templates/pretixbase/email/notification.html
#: pretix/base/templates/pretixbase/email/notification.txt
#, fuzzy
#| msgid "Disable notifications"
msgid "Disable all notifications"
msgstr "Alle Benachrichtigungen deaktivieren"
msgstr "Benachrichtigungen deaktivieren"
#: pretix/base/templates/pretixbase/email/order_details.html
msgid ""
@@ -13448,7 +13458,25 @@ msgid "Contact"
msgstr "Kontakt"
#: pretix/base/templates/pretixbase/email/shred_completed.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "we hereby confirm that the following data shredding job has been "
#| "completed:\n"
#| "\n"
#| "Organizer: %(organizer)s\n"
#| "\n"
#| "Event: %(event)s\n"
#| "\n"
#| "Data selection: %(shredders)s\n"
#| "\n"
#| "Start time: %(start_time)s (new data added after this time might not have "
#| "been deleted)\n"
#| "\n"
#| "Best regards,\n"
#| "\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -13466,17 +13494,21 @@ msgid ""
msgstr ""
"Hallo,\n"
"\n"
"der folgende Lösch-Auftrag wurde abgeschlossen:\n"
"wir bestätigen hiermit, dass der folgende Lösch-Auftrag abgeschlossen "
"wurde:\n"
"\n"
"- Veranstalter: %(organizer)s\n"
"- Veranstaltung: %(event)s\n"
"- Datenauswahl: %(shredders)s\n"
"- Startzeit: %(start_time)s\n"
"Veranstalter: %(organizer)s\n"
"\n"
"Daten, die nach dieser Startzeit entstanden sind, sind ggf. nicht gelöscht.\n"
"Veranstaltung: %(event)s\n"
"\n"
"Danke, \n"
"Das Team von %(instance)s\n"
"Datenauswahl: %(shredders)s\n"
"\n"
"Startzeit: %(start_time)s (Daten, die nach diesem Zeitpunkt entstanden sind, "
"sind ggf. nicht gelöscht)\n"
"\n"
"Freundliche Grüße\n"
"\n"
"Das %(instance)s-Team\n"
#: pretix/base/templates/pretixbase/forms/widgets/checkbox_sales_channel_option.html
msgid ""
@@ -13513,15 +13545,11 @@ msgstr "Bitte in neuem Tab fortfahren"
#: pretix/base/templates/pretixbase/framebreak.html
msgid "For security reasons, the following step is only possible in a new tab."
msgstr ""
"Aus Sicherheitsgründen ist der folgende Schritt nur in einem neuen Tab "
"möglich."
#: pretix/base/templates/pretixbase/framebreak.html
msgid ""
"If the new tab did not open automatically, please click the following button:"
msgstr ""
"Wenn der neue Tab sich nicht automatisch geöffnet hat, klicke bitte den "
"folgenden Button:"
#: pretix/base/templates/pretixbase/framebreak.html
#: pretix/presale/templates/pretixpresale/event/cookies.html
@@ -19889,7 +19917,21 @@ msgid "Add property"
msgstr "Eigenschaft hinzufügen"
#: pretix/control/templates/pretixcontrol/email/confirmation_code.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "%(reason)s\n"
#| "\n"
#| " %(code)s\n"
#| "\n"
#| "Please do never give this code to another person. Our support team will "
#| "never ask for this code.\n"
#| "\n"
#| "If this code was not requested by you, please contact us immediately.\n"
#| "\n"
#| "Best regards,\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -19911,16 +19953,32 @@ msgstr ""
"\n"
" %(code)s\n"
"\n"
"Bitte gib diesen Code an niemanden weiter. Das Team von %(instance)s wird "
"nie danach fragen.\n"
"Bitte gib diesen Code nie an eine andere Person weiter. Unser Support-Team "
"wird nie nach diesem Code fragen.\n"
"\n"
"Wenn du diesen Code nicht angefragt hast, kontaktiere uns bitte sofort.\n"
"\n"
"Danke, \n"
"Das Team von %(instance)s\n"
"Viele Grüße,\n"
"Dein %(instance)s-Team\n"
#: pretix/control/templates/pretixcontrol/email/email_setup.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "someone requested to use %(address)s as a sender address on "
#| "%(instance)s.\n"
#| "This will allow them to send emails that are shown to originate from this "
#| "email address.\n"
#| "If that was you, please enter the following confirmation code:\n"
#| "\n"
#| "%(code)s\n"
#| "\n"
#| "If this was not requested by you, you can safely ignore this email.\n"
#| "\n"
#| "Best regards, \n"
#| "\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -19932,9 +19990,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -19943,21 +20000,19 @@ msgid ""
msgstr ""
"Hallo,\n"
"\n"
"jemand hat angefragt, die Adresse %(address)s als Absenderadresse auf %"
"(instance)s zu nutzen. Hierdurch könnten dann E-Mails über %(instance)s "
"verschickt werden, die diese Adresse als Absender tragen. Wenn du das warst, "
"gib bitte folgenden Bestätigungscode im Formular ein:\n"
"jemand hat angefragt, die Adresse %(address)s als Absenderadresse auf "
"%(instance)s zu nutzen.\n"
"Hierdurch könnten dann E-Mails verschickt werden, die diese Adresse als "
"Absender tragen.\n"
"Wenn du das warst, gib bitte folgenden Bestätigungscode ein:\n"
"\n"
"%(code)s\n"
"\n"
"Teile diesen Code mit niemandem, außer du möchtest die Person dazu "
"berechtigen, diese E-Mail-Adresse zu diesem Zweck zu nutzen. Das Team von %"
"(instance)s wird nie nach diesem Code fragen.\n"
"\n"
"Wenn du das nicht warst, kannst du diese E-Mail gefahrlos ignorieren.\n"
"\n"
"Danke, \n"
"Das Team von %(instance)s\n"
"Viele Grüße, \n"
"\n"
"Dein Team von %(instance)s\n"
#: pretix/control/templates/pretixcontrol/email/forgot.txt
#, python-format
@@ -19975,22 +20030,27 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team\n"
msgstr ""
"Hallo,\n"
"\n"
"wir haben eine Anfrage erhalten, das Passwort für deinen Account bei "
"%(instance)s zurückzusetzen. Um ein neues Passwort zu wählen, klicke auf den "
"folgenden Link:\n"
"\n"
"%(url)s\n"
"\n"
"Wenn du dies nicht angefordert hast, kannst du diese E-Mail ignorieren "
"dein Passwort wird nicht geändert.\n"
"\n"
"Danke, \n"
"Das Team von %(instance)s\n"
#: pretix/control/templates/pretixcontrol/email/invitation.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "you have been invited to a team on %(instance)s, a platform to perform "
#| "event\n"
#| "ticket sales.\n"
#| "\n"
#| "Organizer: %(organizer)s\n"
#| "Team: %(team)s\n"
#| "\n"
#| "If you want to join that team, just click on the following link:\n"
#| "%(url)s\n"
#| "\n"
#| "If you do not want to join, you can safely ignore or delete this email.\n"
#| "\n"
#| "Best regards, \n"
#| "\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -20012,18 +20072,22 @@ msgstr ""
"Hallo,\n"
"\n"
"du wurdest in das Team eines Veranstalters auf %(instance)s eingeladen, "
"einer Plattform zum Verkaufen von Veranstaltungstickets.\n"
"einer Plattform zum\n"
"Verkaufen von Veranstaltungstickets.\n"
"\n"
"- Veranstalter: %(organizer)s\n"
"- Team: %(team)s\n"
"Veranstalter: %(organizer)s\n"
"\n"
"Zum Akzeptieren klicke auf den folgenden Link:\n"
"Team: %(team)s\n"
"\n"
"Wenn du dem Team beitreten möchtest, klicke einfach auf den folgenden Link:\n"
"%(url)s\n"
"\n"
"Wenn du dies nicht möchtest, kannst du diese Mail ignorieren.\n"
"Wenn du dies nicht möchtest, kannst du diese Mail problemlos ignorieren\n"
"oder löschen.\n"
"\n"
"Danke, \n"
"Das Team von %(instance)s\n"
"Viele Grüße\n"
"\n"
"Das %(instance)s-Team\n"
#: pretix/control/templates/pretixcontrol/email/login_notice.txt
#, python-format
@@ -20032,25 +20096,21 @@ msgid ""
"\n"
"We noticed a new sign-in to your %(instance)s account:\n"
msgstr ""
"Hallo,\n"
"\n"
"wir haben einen neuen Login in deinen Account bei %(instance)s "
"festgestellt:\n"
#: pretix/control/templates/pretixcontrol/email/login_notice.txt
msgid "Browser"
msgstr "Browser"
msgstr ""
#: pretix/control/templates/pretixcontrol/email/login_notice.txt
msgid "Operating system"
msgstr "Betriebssystem"
msgstr ""
#: pretix/control/templates/pretixcontrol/email/login_notice.txt
#, python-format
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
@@ -20058,18 +20118,26 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team\n"
msgstr ""
"Wenn du dies warst, ist keine Aktion erforderlich.\n"
"\n"
"Wenn du diesen Login nicht wiedererkennst, ändere bitte sofort dein "
"Passwort:\n"
"\n"
"%(url)s\n"
"\n"
"Danke, \n"
"Das Team von %(instance)s\n"
#: pretix/control/templates/pretixcontrol/email/security_notice.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "this is to inform you that the account information of your %(instance)s "
#| "account has been\n"
#| "changed. In particular, the following changes have been performed:\n"
#| "\n"
#| "%(messages)s\n"
#| "\n"
#| "If this change was not performed by you, please contact us immediately.\n"
#| "\n"
#| "You can review and change your account settings here:\n"
#| "\n"
#| "%(url)s\n"
#| "\n"
#| "Best regards, \n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -20089,20 +20157,21 @@ msgid ""
msgstr ""
"Hallo,\n"
"\n"
"die folgenden Einstellungen deines Kontos bei %(instance)s wurden "
"verändert:\n"
"die Einstellungen deines %(instance)s-Kontos wurden verändert. Es wurden die "
"folgenden Änderungen\n"
"vorgenommen:\n"
"\n"
"%(messages)s\n"
"\n"
"Wenn diese Änderung nicht von dir vorgenommen wurden, kontaktiere das Team "
"von %(instance)s bitte unverzüglich.\n"
"Wenn diese Änderung nicht von dir vorgenommen wurden, kontaktiere uns bitte "
"unverzüglich.\n"
"\n"
"Du kannst deine Kontoeinstellungen hier einsehen und verändern:\n"
"\n"
"%(url)s\n"
"\n"
"Danke, \n"
"Das Team von %(instance)s\n"
"Viele Grüße\n"
"Dein %(instance)s-Team\n"
#: pretix/control/templates/pretixcontrol/email_setup.html
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
@@ -28704,7 +28773,7 @@ msgstr "Der Bestätigungscode war falsch, bitte erneut versuchen."
#: pretix/control/views/mailsetup.py
#, python-format
msgid "Confirm %(address)s as a sender address"
msgstr "Bestätige %(address)s als Absenderadresse"
msgstr ""
#: pretix/control/views/mailsetup.py
#, python-format
@@ -29926,8 +29995,10 @@ msgid "Open BezahlCode in your banking app to start the payment process."
msgstr "BezahlCode in Banking-App öffnen um den Zahlungsvorgang zu starten."
#: pretix/helpers/security.py
#, fuzzy
#| msgid "Sign in to your account at %(org)s"
msgid "New sign-in to your account"
msgstr "Neue Anmeldung in deinem Konto"
msgstr "Log-in in dein Kundenkonto bei %(org)s"
#: pretix/multidomain/models.py
msgid "Organizer domain"
@@ -36038,8 +36109,10 @@ msgstr[0] "%(count)s Veranstaltung"
msgstr[1] "%(count)s Veranstaltungen"
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#, fuzzy
#| msgid "No event"
msgid "No events"
msgstr "Keine Veranstaltungen"
msgstr "Veranstaltung aufrufen"
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_day_calendar.html
@@ -36385,8 +36458,10 @@ msgid "Create account"
msgstr "Konto erstellen"
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
#, fuzzy
#| msgid "The invoice could not be generated."
msgid "Login could not be completed"
msgstr "Login konnte nicht durchgeführt werden"
msgstr "Die Rechnung konnte nicht erstellt werden."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
@@ -36395,54 +36470,43 @@ msgid ""
"process.\n"
" "
msgstr ""
"\n"
" Wir konnten deinen Login nicht durchführen, da der Prozess "
"unterbrochen wurde.\n"
" "
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "Possible reasons for this:"
msgstr "Mögliche Gründe:"
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
"You started logging in from a link opened inside an app (such as Instagram "
"or an email app), and then continued the login in your main browser."
msgstr ""
"Du hast den Login von einem Link in einer App (wie z.B. Instagram oder einer "
"E-Mail-App) gestartet und dann in Ihrem normalen Browser fortgesetzt."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "You refreshed the page or used the back button during login."
msgstr ""
"Du hast während des Logins die Seite neu geladen oder den Zurück-Button "
"betätigt."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "The site was opened in more than one tab or window at the same time."
msgstr ""
"Die Seite war in mehr als einem Tab oder Fenster gleichzeitig geöffnet."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
"There was a long delay between starting and completing the login process."
msgstr "Es gab eine lange Pause zwischen Start und Ende des Loginvorgangs."
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "How to fix this:"
msgstr "Wie du dies beheben kannst:"
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "Close this page."
msgstr "Schließe diese Seite."
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
"Open this website again directly in your main browser (for example Safari or "
"Chrome)."
msgstr ""
"Öffne die Website erneut direkt mit deinem bevorzugten Browser (z.B. Safari "
"oder Chrome)."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
@@ -36450,9 +36514,6 @@ msgid ""
"browser window, without refreshing the page, opening new tabs, or switching "
"apps part-way through."
msgstr ""
"Beginne den Kauf- oder Login-Vorgang erneut und führe ihn im selben "
"Browserfenster durch, ohne die Seite neu zu laden, neue Tabs zu öffnen oder "
"zwischendurch Apps zu wechseln."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
@@ -36460,10 +36521,6 @@ msgid ""
"before retrying can help. As a last step, try using a different browser or "
"another device (for example, a desktop or laptop computer)."
msgstr ""
"Wenn das Problem fortbesteht, kann es helfen, alle Browser-Fenster zu "
"schließen und Cookies zu löschen. Als letzten Schritt kannst du einen "
"anderen Browser oder ein andres Gerät (z.B. ein Laptop oder Desktop-"
"Computer) verwenden."
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Your membership"
@@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-06 15:52+0000\n"
"PO-Revision-Date: 2026-07-13 11:28+0000\n"
"Last-Translator: Raphael Michel <michel@rami.io>\n"
"PO-Revision-Date: 2026-05-04 07:42+0000\n"
"Last-Translator: Martin Gross <gross@rami.io>\n"
"Language-Team: German (informal) <https://translate.pretix.eu/projects/"
"pretix/pretix-js/de_Informal/>\n"
"Language: de_Informal\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2026.7.1\n"
"X-Generator: Weblate 5.17\n"
#: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js
msgid "Marked as paid"
@@ -430,11 +430,11 @@ msgstr "Drücke Strg+C zum kopieren!"
#: pretix/static/pretixcontrol/js/ui/checkinrules/App.vue
msgid "Edit"
msgstr "Bearbeiten"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/App.vue
msgid "Visualize"
msgstr "Visualisieren"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/App.vue
msgid ""
@@ -442,13 +442,10 @@ msgid ""
"or variations are not contained in any of your rule parts so people with "
"these tickets will not get in:"
msgstr ""
"Deine Regeln filtern immer nach Produkt oder Variation, jedoch sind die "
"folgenden Produkte oder Variationen nicht in einer Ihrer Regeln enthalten, "
"sodass Kunden mit diesen Tickets keinen Eintritt erhalten werden:"
#: pretix/static/pretixcontrol/js/ui/checkinrules/App.vue
msgid "Please double-check if this was intentional."
msgstr "Bitte überprüfe, ob dies beabsichtigt war."
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "All of the conditions below (AND)"
@@ -74,7 +74,6 @@ Bokmål
Boleto
Branding-Informationen
Browsereinstellungen
Browserfenster
BSD-Lizenz
bspw
Bundles
@@ -135,7 +134,6 @@ Einlasskontrolle
Einmalpasswörter
einzuchecken
email
E-Mail-App
E-Mail-Renderer
Enterprise-Lizenz
Enterprise-Lizenzen
@@ -154,7 +152,6 @@ erstmalig
etc
EU-USt-ID-Nr
Event
Event-Absage
Event-Eigenschaft
Eventeingang
Event-Erstellung
@@ -209,7 +206,6 @@ innenname
innennamen
innergemeinschaftliche
Innergemeinschaftlicher
Instagram
Installations-ID
Integrationen
invalidieren
@@ -231,7 +227,6 @@ Linktext
lit
Log-ID
Logindaten
Loginvorgangs
Macau
MapQuest-API-Key
max
@@ -455,7 +450,6 @@ Strong
Swish
systemweiten
Tab
Tabs
tag
Teammitglied
Teamname
+4 -16
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10196,17 +10196,6 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr ""
@@ -17558,9 +17547,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -17627,7 +17615,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
+1 -1
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:33+0000\n"
"POT-Creation-Date: 2026-07-06 15:52+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+4 -18
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2026-02-25 23:00+0000\n"
"Last-Translator: David Ibáñez Cerdeira <dibanez@gmail.com>\n"
"Language-Team: Greek <https://translate.pretix.eu/projects/pretix/pretix/el/"
@@ -12225,19 +12225,6 @@ msgstr ""
"Θα το δείξουμε δημοσίως για να επιτρέψουμε στους συμμετέχοντες να "
"επικοινωνήσουν μαζί σας."
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Bancontact"
msgid "Contact URL"
msgstr "Bancontact"
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr "Διεύθυνση URL αποτύπωσης"
@@ -21428,9 +21415,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -21532,7 +21518,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
+4 -16
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -10195,17 +10195,6 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr ""
@@ -17557,9 +17546,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -17626,7 +17614,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
+219 -163
View File
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2026-07-08 16:00+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2026-06-29 17:00+0000\n"
"Last-Translator: CVZ-es <damien.bremont@casadevelazquez.org>\n"
"Language-Team: Spanish <https://translate.pretix.eu/projects/pretix/pretix/"
"es/>\n"
@@ -181,7 +181,7 @@ msgstr "Español (Latinoamérica)"
#: pretix/_base_settings.py
msgid "Thai"
msgstr "Tailandés"
msgstr ""
#: pretix/_base_settings.py
msgid "Turkish"
@@ -441,7 +441,7 @@ msgstr ""
#: pretix/api/serializers/organizer.py pretix/control/views/organizer.py
#, python-format
msgid "You've been invited to join %(organizer)s"
msgstr "Ha sido invitado a unirse a %(organizer)s"
msgstr ""
#: pretix/api/serializers/organizer.py pretix/control/views/organizer.py
msgid "This user already has been invited for this team."
@@ -4088,31 +4088,45 @@ msgid "Users"
msgstr "Usuarios"
#: pretix/base/models/auth.py
#, fuzzy
#| msgid "Changes to your account at {organizer}"
msgid "Changes to your account"
msgstr "Cambios en su cuenta"
msgstr "Cambios en su cuenta en {organizer}"
#: pretix/base/models/auth.py
#, python-brace-format
#, fuzzy, python-brace-format
#| msgid ""
#| "to confirm changing your email address from {old_email}\n"
#| "to {new_email}, use the following code:"
msgid ""
"To change your email address from {old_email} to {new_email}, use the "
"following code:"
msgstr ""
"Para cambiar su dirección de correo electrónico de {old_email} a "
"{new_email}, utilice el siguiente código:"
"para confirmar el cambio de tu dirección de correo electrónico de "
"{old_email}\n"
"a {new_email}, utiliza el siguiente código:"
#: pretix/base/models/auth.py
#, python-brace-format
#, fuzzy, python-brace-format
#| msgid ""
#| "to confirm changing your email address from {old_email}\n"
#| "to {new_email}, use the following code:"
msgid ""
"To verify your email address {email} on {instance}, use the following code:"
msgstr ""
"Para verificar su dirección de correo electrónico {email} en {instance}, "
"utilice el siguiente código:"
"para confirmar el cambio de tu dirección de correo electrónico de "
"{old_email}\n"
"a {new_email}, utiliza el siguiente código:"
#: pretix/base/models/auth.py
#, fuzzy
#| msgid "Enter confirmation code"
msgid "Your confirmation code"
msgstr "Su código de confirmación"
msgstr "Introduzca el código de confirmación"
#: pretix/base/models/auth.py
#, fuzzy
#| msgid "Reset password"
msgid "Reset your password"
msgstr "Restablecer contraseña"
@@ -8315,7 +8329,7 @@ msgstr "Evento cancelado"
#: pretix/base/services/cancelevent.py
msgid "Confirm event cancellation and bulk refund"
msgstr "Confirmar la cancelación del evento y el reembolso masivo"
msgstr ""
#: pretix/base/services/cart.py pretix/base/services/modelimport.py
#: pretix/base/services/orders.py
@@ -8896,8 +8910,10 @@ msgid "Your export did not contain any data."
msgstr "Su exportación no contenía ningún dato."
#: pretix/base/services/export.py
#, fuzzy
#| msgid "Scheduled exports"
msgid "Scheduled export failed"
msgstr "La exportación programada ha fallado"
msgstr "Exportaciones programadas"
#: pretix/base/services/export.py
msgid "Permission denied."
@@ -9233,8 +9249,6 @@ msgstr "No se puede crear un vale de compra sin un código."
msgid ""
"Voucher codes must be unique. Code \"{code}\" already exists in this import."
msgstr ""
"Los códigos promocionales deben ser únicos. El código «{code}» ya existe en "
"esta importación."
#: pretix/base/services/modelimport.py
#, python-brace-format
@@ -9243,19 +9257,13 @@ msgid ""
msgid_plural ""
"Voucher codes must be unique. Import contains existing voucher codes {code}."
msgstr[0] ""
"Los códigos promocionales deben ser únicos. La importación incluye el código "
"promocional ya existente {code}."
msgstr[1] ""
"Los códigos promocionales deben ser únicos. La importación incluye códigos "
"promocionales ya existentes {code}."
#: pretix/base/services/modelimport.py
msgid ""
"Vouchers could not be imported, probably due to a voucher code already being "
"in use."
msgstr ""
"No se han podido importar los vales, probablemente porque ya se estaba "
"utilizando un código de vale."
#: pretix/base/services/orders.py
msgid ""
@@ -9622,9 +9630,10 @@ msgstr ""
"nuevo."
#: pretix/base/services/shredder.py
#, python-format
#, fuzzy, python-format
#| msgid "Data shredding completed"
msgid "Data shredding completed for %(event)s"
msgstr "Se ha completado la destrucción de datos de %(event)s"
msgstr "Destrucción de datos completada"
#: pretix/base/services/stats.py
msgid "Uncategorized"
@@ -11452,21 +11461,6 @@ msgstr ""
"Lo mostraremos públicamente para que los asistentes puedan ponerse en "
"contacto con usted."
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr "URL de contacto"
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
"Si activas esta opción, el enlace de contacto del pie de página redirigirá "
"aquí, en lugar de utilizar la dirección de correo electrónico indicada más "
"arriba. Ten en cuenta que aún así tendrás que añadir una dirección de correo "
"electrónico de contacto que se incluirá en todos los correos que envíes."
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr "Pie de imprenta URL"
@@ -13330,18 +13324,30 @@ msgstr ""
"póngase en contacto con nosotros."
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#, fuzzy
#| msgid ""
#| "You have requested us to cancel an event which includes a larger bulk-"
#| "refund:"
msgid "You requested to cancel an event that involves a large bulk refund:"
msgstr ""
"Has solicitado cancelar un evento que conlleva un reembolso a gran escala:"
"Nos ha solicitado cancelar un evento que incluye un reembolso masivo de "
"mayor importe:"
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#, fuzzy
#| msgid "Estimated refund amount"
msgid "Estimated refund"
msgstr "Reembolso estimado"
msgstr "Importe estimado del reembolso"
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#, fuzzy
#| msgid ""
#| "Please confirm that you want to proceed by coping the following "
#| "confirmation code into the cancellation form:"
msgid "To confirm, paste the following code into the cancellation form:"
msgstr ""
"Para confirmarlo, pegue el siguiente código en el formulario de cancelación:"
"Confirme que desea continuar copiando el siguiente código de confirmación en "
"el formulario de cancelación:"
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#, python-format
@@ -13349,8 +13355,6 @@ msgid ""
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it."
msgstr ""
"No comparta este código con nadie. El equipo de %(instance)s nunca se lo "
"pedirá."
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#: pretix/base/templates/pretixbase/email/export_failed.txt
@@ -13359,8 +13363,6 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team"
msgstr ""
"Gracias, \n"
"El equipo de %(instance)s"
#: pretix/base/templates/pretixbase/email/email_footer.html
#, python-format
@@ -13368,8 +13370,10 @@ msgid "powered by <a %(a_attr)s>pretix</a>"
msgstr "creado por <a %(a_attr)s>pretix</a>"
#: pretix/base/templates/pretixbase/email/export_failed.txt
#, fuzzy
#| msgid "Your export failed."
msgid "Your scheduled export failed."
msgstr "La exportación programada ha fallado."
msgstr "Su exportación falló."
#: pretix/base/templates/pretixbase/email/export_failed.txt
#: pretix/control/templates/pretixcontrol/event/tax_edit.html
@@ -13377,29 +13381,39 @@ msgid "Reason"
msgstr "Razón"
#: pretix/base/templates/pretixbase/email/export_failed.txt
#, fuzzy
#| msgid "If your export fails five times in a row, it will no longer be sent."
msgid "If an export fails five times in a row, we'll stop sending it."
msgstr "Si una exportación falla cinco veces seguidas, dejaremos de enviarla."
msgstr "Si su exportación falla cinco veces seguidas, ya no se enviará."
#: pretix/base/templates/pretixbase/email/export_failed.txt
#, fuzzy
#| msgid "You can request to cancel this order."
msgid "You can adjust or remove this export here:"
msgstr "Puede ajustar o eliminar esta exportación aquí:"
msgstr "Puede solicitar cancelar este pedido."
#: pretix/base/templates/pretixbase/email/notification.html
#: pretix/base/templates/pretixbase/email/notification.txt
#, fuzzy
#| msgid "You receive these emails based on your notification settings."
msgid "You're receiving this email based on your notification settings."
msgstr ""
"Está recibiendo este correo electrónico según su configuración de "
"notificaciones."
"Recibirá estos mensajes de correo electrónico en función de su configuración "
"de notificación."
#: pretix/base/templates/pretixbase/email/notification.html
#: pretix/base/templates/pretixbase/email/notification.txt
#, fuzzy
#| msgid "Change settings"
msgid "Manage settings"
msgstr "Gestionar la configuración"
msgstr "Modificar la configuración"
#: pretix/base/templates/pretixbase/email/notification.html
#: pretix/base/templates/pretixbase/email/notification.txt
#, fuzzy
#| msgid "Disable notifications"
msgid "Disable all notifications"
msgstr "Desactivar todas las notificaciones"
msgstr "Desactivar notificaciones"
#: pretix/base/templates/pretixbase/email/order_details.html
msgid ""
@@ -13457,7 +13471,25 @@ msgid "Contact"
msgstr "Contacto"
#: pretix/base/templates/pretixbase/email/shred_completed.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "we hereby confirm that the following data shredding job has been "
#| "completed:\n"
#| "\n"
#| "Organizer: %(organizer)s\n"
#| "\n"
#| "Event: %(event)s\n"
#| "\n"
#| "Data selection: %(shredders)s\n"
#| "\n"
#| "Start time: %(start_time)s (new data added after this time might not have "
#| "been deleted)\n"
#| "\n"
#| "Best regards,\n"
#| "\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -13475,17 +13507,20 @@ msgid ""
msgstr ""
"Hola,\n"
"\n"
"Se ha completado la siguiente tarea de eliminación de datos:\n"
"Por la presente confirmamos que se ha completado el siguiente trabajo de "
"destrucción de datos:\n"
"\n"
"- Organizador: %(organizer)s\n"
"- Evento: %(event)s\n"
"- Selección de datos: %(shredders)s\n"
"- Hora de inicio: %(start_time)s\n"
"Organizador: %(organizer)s\n"
"\n"
"Es posible que los datos añadidos al evento después de la hora de inicio no "
"se hayan eliminado.\n"
"Evento: %(event)s\n"
"\n"
"Selección de datos: %(shredders)s\n"
"\n"
"Hora de inicio: %(start_time)s (es posible que los nuevos datos agregados "
"después de esta hora no se hayan eliminado)\n"
"\n"
"Atentamente,\n"
"\n"
"Gracias, \n"
"El equipo de %(instance)s\n"
#: pretix/base/templates/pretixbase/forms/widgets/checkbox_sales_channel_option.html
@@ -13523,15 +13558,11 @@ msgstr "Por favor, continúe en una nueva pestaña"
#: pretix/base/templates/pretixbase/framebreak.html
msgid "For security reasons, the following step is only possible in a new tab."
msgstr ""
"Por motivos de seguridad, el siguiente paso solo se puede realizar en una "
"nueva pestaña."
#: pretix/base/templates/pretixbase/framebreak.html
msgid ""
"If the new tab did not open automatically, please click the following button:"
msgstr ""
"Si la nueva pestaña no se ha abierto automáticamente, haga clic en el "
"siguiente botón:"
#: pretix/base/templates/pretixbase/framebreak.html
#: pretix/presale/templates/pretixpresale/event/cookies.html
@@ -19916,7 +19947,21 @@ msgid "Add property"
msgstr "Añadir propiedad"
#: pretix/control/templates/pretixcontrol/email/confirmation_code.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "%(reason)s\n"
#| "\n"
#| " %(code)s\n"
#| "\n"
#| "Please do never give this code to another person. Our support team will "
#| "never ask for this code.\n"
#| "\n"
#| "If this code was not requested by you, please contact us immediately.\n"
#| "\n"
#| "Best regards,\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -19936,19 +19981,35 @@ msgstr ""
"\n"
"%(reason)s\n"
"\n"
" %(code)s\n"
"   \t%(code)s\n"
"\n"
"No comparta este código con nadie. El equipo de %(instance)s nunca se lo "
"pedirá.\n"
"Por favor, nunca compartas este código con otra persona. Nuestro equipo de "
"asistencia nunca te pedirá este código.\n"
"\n"
"Si no ha solicitado este código, póngase en contacto con nosotros "
"inmediatamente.\n"
"Si no fuiste tú quien solicitó este código, contacta con nosotros de "
"inmediato.\n"
"\n"
"Gracias, \n"
"Atentamente,\n"
"El equipo de %(instance)s\n"
#: pretix/control/templates/pretixcontrol/email/email_setup.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "someone requested to use %(address)s as a sender address on "
#| "%(instance)s.\n"
#| "This will allow them to send emails that are shown to originate from this "
#| "email address.\n"
#| "If that was you, please enter the following confirmation code:\n"
#| "\n"
#| "%(code)s\n"
#| "\n"
#| "If this was not requested by you, you can safely ignore this email.\n"
#| "\n"
#| "Best regards, \n"
#| "\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -19960,9 +20021,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -19971,23 +20031,20 @@ msgid ""
msgstr ""
"Hola,\n"
"\n"
"Alguien ha solicitado utilizar %(address)s como dirección de remitente en %"
"(instance)s. Una vez verificado, los correos electrónicos enviados desde %"
"(instance)s podrán mostrar esta dirección como remitente.\n"
"alguien solicitó usar %(address)s como dirección de remitente en "
"%(instance)s.\n"
"Esto les permitirá enviar correos electrónicos que se muestren originados en "
"esta dirección de correo electrónico.\n"
"Si ese era usted, ingrese el siguiente código de confirmación:\n"
"\n"
"Si ha sido usted quien lo ha solicitado, introduzca el siguiente código en "
"el formulario de configuración:\n"
"%(code)s\n"
"\n"
" %(code)s\n"
"Si usted no lo solicitó, puede ignorar este correo electrónico con "
"seguridad.\n"
"\n"
"No comparta este código con nadie a menos que quiera autorizarle a utilizar "
"esta dirección para este fin. El equipo de %(instance)s nunca se lo pedirá.\n"
"Atentamente,\n"
"\n"
"Si no ha solicitado esto, puede ignorar este correo electrónico sin ningún "
"problema.\n"
"\n"
"Gracias, \n"
"El equipo de %(instance)s\n"
"Tu equipo de %(instance)s\n"
#: pretix/control/templates/pretixcontrol/email/forgot.txt
#, python-format
@@ -20005,22 +20062,27 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team\n"
msgstr ""
"Hola,\n"
"\n"
"Hemos recibido una solicitud para restablecer la contraseña de su cuenta de "
"%(instance)s. Para elegir una nueva contraseña, siga el enlace que aparece a "
"continuación:\n"
"\n"
"%(url)s\n"
"\n"
"Si no ha solicitado este restablecimiento, puede ignorar este correo "
"electrónico sin ningún problema: su contraseña no cambiará.\n"
"\n"
"Gracias, \n"
"El equipo de %(instance)s\n"
#: pretix/control/templates/pretixcontrol/email/invitation.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "you have been invited to a team on %(instance)s, a platform to perform "
#| "event\n"
#| "ticket sales.\n"
#| "\n"
#| "Organizer: %(organizer)s\n"
#| "Team: %(team)s\n"
#| "\n"
#| "If you want to join that team, just click on the following link:\n"
#| "%(url)s\n"
#| "\n"
#| "If you do not want to join, you can safely ignore or delete this email.\n"
#| "\n"
#| "Best regards, \n"
#| "\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -20039,22 +20101,22 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team\n"
msgstr ""
"Hola,\n"
"Hola, \n"
"\n"
"Ha sido invitado a unirse a un equipo en %(instance)s, una plataforma de "
"venta de entradas para eventos.\n"
"usted ha sido invitado a un equipo de %(instance)s, una plataforma para "
"realizar \n"
"ventas de entradas de eventos. \n"
"\n"
"- Organizador: %(organizer)s\n"
"- Equipo: %(team)s\n"
"Organizador: %(organizer)s\n"
"Team : %(team)s \n"
"\n"
"Para aceptar, siga el enlace que aparece a continuación:\n"
"Si quieres formar parte de este equipo, haz clic en el siguiente enlace :\n"
"%(url)s \n"
"\n"
"%(url)s\n"
"Si no quieres unirte, puedes ignorar o eliminar este correo electrónico. \n"
"\n"
"Si no desea unirse, puede ignorar este correo electrónico sin ningún "
"problema.\n"
"Saludos cordiales, \n"
"\n"
"Gracias, \n"
"El equipo de %(instance)s\n"
#: pretix/control/templates/pretixcontrol/email/login_notice.txt
@@ -20064,24 +20126,21 @@ msgid ""
"\n"
"We noticed a new sign-in to your %(instance)s account:\n"
msgstr ""
"Hola,\n"
"\n"
"Hemos detectado un nuevo inicio de sesión en su cuenta de %(instance)s:\n"
#: pretix/control/templates/pretixcontrol/email/login_notice.txt
msgid "Browser"
msgstr "Navegador"
msgstr ""
#: pretix/control/templates/pretixcontrol/email/login_notice.txt
msgid "Operating system"
msgstr "Sistema operativo"
msgstr ""
#: pretix/control/templates/pretixcontrol/email/login_notice.txt
#, python-format
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
@@ -20089,17 +20148,26 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team\n"
msgstr ""
"Si no ha sido usted, no es necesario que haga nada.\n"
"\n"
"Si no reconoce este inicio de sesión, cambie su contraseña inmediatamente:\n"
"\n"
"%(url)s\n"
"\n"
"Gracias, \n"
"El equipo de %(instance)s\n"
#: pretix/control/templates/pretixcontrol/email/security_notice.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "this is to inform you that the account information of your %(instance)s "
#| "account has been\n"
#| "changed. In particular, the following changes have been performed:\n"
#| "\n"
#| "%(messages)s\n"
#| "\n"
#| "If this change was not performed by you, please contact us immediately.\n"
#| "\n"
#| "You can review and change your account settings here:\n"
#| "\n"
#| "%(url)s\n"
#| "\n"
#| "Best regards, \n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -20117,20 +20185,22 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team\n"
msgstr ""
"Hola,\n"
"Hola, \n"
"\n"
"Se han realizado los siguientes cambios en su cuenta de %(instance)s:\n"
"esto es para informarle que la información de su cuenta del equipo de "
"%(instance)s ha sido cambiada. \n"
"En particular, se han realizado las siguientes modificaciones: \n"
"\n"
"%(messages)s\n"
"\n"
"Si usted no ha realizado estos cambios, póngase en contacto con el equipo de "
"asistencia de %(instance)s inmediatamente.\n"
"Si este cambio no fue realizado por usted, por favor contáctenos "
"inmediatamente.\n"
"\n"
"Puede consultar la configuración de su cuenta aquí:\n"
"Puede revisar y cambiar la configuración de su cuenta aquí: \n"
"\n"
"%(url)s\n"
"%(url)s \n"
"\n"
"Gracias, \n"
"Saludos cordiales, \n"
"El equipo de %(instance)s\n"
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -28757,7 +28827,7 @@ msgstr "El código de verificación es incorrecto, por favor inténtelo de nuevo
#: pretix/control/views/mailsetup.py
#, python-format
msgid "Confirm %(address)s as a sender address"
msgstr "Confirmar %(address)s como dirección de remitente"
msgstr ""
#: pretix/control/views/mailsetup.py
#, python-format
@@ -29978,8 +30048,10 @@ msgstr ""
"Abra BezahlCode en su aplicación bancaria para iniciar el proceso de pago."
#: pretix/helpers/security.py
#, fuzzy
#| msgid "Sign in to your account at %(org)s"
msgid "New sign-in to your account"
msgstr "Nuevo inicio de sesión en su cuenta"
msgstr "Inicie sesión en su cuenta en %(org)s"
#: pretix/multidomain/models.py
msgid "Organizer domain"
@@ -36098,6 +36170,8 @@ msgstr[0] "%(count)s elemento"
msgstr[1] "%(count)s elementos"
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#, fuzzy
#| msgid "No event"
msgid "No events"
msgstr "No hay eventos"
@@ -36441,8 +36515,10 @@ msgid "Create account"
msgstr "Crear una cuenta"
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
#, fuzzy
#| msgid "The invoice could not be generated."
msgid "Login could not be completed"
msgstr "No se ha podido realizar el inicio de sesión"
msgstr "No se ha podido generar la factura."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
@@ -36451,56 +36527,43 @@ msgid ""
"process.\n"
" "
msgstr ""
"\n"
" No hemos podido completar el inicio de sesión porque se ha producido "
"una interrupción en el proceso.\n"
" "
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "Possible reasons for this:"
msgstr "Posibles razones para ello:"
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
"You started logging in from a link opened inside an app (such as Instagram "
"or an email app), and then continued the login in your main browser."
msgstr ""
"Ha iniciado sesión a través de un enlace abierto dentro de una aplicación "
"(como Instagram o una aplicación de correo electrónico) y, a continuación, "
"ha continuado el proceso de inicio de sesión en su navegador principal."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "You refreshed the page or used the back button during login."
msgstr ""
"Ha actualizado la página o ha utilizado el botón «Atrás» durante el proceso "
"de inicio de sesión."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "The site was opened in more than one tab or window at the same time."
msgstr "La página estaba abierta en más de una pestaña o ventana a la vez."
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
"There was a long delay between starting and completing the login process."
msgstr ""
"Hubo un tiempo importante entre el inicio y la finalización del proceso de "
"inicio de sesión."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "How to fix this:"
msgstr "Cómo solucionarlo:"
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "Close this page."
msgstr "Cerrar esta página."
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
"Open this website again directly in your main browser (for example Safari or "
"Chrome)."
msgstr ""
"Vuelva a abrir esta página web directamente en su navegador principal (por "
"ejemplo, Safari o Chrome)."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
@@ -36508,9 +36571,6 @@ msgid ""
"browser window, without refreshing the page, opening new tabs, or switching "
"apps part-way through."
msgstr ""
"Vuelva a iniciar el proceso de pago o de inicio de sesión y complételo en la "
"misma ventana del navegador, sin actualizar la página, sin abrir nuevas "
"pestañas ni cambiar de aplicación mientras lo realiza."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
@@ -36518,10 +36578,6 @@ msgid ""
"before retrying can help. As a last step, try using a different browser or "
"another device (for example, a desktop or laptop computer)."
msgstr ""
"Si el problema persiste, puede ser útil cerrar todas las ventanas del "
"navegador y borrar las cookies antes de volver a intentarlo. Como último "
"recurso, prueba a utilizar otro navegador u otro dispositivo (por ejemplo, "
"un ordenador de sobremesa o portátil)."
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Your membership"
+4 -16
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2025-07-18 01:00+0000\n"
"Last-Translator: Zona Vip <contacto@zonavip.mx>\n"
"Language-Team: Spanish (Latin America) <https://translate.pretix.eu/projects/"
@@ -10382,17 +10382,6 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr ""
@@ -17773,9 +17762,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -17842,7 +17830,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
+4 -16
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2025-12-24 00:00+0000\n"
"Last-Translator: Hijiri Umemoto <hijiri@umemoto.org>\n"
"Language-Team: Estonian <https://translate.pretix.eu/projects/pretix/pretix/"
@@ -10197,17 +10197,6 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr ""
@@ -17559,9 +17548,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -17628,7 +17616,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
+4 -18
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2024-09-23 18:00+0000\n"
"Last-Translator: Albizuri <oier@puntu.eus>\n"
"Language-Team: Basque <https://translate.pretix.eu/projects/pretix/pretix/eu/"
@@ -11536,19 +11536,6 @@ msgstr ""
"Publikoki erakutsiko dugu, bertaratzen direnak zurekin harremanetan jar "
"daitezen."
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact:"
msgid "Contact URL"
msgstr "Kontaktua:"
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr "Inprimatze-oinaren URLa"
@@ -19631,9 +19618,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -19700,7 +19686,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
+4 -18
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2025-10-04 10:10+0000\n"
"Last-Translator: Sebastian Bożek <sebastian@log-mar.pl>\n"
"Language-Team: Finnish <https://translate.pretix.eu/projects/pretix/pretix/"
@@ -11450,19 +11450,6 @@ msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
"Näytämme tämän julkisesti, jotta osallistujat voivat ottaa sinuun yhteyttä."
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact:"
msgid "Contact URL"
msgstr "Kontakti:"
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr "URL jälki"
@@ -19560,9 +19547,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -19629,7 +19615,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
+4 -16
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2025-02-13 22:00+0000\n"
"Last-Translator: Andrias Magnussen <andrias.magnussen@om.org>\n"
"Language-Team: Faroese <https://translate.pretix.eu/projects/pretix/pretix/"
@@ -10265,17 +10265,6 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr ""
@@ -17643,9 +17632,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -17712,7 +17700,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
+218 -165
View File
@@ -3,11 +3,11 @@ msgid ""
msgstr ""
"Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2026-07-08 16:00+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2026-06-29 17:00+0000\n"
"Last-Translator: CVZ-es <damien.bremont@casadevelazquez.org>\n"
"Language-Team: French <https://translate.pretix.eu/projects/pretix/pretix/"
"fr/>\n"
"Language-Team: French <https://translate.pretix.eu/projects/pretix/pretix/fr/"
">\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -177,7 +177,7 @@ msgstr "Espagnol (Amérique latine)"
#: pretix/_base_settings.py
msgid "Thai"
msgstr "Thaï"
msgstr ""
#: pretix/_base_settings.py
msgid "Turkish"
@@ -442,7 +442,7 @@ msgstr ""
#: pretix/api/serializers/organizer.py pretix/control/views/organizer.py
#, python-format
msgid "You've been invited to join %(organizer)s"
msgstr "Vous avez été invité(e) à rejoindre %(organizer)s"
msgstr ""
#: pretix/api/serializers/organizer.py pretix/control/views/organizer.py
msgid "This user already has been invited for this team."
@@ -1933,7 +1933,7 @@ msgid ""
"redeemed."
msgstr ""
"Ce produit ne sera affiché que si un bon de réduction correspondant au "
"produit est validé."
"produit est échangé."
#: pretix/base/exporters/items.py pretix/base/models/items.py
msgid "Buying this product requires approval"
@@ -4092,33 +4092,45 @@ msgid "Users"
msgstr "Utilisateurs"
#: pretix/base/models/auth.py
#, fuzzy
#| msgid "Changes to your account at {organizer}"
msgid "Changes to your account"
msgstr "Modifications apportées à votre compte"
msgstr "Modifications apportées à votre compte {organizer}"
#: pretix/base/models/auth.py
#, python-brace-format
#, fuzzy, python-brace-format
#| msgid ""
#| "to confirm changing your email address from {old_email}\n"
#| "to {new_email}, use the following code:"
msgid ""
"To change your email address from {old_email} to {new_email}, use the "
"following code:"
msgstr ""
"Pour modifier votre adresse e-mail et passer de {old_email} à {new_email}, "
"utilisez le code suivant :"
"Pour confirmer le changement de votre adresse e-mail de {old_email}\n"
"à {new_email}, utiliser le code suivant :"
#: pretix/base/models/auth.py
#, python-brace-format
#, fuzzy, python-brace-format
#| msgid ""
#| "to confirm changing your email address from {old_email}\n"
#| "to {new_email}, use the following code:"
msgid ""
"To verify your email address {email} on {instance}, use the following code:"
msgstr ""
"Pour valider votre adresse e-mail {email} sur {instance}, utilisez le code "
"suivant :"
"Pour confirmer le changement de votre adresse e-mail de {old_email}\n"
"à {new_email}, utiliser le code suivant :"
#: pretix/base/models/auth.py
#, fuzzy
#| msgid "Enter confirmation code"
msgid "Your confirmation code"
msgstr "Votre code de confirmation"
msgstr "Entrez le code de confirmation"
#: pretix/base/models/auth.py
#, fuzzy
#| msgid "Reset password"
msgid "Reset your password"
msgstr "Réinitialiser mon mot de passe"
msgstr "Réinitialiser le mot de passe"
#: pretix/base/models/checkin.py
msgid "All products (including newly created ones)"
@@ -6975,7 +6987,7 @@ msgstr "Nombre de fois que ce bon peut être utilisé."
#: pretix/base/models/vouchers.py pretix/control/views/vouchers.py
msgid "Redeemed"
msgstr "Validé"
msgstr "Échangé"
#: pretix/base/models/vouchers.py
msgid ""
@@ -8366,7 +8378,6 @@ msgstr "Événement annulé"
#: pretix/base/services/cancelevent.py
msgid "Confirm event cancellation and bulk refund"
msgstr ""
"Confirmer l'annulation de l'événement et procéder à un remboursement groupé"
#: pretix/base/services/cart.py pretix/base/services/modelimport.py
#: pretix/base/services/orders.py
@@ -8953,8 +8964,10 @@ msgid "Your export did not contain any data."
msgstr "Votre exportation ne contenait aucune donnée."
#: pretix/base/services/export.py
#, fuzzy
#| msgid "Scheduled exports"
msgid "Scheduled export failed"
msgstr "Échec de l'exportation planifiée"
msgstr "Exportations planifiées"
#: pretix/base/services/export.py
msgid "Permission denied."
@@ -9289,8 +9302,6 @@ msgstr "Un bon ne peut être créé sans code."
msgid ""
"Voucher codes must be unique. Code \"{code}\" already exists in this import."
msgstr ""
"Les codes promotionnels doivent être uniques. Le code « {code} » existe déjà "
"dans cette importation."
#: pretix/base/services/modelimport.py
#, python-brace-format
@@ -9299,19 +9310,13 @@ msgid ""
msgid_plural ""
"Voucher codes must be unique. Import contains existing voucher codes {code}."
msgstr[0] ""
"Les codes promotionnels doivent être uniques. L'importation contient un code "
"promotionnel existant : {code}."
msgstr[1] ""
"Les codes promotionnels doivent être uniques. L'importation contient des "
"codes promotionnels existants {code}."
#: pretix/base/services/modelimport.py
msgid ""
"Vouchers could not be imported, probably due to a voucher code already being "
"in use."
msgstr ""
"Les coupons n'ont pas pu être importés, probablement parce qu'un code de "
"coupon était déjà utilisé."
#: pretix/base/services/orders.py
msgid ""
@@ -9683,9 +9688,10 @@ msgstr ""
"réessayer."
#: pretix/base/services/shredder.py
#, python-format
#, fuzzy, python-format
#| msgid "Data shredding completed"
msgid "Data shredding completed for %(event)s"
msgstr "La destruction des données est terminée pour %(event)s"
msgstr "Déchiquetage de données terminé"
#: pretix/base/services/stats.py
msgid "Uncategorized"
@@ -11541,21 +11547,6 @@ msgstr ""
"Nous le montrerons publiquement pour permettre aux participants de vous "
"contacter."
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr "URL de contact"
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
"Si vous activez cette option, le lien de contact figurant dans le pied de "
"page redirigera vers cette page au lieu d'utiliser l'adresse e-mail indiquée "
"ci-dessus. Veuillez noter que vous devrez tout de même ajouter une adresse e-"
"mail de contact qui sera mentionnée dans tous les e-mails que vous enverrez."
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr "URL des Mentions légales"
@@ -13454,19 +13445,30 @@ msgstr ""
"nous contacter."
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#, fuzzy
#| msgid ""
#| "You have requested us to cancel an event which includes a larger bulk-"
#| "refund:"
msgid "You requested to cancel an event that involves a large bulk refund:"
msgstr ""
"Vous avez demandé l'annulation d'un événement donnant lieu à un "
"remboursement groupé important :"
"Vous nous avez demandé d'annuler un événement qui implique un remboursement "
"groupé important :"
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#, fuzzy
#| msgid "Estimated refund amount"
msgid "Estimated refund"
msgstr "Montant estimé du remboursement"
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#, fuzzy
#| msgid ""
#| "Please confirm that you want to proceed by coping the following "
#| "confirmation code into the cancellation form:"
msgid "To confirm, paste the following code into the cancellation form:"
msgstr ""
"Pour confirmer, collez le code suivant dans le formulaire d'annulation :"
"Veuillez confirmer que vous souhaitez poursuivre en copiant le code de "
"confirmation suivant dans le formulaire d'annulation :"
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#, python-format
@@ -13474,8 +13476,6 @@ msgid ""
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it."
msgstr ""
"Ne communiquez ce code à personne. L'équipe %(instance)s ne vous le "
"demandera jamais."
#: pretix/base/templates/pretixbase/email/cancel_confirm.txt
#: pretix/base/templates/pretixbase/email/export_failed.txt
@@ -13484,8 +13484,6 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team"
msgstr ""
"Merci, \n"
"L'équipe %(instance)s"
#: pretix/base/templates/pretixbase/email/email_footer.html
#, python-format
@@ -13493,8 +13491,10 @@ msgid "powered by <a %(a_attr)s>pretix</a>"
msgstr "propulsé par <a %(a_attr)s>pretix</a>"
#: pretix/base/templates/pretixbase/email/export_failed.txt
#, fuzzy
#| msgid "Your export failed."
msgid "Your scheduled export failed."
msgstr "Votre exportation planifiée a échoué."
msgstr "Votre exportation a échoué."
#: pretix/base/templates/pretixbase/email/export_failed.txt
#: pretix/control/templates/pretixcontrol/event/tax_edit.html
@@ -13502,28 +13502,39 @@ msgid "Reason"
msgstr "Raison"
#: pretix/base/templates/pretixbase/email/export_failed.txt
#, fuzzy
#| msgid "If your export fails five times in a row, it will no longer be sent."
msgid "If an export fails five times in a row, we'll stop sending it."
msgstr ""
"Si une exportation échoue cinq fois d'affilée, nous cesserons de l'envoyer."
"Si votre exportation échoue cinq fois de suite, elle ne sera plus envoyée."
#: pretix/base/templates/pretixbase/email/export_failed.txt
#, fuzzy
#| msgid "You can request to cancel this order."
msgid "You can adjust or remove this export here:"
msgstr "Vous pouvez modifier ou supprimer cette exportation ici :"
msgstr "Vous pouvez demander lannulation de cette commande."
#: pretix/base/templates/pretixbase/email/notification.html
#: pretix/base/templates/pretixbase/email/notification.txt
#, fuzzy
#| msgid "You receive these emails based on your notification settings."
msgid "You're receiving this email based on your notification settings."
msgstr "Vous recevez cet e-mail conformément à vos paramètres de notification."
msgstr ""
"Vous recevez ces e-mails en fonction de vos paramètres de notification."
#: pretix/base/templates/pretixbase/email/notification.html
#: pretix/base/templates/pretixbase/email/notification.txt
#, fuzzy
#| msgid "Change settings"
msgid "Manage settings"
msgstr "Gérer les paramètres"
msgstr "Changer les réglages"
#: pretix/base/templates/pretixbase/email/notification.html
#: pretix/base/templates/pretixbase/email/notification.txt
#, fuzzy
#| msgid "Disable notifications"
msgid "Disable all notifications"
msgstr "Désactiver toutes les notifications"
msgstr "Désactiver les notifications"
#: pretix/base/templates/pretixbase/email/order_details.html
msgid ""
@@ -13581,7 +13592,25 @@ msgid "Contact"
msgstr "Contact"
#: pretix/base/templates/pretixbase/email/shred_completed.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "we hereby confirm that the following data shredding job has been "
#| "completed:\n"
#| "\n"
#| "Organizer: %(organizer)s\n"
#| "\n"
#| "Event: %(event)s\n"
#| "\n"
#| "Data selection: %(shredders)s\n"
#| "\n"
#| "Start time: %(start_time)s (new data added after this time might not have "
#| "been deleted)\n"
#| "\n"
#| "Best regards,\n"
#| "\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -13597,20 +13626,23 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team\n"
msgstr ""
"Bonjour,\n"
"Bonjour\n"
"\n"
"La tâche de suppression des données suivante a été effectuée :\n"
"Nous confirmons par la présente que le travail de déchiquetage de données "
"suivant a été effectué :\n"
"\n"
"- Organisateur : %(organizer)s\n"
"- Événement : %(event)s\n"
"- Sélection des données : %(shredders)s\n"
"- Heure de début : %(start_time)s\n"
"Organisateur: %(organizer)s\n"
"\n"
"Il est possible que les données ajoutées à l'événement après l'heure de "
"début n'aient pas été supprimées.\n"
"Evénement: %(event)s\n"
"\n"
"Merci, \n"
"L'équipe %(instance)s\n"
"Sélection des données: %(shredders)s\n"
"\n"
"Heure de début: %(start_time)s (les nouvelles données ajoutées après cette "
"heure nont peut-être pas été supprimées)\n"
"\n"
"Sinceres salutations\n"
"\n"
"Votre équipe pretix%(instance)s\n"
#: pretix/base/templates/pretixbase/forms/widgets/checkbox_sales_channel_option.html
msgid ""
@@ -13647,15 +13679,11 @@ msgstr "Veuillez continuer dans un nouvel onglet"
#: pretix/base/templates/pretixbase/framebreak.html
msgid "For security reasons, the following step is only possible in a new tab."
msgstr ""
"Pour des raisons de sécurité, l'étape suivante ne peut être effectuée que "
"dans un nouvel onglet."
#: pretix/base/templates/pretixbase/framebreak.html
msgid ""
"If the new tab did not open automatically, please click the following button:"
msgstr ""
"Si le nouvel onglet ne s'est pas ouvert automatiquement, veuillez cliquer "
"sur le bouton ci-dessous :"
#: pretix/base/templates/pretixbase/framebreak.html
#: pretix/presale/templates/pretixpresale/event/cookies.html
@@ -20065,7 +20093,21 @@ msgid "Add property"
msgstr "Ajouter une propriété"
#: pretix/control/templates/pretixcontrol/email/confirmation_code.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "%(reason)s\n"
#| "\n"
#| " %(code)s\n"
#| "\n"
#| "Please do never give this code to another person. Our support team will "
#| "never ask for this code.\n"
#| "\n"
#| "If this code was not requested by you, please contact us immediately.\n"
#| "\n"
#| "Best regards,\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -20081,22 +20123,39 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team\n"
msgstr ""
"Bonjour,\n"
"Hello,\n"
"\n"
"%(reason)s\n"
"\n"
" %(code)s\n"
"\n"
"Ne communiquez ce code à personne. L'équipe %(instance)s ne vous le "
"demandera jamais.\n"
"Veuillez ne jamais communiquer ce code à une autre personne. Notre équipe "
"dassistance ne vous demandera jamais ce code.\n"
"\n"
"Si vous n'avez pas demandé ce code, veuillez nous contacter immédiatement.\n"
"Si vous n’êtes pas à lorigine de cette demande, contactez-nous "
"immédiatement.\n"
"\n"
"Merci, \n"
"L'équipe %(instance)s\n"
"Cordialement,\n"
"Votre équipe pretix%(instance)s\n"
#: pretix/control/templates/pretixcontrol/email/email_setup.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "someone requested to use %(address)s as a sender address on "
#| "%(instance)s.\n"
#| "This will allow them to send emails that are shown to originate from this "
#| "email address.\n"
#| "If that was you, please enter the following confirmation code:\n"
#| "\n"
#| "%(code)s\n"
#| "\n"
#| "If this was not requested by you, you can safely ignore this email.\n"
#| "\n"
#| "Best regards, \n"
#| "\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -20108,35 +20167,30 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
"Thanks, \n"
"The %(instance)s Team\n"
msgstr ""
"Bonjour,\n"
"Bonjour\n"
"\n"
"Une personne a demandé à utiliser %(address)s comme adresse d'expéditeur sur "
"%(instance)s. Une fois cette demande validée, les e-mails envoyés depuis %"
"(instance)s pourront afficher cette adresse comme expéditeur.\n"
"quelquun a demandé à utiliser %(address)s comme adresse dexpéditeur sur "
"%(instance)s.\n"
"Cela leur permettra denvoyer des e-mails dont il est démontré quils "
"proviennent de cette adresse e-mail.\n"
"Si c’était vous, veuillez entrer le code de confirmation suivant:\n"
"\n"
"Si c'est bien vous qui en avez fait la demande, veuillez saisir le code "
"suivant dans le formulaire de configuration :\n"
"%(code)s\n"
"\n"
" %(code)s\n"
"Si vous ne lavez pas demandé, vous pouvez ignorer cet e-mail en toute "
"sécurité.\n"
"\n"
"Ne communiquez ce code à personne, sauf si vous souhaitez autoriser cette "
"personne à utiliser cette adresse à cette fin. L'équipe de %(instance)s ne "
"vous le demandera jamais.\n"
"Sinceres salutations \n"
"\n"
"Si vous n'en avez pas fait la demande, vous pouvez ignorer cet e-mail en "
"toute sécurité.\n"
"\n"
"Merci, \n"
"L'équipe de %(instance)s\n"
"Votre équipe %(instance)s\n"
#: pretix/control/templates/pretixcontrol/email/forgot.txt
#, python-format
@@ -20154,22 +20208,27 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team\n"
msgstr ""
"Bonjour,\n"
"\n"
"Nous avons reçu une demande de réinitialisation du mot de passe de votre "
"compte %(instance)s. Pour choisir un nouveau mot de passe, cliquez sur le "
"lien ci-dessous :\n"
"\n"
"%(url)s\n"
"\n"
"Si vous n'avez pas effectué cette demande, vous pouvez ignorer cet e-mail en "
"toute sécurité : votre mot de passe ne changera pas.\n"
"\n"
"Merci, \n"
"L'équipe %(instance)s\n"
#: pretix/control/templates/pretixcontrol/email/invitation.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "you have been invited to a team on %(instance)s, a platform to perform "
#| "event\n"
#| "ticket sales.\n"
#| "\n"
#| "Organizer: %(organizer)s\n"
#| "Team: %(team)s\n"
#| "\n"
#| "If you want to join that team, just click on the following link:\n"
#| "%(url)s\n"
#| "\n"
#| "If you do not want to join, you can safely ignore or delete this email.\n"
#| "\n"
#| "Best regards, \n"
#| "\n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -20191,12 +20250,13 @@ msgstr ""
"Bonjour,\n"
"\n"
"vous avez été invité à faire partie de l'équipe pretix%(instance)s, une "
"plateforme pour réaliser un événement de vente de billets.\n"
"plateforme pour réaliser un événement\n"
"de vente de billets.\n"
"\n"
"Organisateur : %(organizer)s\n"
"Équipe : %(team)s\n"
"Organisateur: %(organizer)s\n"
"Équipe: %(team)s\n"
"\n"
"Si vous souhaitez rejoindre cette équipe, cliquez sur le lien suivant :\n"
"Si vous souhaitez rejoindre cette équipe, cliquez sur le lien suivant:\n"
"%(url)s\n"
"\n"
"Si vous ne souhaitez pas adhérer, vous pouvez ignorer ou supprimer cet e-"
@@ -20213,24 +20273,21 @@ msgid ""
"\n"
"We noticed a new sign-in to your %(instance)s account:\n"
msgstr ""
"Bonjour,\n"
"\n"
"Nous avons détecté une nouvelle connexion à votre compte %(instance)s :\n"
#: pretix/control/templates/pretixcontrol/email/login_notice.txt
msgid "Browser"
msgstr "Navigateur"
msgstr ""
#: pretix/control/templates/pretixcontrol/email/login_notice.txt
msgid "Operating system"
msgstr "Système d'exploitation"
msgstr ""
#: pretix/control/templates/pretixcontrol/email/login_notice.txt
#, python-format
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
@@ -20238,18 +20295,26 @@ msgid ""
"Thanks, \n"
"The %(instance)s Team\n"
msgstr ""
"Si c'est vous, aucune action n'est nécessaire.\n"
"\n"
"Si vous ne reconnaissez pas cette connexion, veuillez changer votre mot de "
"passe immédiatement :\n"
"\n"
"%(url)s\n"
"\n"
"Merci, \n"
"L'équipe %(instance)s\n"
#: pretix/control/templates/pretixcontrol/email/security_notice.txt
#, python-format
#, fuzzy, python-format
#| msgid ""
#| "Hello,\n"
#| "\n"
#| "this is to inform you that the account information of your %(instance)s "
#| "account has been\n"
#| "changed. In particular, the following changes have been performed:\n"
#| "\n"
#| "%(messages)s\n"
#| "\n"
#| "If this change was not performed by you, please contact us immediately.\n"
#| "\n"
#| "You can review and change your account settings here:\n"
#| "\n"
#| "%(url)s\n"
#| "\n"
#| "Best regards, \n"
#| "Your %(instance)s team\n"
msgid ""
"Hello,\n"
"\n"
@@ -20269,19 +20334,21 @@ msgid ""
msgstr ""
"Bonjour,\n"
"\n"
"Les modifications suivantes ont été apportées à votre compte %(instance)s :\n"
"Ceci est pour vous informer que les informations de votre compte "
"%(instance)s ont été\n"
"modifié. Les modifications suivantes ont été apportées:\n"
"\n"
"%(messages)s\n"
"\n"
"Si vous n'êtes pas à l'origine de ces modifications, veuillez contacter "
"immédiatement l'équipe d'assistance de %(instance)s.\n"
"Si vous n'avez pas effectué ce changement, veuillez nous contacter "
"immédiatement.\n"
"\n"
"Vous pouvez consulter les paramètres de votre compte ici :\n"
"Vous pouvez consulter et modifier les paramètres de votre compte ici:\n"
"\n"
"%(url)s\n"
"\n"
"Merci, \n"
"L'équipe %(instance)s\n"
"Sincères salutations, \n"
"Votre équipe pretix%(instance)s\n"
#: pretix/control/templates/pretixcontrol/email_setup.html
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
@@ -28979,7 +29046,7 @@ msgstr "Le code de vérification était incorrect, veuillez réessayer."
#: pretix/control/views/mailsetup.py
#, python-format
msgid "Confirm %(address)s as a sender address"
msgstr "Confirmer %(address)s comme adresse d'expéditeur"
msgstr ""
#: pretix/control/views/mailsetup.py
#, python-format
@@ -30215,8 +30282,10 @@ msgstr ""
"de paiement."
#: pretix/helpers/security.py
#, fuzzy
#| msgid "Sign in to your account at %(org)s"
msgid "New sign-in to your account"
msgstr "Nouvelle connexion à votre compte"
msgstr "Connectez-vous à votre compte à ladresse %(org)s"
#: pretix/multidomain/models.py
msgid "Organizer domain"
@@ -36420,6 +36489,8 @@ msgstr[0] "%(count)s élement"
msgstr[1] "%(count)s élements"
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#, fuzzy
#| msgid "No event"
msgid "No events"
msgstr "Aucun événement"
@@ -36768,8 +36839,10 @@ msgid "Create account"
msgstr "Créer un compte"
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
#, fuzzy
#| msgid "The invoice could not be generated."
msgid "Login could not be completed"
msgstr "La connexion n'a pas pu être établie"
msgstr "La facture n'a pas pu être générée."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
@@ -36778,56 +36851,43 @@ msgid ""
"process.\n"
" "
msgstr ""
"\n"
" Nous n'avons pas pu finaliser votre connexion car une interruption "
"est survenue au cours du processus.\n"
" "
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "Possible reasons for this:"
msgstr "Raisons possibles :"
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
"You started logging in from a link opened inside an app (such as Instagram "
"or an email app), and then continued the login in your main browser."
msgstr ""
"Vous avez commencé à vous connecter à partir d'un lien ouvert dans une "
"application (comme Instagram ou une application de messagerie), puis vous "
"avez poursuivi la procédure de connexion dans votre navigateur principal."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "You refreshed the page or used the back button during login."
msgstr ""
"Vous avez actualisé la page ou utilisé le bouton « Retour » pendant la "
"procédure de connexion."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "The site was opened in more than one tab or window at the same time."
msgstr "Le site a été ouvert dans plusieurs onglets ou fenêtres en même temps."
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
"There was a long delay between starting and completing the login process."
msgstr ""
"Il y a eu un long délai entre le début et la fin de la procédure de "
"connexion."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "How to fix this:"
msgstr "Comment résoudre ce problème :"
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid "Close this page."
msgstr "Fermer cette page."
msgstr ""
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
"Open this website again directly in your main browser (for example Safari or "
"Chrome)."
msgstr ""
"Rouvrez ce site directement dans votre navigateur principal (par exemple "
"Safari ou Chrome)."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
@@ -36835,9 +36895,6 @@ msgid ""
"browser window, without refreshing the page, opening new tabs, or switching "
"apps part-way through."
msgstr ""
"Recommencez la procédure de paiement ou de connexion et menez-la à son terme "
"dans la même fenêtre de navigateur, sans actualiser la page, ouvrir de "
"nouveaux onglets ni changer d'application en cours de route."
#: pretix/presale/templates/pretixpresale/organizers/customer_login_interrupted_message.html
msgid ""
@@ -36845,10 +36902,6 @@ msgid ""
"before retrying can help. As a last step, try using a different browser or "
"another device (for example, a desktop or laptop computer)."
msgstr ""
"Si le problème persiste, il peut être utile de fermer toutes les fenêtres du "
"navigateur et d'effacer les cookies avant de réessayer. En dernier recours, "
"essayez d'utiliser un autre navigateur ou un autre appareil (par exemple, un "
"ordinateur de bureau ou un ordinateur portable)."
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Your membership"
+3 -3
View File
@@ -7,8 +7,8 @@ msgstr ""
"Project-Id-Version: French\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-06 15:52+0000\n"
"PO-Revision-Date: 2026-07-08 16:00+0000\n"
"Last-Translator: Joram Schwartzmann <schwartzmann@pretix.eu>\n"
"PO-Revision-Date: 2026-06-29 17:00+0000\n"
"Last-Translator: CVZ-es <damien.bremont@casadevelazquez.org>\n"
"Language-Team: French <https://translate.pretix.eu/projects/pretix/pretix-js/"
"fr/>\n"
"Language: fr\n"
@@ -244,7 +244,7 @@ msgstr "En attente d'approbation"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Redeemed"
msgstr "Validé"
msgstr "Échangé"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Cancel"
+4 -17
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2026-04-21 11:05+0000\n"
"Last-Translator: Sandra Rial Pérez <sandrarial@gestiontickets.online>\n"
"Language-Team: Galician <https://translate.pretix.eu/projects/pretix/pretix/"
@@ -11723,18 +11723,6 @@ msgstr ""
"Lo mostraremos públicamente para que los asistentes puedan ponerse en "
"contacto con usted."
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
msgid "Contact URL"
msgstr "Bancontact"
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
msgid "Imprint URL"
@@ -20750,9 +20738,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -20835,7 +20822,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
+4 -18
View File
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: HE PRETIX\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2026-02-09 21:00+0000\n"
"Last-Translator: roi belotsercovsky <rbelotsercovsky@gmail.com>\n"
"Language-Team: Hebrew <https://translate.pretix.eu/projects/pretix/pretix/he/"
@@ -11041,19 +11041,6 @@ msgstr "כתובת ליצירת קשר"
msgid "We'll show this publicly to allow attendees to contact you."
msgstr "נציג זאת בפומבי כדי לאפשר למשתתפים ליצור איתך קשר."
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact:"
msgid "Contact URL"
msgstr "איש קשר:"
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr "קישור לעמוד פרטי יצירת קשר/ח.פ."
@@ -19351,9 +19338,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -19463,7 +19449,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
+4 -18
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"POT-Creation-Date: 2026-07-06 15:48+0000\n"
"PO-Revision-Date: 2025-03-04 16:16+0000\n"
"Last-Translator: Martin Gross <gross@rami.io>\n"
"Language-Team: Croatian <https://translate.pretix.eu/projects/pretix/pretix/"
@@ -11033,19 +11033,6 @@ msgstr "Kontakt adresa"
msgid "We'll show this publicly to allow attendees to contact you."
msgstr "Prikazat ćemo ovo javno kako bi sudionici mogli kontaktirati vas."
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact:"
msgid "Contact URL"
msgstr "Kontakt:"
#: pretix/base/settings.py pretix/control/forms/event.py
msgid ""
"If you set this, the footer contact link will point here instead of using "
"the email address above. Please note that you still need to add a contact "
"email address that will be shared with all emails you send."
msgstr ""
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Imprint URL"
msgstr "URL impresuma"
@@ -18635,9 +18622,8 @@ msgid ""
"\n"
" %(code)s\n"
"\n"
"Don't share this code with anyone unless you want to authorize them to use "
"this address for this purpose. The %(instance)s team will never ask you for "
"it.\n"
"Don't share this code with anyone. The %(instance)s team will never ask you "
"for it.\n"
"\n"
"If you didn't request this, you can safely ignore this email.\n"
"\n"
@@ -18704,7 +18690,7 @@ msgstr ""
msgid ""
"If it was you, no action is needed.\n"
"\n"
"If you don't recognize this sign-in, please change your password "
"If you don't recognise this sign-in, please change your password "
"immediately:\n"
"\n"
"%(url)s\n"
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More