Compare commits

..
Author SHA1 Message Date
Raphael Michel 943fe8b185 API: Disable endpoints that should have never existed 2026-07-28 13:59:23 +02:00
103 changed files with 13811 additions and 25124 deletions
+7 -7
View File
@@ -3176,9 +3176,9 @@
"license": "MIT"
},
"node_modules/nanoid": {
"version": "3.3.16",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz",
"integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==",
"version": "3.3.12",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
"integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
"funding": [
{
"type": "github",
@@ -3352,9 +3352,9 @@
}
},
"node_modules/postcss": {
"version": "8.5.23",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.23.tgz",
"integrity": "sha512-g50586zr4bZmwFiTlflMu8E0bDTb5I5gertgwAKmsdUlTQIhZtunzUlD1WSzwcVWPoAVpsrA6vlfCD7oXvRwgg==",
"version": "8.5.15",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
"integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
"funding": [
{
"type": "opencollective",
@@ -3371,7 +3371,7 @@
],
"license": "MIT",
"dependencies": {
"nanoid": "^3.3.16",
"nanoid": "^3.3.12",
"picocolors": "^1.1.1",
"source-map-js": "^1.2.1"
},
+4 -4
View File
@@ -33,12 +33,12 @@ dependencies = [
"bleach==6.4.*",
"celery==5.6.*",
"chardet==5.2.*",
"cryptography>=50.0.0",
"cryptography>=49.0.0",
"css-inline==0.21.*",
"defusedcsv>=3.0.0",
"dnspython==2.*",
"Django[argon2]==5.2.*",
"django-bootstrap3==26.2",
"django-bootstrap3==26.1",
"django-compressor==4.6.0",
"django-countries==9.0.*",
"django-filter==26.1",
@@ -48,7 +48,7 @@ dependencies = [
"django-hijack==3.7.*",
"django-i18nfield==1.11.*",
"django-libsass==0.9",
"django-localflavor==5.1",
"django-localflavor==5.0",
"django-markup",
"django-oauth-toolkit==2.3.*",
"django-otp==1.7.*",
@@ -67,7 +67,7 @@ dependencies = [
"kombu==5.6.*",
"libsass==0.23.*",
"lxml",
"markdown==3.10.3", # 3.3.5 requires importlib-metadata>=4.4, but django-bootstrap3 requires importlib-metadata<3.
"markdown==3.10.2", # 3.3.5 requires importlib-metadata>=4.4, but django-bootstrap3 requires importlib-metadata<3.
# We can upgrade markdown again once django-bootstrap3 upgrades or once we drop Python 3.6 and 3.7
"mt-940==4.30.*",
"oauthlib==3.3.*",
+1 -1
View File
@@ -19,4 +19,4 @@
# 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/>.
#
__version__ = "2026.8.0.dev0"
__version__ = "2026.7.0.dev0"
-1
View File
@@ -104,7 +104,6 @@ ALL_LANGUAGES = [
('gl', _('Galician')),
('el', _('Greek')),
('he', _('Hebrew')),
('hu', _('Hungarian')),
('id', _('Indonesian')),
('it', _('Italian')),
('ja', _('Japanese')),
+1 -25
View File
@@ -20,11 +20,8 @@
# <https://www.gnu.org/licenses/>.
#
import logging
from datetime import timedelta
from django.contrib.auth.models import AnonymousUser
from django.db import DatabaseError
from django.utils.timezone import now
from django_scopes import scopes_disabled
from rest_framework import exceptions
from rest_framework.authentication import TokenAuthentication
@@ -33,7 +30,6 @@ from pretix.api.auth.devicesecurity import (
FullAccessSecurityProfile, get_all_security_profiles,
)
from pretix.base.models import Device
from pretix.base.models.devices import DeviceLastSeen
logger = logging.getLogger(__name__)
@@ -46,7 +42,7 @@ class DeviceTokenAuthentication(TokenAuthentication):
model = self.get_model()
try:
with scopes_disabled():
device = model.objects.select_related('organizer', 'last_seen').get(api_token=key)
device = model.objects.select_related('organizer').get(api_token=key)
except model.DoesNotExist:
raise exceptions.AuthenticationFailed('Invalid token.')
@@ -57,7 +53,6 @@ class DeviceTokenAuthentication(TokenAuthentication):
logging.warning(f'Connection attempt of revoked device {device.pk}.')
raise exceptions.AuthenticationFailed('Device access has been revoked.')
self._update_last_seen(device)
return AnonymousUser(), device
def authenticate(self, request):
@@ -68,22 +63,3 @@ class DeviceTokenAuthentication(TokenAuthentication):
if not profile.is_allowed(request):
raise exceptions.PermissionDenied('Request denied by device security profile.')
return r
def _update_last_seen(self, device: Device):
try:
try:
last_seen_obj = device.last_seen
except DeviceLastSeen.DoesNotExist:
# First request from device, create model, ignore result. Use get_or_create to be safe
# against concurrent create requests
DeviceLastSeen.objects.get_or_create(device=device, last_seen=now())
else:
if now() - last_seen_obj.last_seen < timedelta(seconds=10):
# We don't need to know the last seen info of a device to more precision than this,
# so we can avoid some database writes if the device is bursting a lot of requests.
return
last_seen_obj.last_seen = now()
last_seen_obj.save(update_fields=["last_seen"])
except DatabaseError:
# Do not stop the request from happening
logger.exception("Database error while updating last_seen")
-2
View File
@@ -139,7 +139,6 @@ class CheckinListViewSet(viewsets.ModelViewSet):
)
return qs
@transaction.atomic()
def perform_create(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.log_action(
@@ -154,7 +153,6 @@ class CheckinListViewSet(viewsets.ModelViewSet):
ctx['event'] = self.request.event
return ctx
@transaction.atomic()
def perform_update(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.log_action(
-4
View File
@@ -32,7 +32,6 @@
# 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.
from django.db import transaction
from django_filters.rest_framework import DjangoFilterBackend, FilterSet
from django_scopes import scopes_disabled
from rest_framework import viewsets
@@ -65,7 +64,6 @@ class DiscountViewSet(ConditionalListView, viewsets.ModelViewSet):
'limit_sales_channels',
)
@transaction.atomic()
def perform_create(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.log_action(
@@ -80,7 +78,6 @@ class DiscountViewSet(ConditionalListView, viewsets.ModelViewSet):
ctx['event'] = self.request.event
return ctx
@transaction.atomic()
def perform_update(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.log_action(
@@ -90,7 +87,6 @@ class DiscountViewSet(ConditionalListView, viewsets.ModelViewSet):
data=self.request.data
)
@transaction.atomic()
def perform_destroy(self, instance):
if not instance.allow_delete():
raise PermissionDenied('You cannot delete this discount because it already has '
-11
View File
@@ -257,7 +257,6 @@ class EventViewSet(viewsets.ModelViewSet):
data=self.request.data
)
@transaction.atomic()
def perform_create(self, serializer):
copy_from = None
if 'clone_from' in self.request.GET:
@@ -321,7 +320,6 @@ class EventViewSet(viewsets.ModelViewSet):
data=self.request.data
)
@transaction.atomic()
def perform_destroy(self, instance):
if not instance.allow_delete():
raise PermissionDenied('The event can not be deleted as it already contains orders. Please set \'live\''
@@ -357,7 +355,6 @@ class CloneEventViewSet(viewsets.ModelViewSet):
ctx['organizer'] = self.request.organizer
return ctx
@transaction.atomic()
def perform_create(self, serializer):
# Weird edge case: Requires settings permission on the event (to read) but also on the organizer (two write)
perm_holder = (self.request.auth if isinstance(self.request.auth, (Device, TeamAPIToken))
@@ -516,7 +513,6 @@ class SubEventViewSet(ConditionalListView, viewsets.ModelViewSet):
resp['X-Page-Generated'] = date
return resp
@transaction.atomic()
def perform_update(self, serializer):
original_data = self.get_serializer(instance=serializer.instance).data
super().perform_update(serializer)
@@ -533,7 +529,6 @@ class SubEventViewSet(ConditionalListView, viewsets.ModelViewSet):
data=self.request.data
)
@transaction.atomic()
def perform_create(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.log_action(
@@ -543,7 +538,6 @@ class SubEventViewSet(ConditionalListView, viewsets.ModelViewSet):
data=self.request.data
)
@transaction.atomic()
def perform_destroy(self, instance):
if not instance.allow_delete():
raise PermissionDenied('The sub-event can not be deleted as it has already been used in orders. Please set'
@@ -572,7 +566,6 @@ class TaxRuleViewSet(ConditionalListView, viewsets.ModelViewSet):
def get_queryset(self):
return self.request.event.tax_rules.all()
@transaction.atomic()
def perform_update(self, serializer):
super().perform_update(serializer)
serializer.instance.log_action(
@@ -582,7 +575,6 @@ class TaxRuleViewSet(ConditionalListView, viewsets.ModelViewSet):
data=self.request.data
)
@transaction.atomic()
def perform_create(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.log_action(
@@ -592,7 +584,6 @@ class TaxRuleViewSet(ConditionalListView, viewsets.ModelViewSet):
data=self.request.data
)
@transaction.atomic()
def perform_destroy(self, instance):
if not instance.allow_delete():
raise PermissionDenied('This tax rule can not be deleted as it is currently in use.')
@@ -766,7 +757,6 @@ class SeatViewSet(ConditionalListView, UpdateModelMixin, viewsets.ReadOnlyModelV
}
return ctx
@transaction.atomic()
def perform_update(self, serializer):
super().perform_update(serializer)
serializer.instance.event.log_action(
@@ -776,7 +766,6 @@ class SeatViewSet(ConditionalListView, UpdateModelMixin, viewsets.ReadOnlyModelV
data={"seats": [serializer.instance.pk]},
)
@transaction.atomic()
def bulk_change_blocked(self, blocked):
s = SeatBulkBlockInputSerializer(
data=self.request.data,
+5 -19
View File
@@ -23,7 +23,6 @@ from datetime import timedelta
from celery.result import AsyncResult
from django.conf import settings
from django.db import transaction
from django.http import Http404
from django.shortcuts import get_object_or_404
from django.utils.functional import cached_property
@@ -46,8 +45,7 @@ from pretix.base.models import (
)
from pretix.base.models.organizer import TeamQuerySet
from pretix.base.services.export import (
ExportError, export, init_event_exporters, init_organizer_exporters,
multiexport,
export, init_event_exporters, init_organizer_exporters, multiexport,
)
from pretix.helpers.http import ChunkBasedFileResponse
@@ -151,11 +149,8 @@ class EventExportersViewSet(ExportersMixin, viewsets.ViewSet):
))
exporters = []
for ex in sorted(raw_exporters, key=lambda ex: str(ex.verbose_name)):
try:
ex._serializer = JobRunSerializer(exporter=ex)
exporters.append(ex)
except ExportError:
pass
ex._serializer = JobRunSerializer(exporter=ex)
exporters.append(ex)
return exporters
def do_export(self, cf, instance, data):
@@ -185,11 +180,8 @@ class OrganizerExportersViewSet(ExportersMixin, viewsets.ViewSet):
))
exporters = []
for ex in sorted(raw_exporters, key=lambda ex: str(ex.verbose_name)):
try:
ex._serializer = JobRunSerializer(exporter=ex)
exporters.append(ex)
except ExportError:
pass
ex._serializer = JobRunSerializer(exporter=ex)
exporters.append(ex)
return exporters
def do_export(self, cf, instance, data):
@@ -228,7 +220,6 @@ class ScheduledEventExportViewSet(ScheduledExportersViewSet):
qs = self.request.event.scheduled_exports
return qs.select_related("owner")
@transaction.atomic()
def perform_create(self, serializer):
if not self.request.user.is_authenticated:
raise PermissionDenied('Creation of exports requires user-specific API access.')
@@ -259,7 +250,6 @@ class ScheduledEventExportViewSet(ScheduledExportersViewSet):
))
return {e.identifier: e for e in exporters}
@transaction.atomic()
def perform_update(self, serializer):
if not self.request.user.is_authenticated or self.request.user != serializer.instance.owner:
# This is to prevent a possible privilege escalation where user A creates a scheduled export and
@@ -285,7 +275,6 @@ class ScheduledEventExportViewSet(ScheduledExportersViewSet):
data=self.request.data
)
@transaction.atomic()
def perform_destroy(self, instance):
self.request.event.log_action(
'pretix.event.export.schedule.deleted',
@@ -313,7 +302,6 @@ class ScheduledOrganizerExportViewSet(ScheduledExportersViewSet):
qs = self.request.organizer.scheduled_exports
return qs.select_related("owner")
@transaction.atomic()
def perform_create(self, serializer):
if not self.request.user.is_authenticated:
raise PermissionDenied('Creation of exports requires user-specific API access.')
@@ -344,7 +332,6 @@ class ScheduledOrganizerExportViewSet(ScheduledExportersViewSet):
))
return {e.identifier: e for e in exporters}
@transaction.atomic()
def perform_update(self, serializer):
if not self.request.user.is_authenticated or self.request.user != serializer.instance.owner:
# This is to prevent a possible privilege escalation where user A creates a scheduled export and
@@ -395,7 +382,6 @@ class ScheduledOrganizerExportViewSet(ScheduledExportersViewSet):
data=self.request.data
)
@transaction.atomic()
def perform_destroy(self, instance):
self.request.organizer.log_action(
'pretix.organizer.export.schedule.deleted',
-28
View File
@@ -33,7 +33,6 @@
# License for the specific language governing permissions and limitations under the License.
import django_filters
from django.db import transaction
from django.db.models import Q
from django.shortcuts import get_object_or_404
from django.utils.functional import cached_property
@@ -110,7 +109,6 @@ class ItemViewSet(ConditionalListView, viewsets.ModelViewSet):
'limit_sales_channels', 'variations__limit_sales_channels', 'program_times'
).all()
@transaction.atomic()
def perform_create(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.log_action(
@@ -125,7 +123,6 @@ class ItemViewSet(ConditionalListView, viewsets.ModelViewSet):
ctx['event'] = self.request.event
return ctx
@transaction.atomic()
def perform_update(self, serializer):
original_data = self.get_serializer(instance=serializer.instance).data
@@ -142,7 +139,6 @@ class ItemViewSet(ConditionalListView, viewsets.ModelViewSet):
data=self.request.data
)
@transaction.atomic()
def perform_destroy(self, instance):
if not instance.allow_delete():
raise PermissionDenied('This item cannot be deleted because it has already been ordered '
@@ -187,7 +183,6 @@ class ItemVariationViewSet(viewsets.ModelViewSet):
ctx['event'] = self.request.event
return ctx
@transaction.atomic()
def perform_create(self, serializer):
item = self.item
if not item.has_variations:
@@ -202,7 +197,6 @@ class ItemVariationViewSet(viewsets.ModelViewSet):
{'value': serializer.instance.value})
)
@transaction.atomic()
def perform_update(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.item.log_action(
@@ -213,7 +207,6 @@ class ItemVariationViewSet(viewsets.ModelViewSet):
{'value': serializer.instance.value})
)
@transaction.atomic()
def perform_destroy(self, instance):
if not instance.allow_delete():
raise PermissionDenied('This variation cannot be deleted because it has already been ordered '
@@ -256,7 +249,6 @@ class ItemBundleViewSet(viewsets.ModelViewSet):
ctx['item'] = self.item
return ctx
@transaction.atomic()
def perform_create(self, serializer):
item = get_object_or_404(Item, pk=self.kwargs['item'], event=self.request.event)
serializer.save(base_item=item)
@@ -267,7 +259,6 @@ class ItemBundleViewSet(viewsets.ModelViewSet):
data=merge_dicts(self.request.data, {'id': serializer.instance.pk})
)
@transaction.atomic()
def perform_update(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.base_item.log_action(
@@ -277,7 +268,6 @@ class ItemBundleViewSet(viewsets.ModelViewSet):
data=merge_dicts(self.request.data, {'id': serializer.instance.pk})
)
@transaction.atomic()
def perform_destroy(self, instance):
super().perform_destroy(instance)
instance.base_item.log_action(
@@ -313,7 +303,6 @@ class ItemProgramTimeViewSet(viewsets.ModelViewSet):
ctx['item'] = self.item
return ctx
@transaction.atomic()
def perform_create(self, serializer):
item = get_object_or_404(Item, pk=self.kwargs['item'], event=self.request.event)
serializer.save(item=item)
@@ -324,7 +313,6 @@ class ItemProgramTimeViewSet(viewsets.ModelViewSet):
data=merge_dicts(self.request.data, {'id': serializer.instance.pk})
)
@transaction.atomic()
def perform_update(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.item.log_action(
@@ -334,7 +322,6 @@ class ItemProgramTimeViewSet(viewsets.ModelViewSet):
data=merge_dicts(self.request.data, {'id': serializer.instance.pk})
)
@transaction.atomic()
def perform_destroy(self, instance):
super().perform_destroy(instance)
instance.item.log_action(
@@ -367,7 +354,6 @@ class ItemAddOnViewSet(viewsets.ModelViewSet):
ctx['item'] = self.item
return ctx
@transaction.atomic()
def perform_create(self, serializer):
item = self.item
category = get_object_or_404(ItemCategory, pk=self.request.data['addon_category'])
@@ -379,7 +365,6 @@ class ItemAddOnViewSet(viewsets.ModelViewSet):
data=merge_dicts(self.request.data, {'ORDER': serializer.instance.position}, {'id': serializer.instance.pk})
)
@transaction.atomic()
def perform_update(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.base_item.log_action(
@@ -389,7 +374,6 @@ class ItemAddOnViewSet(viewsets.ModelViewSet):
data=merge_dicts(self.request.data, {'ORDER': serializer.instance.position}, {'id': serializer.instance.pk})
)
@transaction.atomic()
def perform_destroy(self, instance):
super().perform_destroy(instance)
instance.base_item.log_action(
@@ -419,7 +403,6 @@ class ItemCategoryViewSet(ConditionalListView, viewsets.ModelViewSet):
def get_queryset(self):
return self.request.event.categories.all()
@transaction.atomic()
def perform_create(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.log_action(
@@ -434,7 +417,6 @@ class ItemCategoryViewSet(ConditionalListView, viewsets.ModelViewSet):
ctx['event'] = self.request.event
return ctx
@transaction.atomic()
def perform_update(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.log_action(
@@ -444,7 +426,6 @@ class ItemCategoryViewSet(ConditionalListView, viewsets.ModelViewSet):
data=self.request.data
)
@transaction.atomic()
def perform_destroy(self, instance):
for item in instance.items.all():
item.category = None
@@ -477,7 +458,6 @@ class QuestionViewSet(ConditionalListView, viewsets.ModelViewSet):
def get_queryset(self):
return self.request.event.questions.prefetch_related('options').all()
@transaction.atomic()
def perform_create(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.log_action(
@@ -492,7 +472,6 @@ class QuestionViewSet(ConditionalListView, viewsets.ModelViewSet):
ctx['event'] = self.request.event
return ctx
@transaction.atomic()
def perform_update(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.log_action(
@@ -502,7 +481,6 @@ class QuestionViewSet(ConditionalListView, viewsets.ModelViewSet):
data=self.request.data
)
@transaction.atomic()
def perform_destroy(self, instance):
instance.log_action(
'pretix.event.question.deleted',
@@ -531,7 +509,6 @@ class QuestionOptionViewSet(viewsets.ModelViewSet):
ctx['question'] = get_object_or_404(Question, pk=self.kwargs['question'], event=self.request.event)
return ctx
@transaction.atomic()
def perform_create(self, serializer):
q = get_object_or_404(Question, pk=self.kwargs['question'], event=self.request.event)
serializer.save(question=q)
@@ -542,7 +519,6 @@ class QuestionOptionViewSet(viewsets.ModelViewSet):
data=merge_dicts(self.request.data, {'ORDER': serializer.instance.position}, {'id': serializer.instance.pk})
)
@transaction.atomic()
def perform_update(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.question.log_action(
@@ -552,7 +528,6 @@ class QuestionOptionViewSet(viewsets.ModelViewSet):
data=merge_dicts(self.request.data, {'ORDER': serializer.instance.position}, {'id': serializer.instance.pk})
)
@transaction.atomic()
def perform_destroy(self, instance):
instance.question.log_action(
'pretix.event.question.option.deleted',
@@ -611,7 +586,6 @@ class QuotaViewSet(ConditionalListView, viewsets.ModelViewSet):
serializer = self.get_serializer(page, many=True)
return self.get_paginated_response(serializer.data)
@transaction.atomic()
def perform_create(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.log_action(
@@ -634,7 +608,6 @@ class QuotaViewSet(ConditionalListView, viewsets.ModelViewSet):
ctx['request'] = self.request
return ctx
@transaction.atomic()
def perform_update(self, serializer):
original_data = self.get_serializer(instance=serializer.instance).data
@@ -690,7 +663,6 @@ class QuotaViewSet(ConditionalListView, viewsets.ModelViewSet):
)
serializer.instance.rebuild_cache()
@transaction.atomic()
def perform_destroy(self, instance):
instance.log_action(
'pretix.event.quota.deleted',
-3
View File
@@ -394,7 +394,6 @@ class TeamViewSet(viewsets.ModelViewSet):
)
return inst
@transaction.atomic()
def perform_destroy(self, instance):
instance.log_action('pretix.team.deleted', user=self.request.user, auth=self.request.auth)
instance.delete()
@@ -694,7 +693,6 @@ class MembershipTypeViewSet(viewsets.ModelViewSet):
ctx['organizer'] = self.request.organizer
return ctx
@transaction.atomic()
def perform_destroy(self, instance):
if not instance.allow_delete():
raise PermissionDenied("Can only be deleted if unused.")
@@ -835,7 +833,6 @@ class SalesChannelViewSet(viewsets.ModelViewSet):
)
return inst
@transaction.atomic()
def perform_destroy(self, instance):
if not instance.allow_delete():
raise PermissionDenied("Can only be deleted if unused.")
-4
View File
@@ -20,7 +20,6 @@
# <https://www.gnu.org/licenses/>.
#
import django_filters
from django.db import transaction
from django_filters.rest_framework import DjangoFilterBackend, FilterSet
from django_scopes import scopes_disabled
from rest_framework import viewsets
@@ -63,7 +62,6 @@ class WaitingListViewSet(viewsets.ModelViewSet):
ctx['event'] = self.request.event
return ctx
@transaction.atomic()
def perform_create(self, serializer):
serializer.save(event=self.request.event)
serializer.instance.log_action(
@@ -72,7 +70,6 @@ class WaitingListViewSet(viewsets.ModelViewSet):
auth=self.request.auth,
)
@transaction.atomic()
def perform_update(self, serializer):
if serializer.instance.voucher:
raise PermissionDenied('This entry can not be changed as it has already been assigned a voucher.')
@@ -83,7 +80,6 @@ class WaitingListViewSet(viewsets.ModelViewSet):
auth=self.request.auth,
)
@transaction.atomic()
def perform_destroy(self, instance):
if instance.voucher:
raise PermissionDenied('This entry can not be deleted as it has already been assigned a voucher.')
-4
View File
@@ -20,7 +20,6 @@
# <https://www.gnu.org/licenses/>.
#
import django_filters
from django.db import transaction
from django_filters.rest_framework import DjangoFilterBackend, FilterSet
from rest_framework import viewsets
@@ -49,7 +48,6 @@ class WebHookViewSet(viewsets.ModelViewSet):
ctx['organizer'] = self.request.organizer
return ctx
@transaction.atomic()
def perform_create(self, serializer):
inst = serializer.save(organizer=self.request.organizer)
self.request.organizer.log_action(
@@ -59,7 +57,6 @@ class WebHookViewSet(viewsets.ModelViewSet):
data=merge_dicts(self.request.data, {'id': inst.pk})
)
@transaction.atomic()
def perform_update(self, serializer):
inst = serializer.save(organizer=self.request.organizer)
self.request.organizer.log_action(
@@ -70,7 +67,6 @@ class WebHookViewSet(viewsets.ModelViewSet):
)
return inst
@transaction.atomic()
def perform_destroy(self, instance):
self.request.organizer.log_action(
'pretix.webhook.changed',
@@ -1,43 +0,0 @@
# Generated by Django 5.2.16 on 2026-08-05 08:00
import django.db.models.deletion
from django.db import migrations, models
import pretix.helpers.database
class Migration(migrations.Migration):
dependencies = [
("pretixbase", "0306_alter_eventmetaproperty_unique_together"),
]
operations = [
migrations.CreateModel(
name="DeviceLastSeen",
fields=[
(
"id",
models.BigAutoField(
auto_created=True, primary_key=True, serialize=False
),
),
("last_seen", models.DateTimeField(auto_now=True)),
(
"device",
models.OneToOneField(
on_delete=django.db.models.deletion.CASCADE,
to="pretixbase.device",
),
),
],
),
migrations.AddIndex(
model_name="devicelastseen",
index=pretix.helpers.database.BrinIndexIgnoredOnSQLite(
models.F("last_seen"),
autosummarize=True,
name="pretixbase_device_last_seen",
),
),
]
-27
View File
@@ -20,13 +20,11 @@
# <https://www.gnu.org/licenses/>.
#
import string
from datetime import timedelta
from django.core.exceptions import ValidationError
from django.db import models
from django.db.models import Max
from django.utils.crypto import get_random_string
from django.utils.timezone import now
from django.utils.translation import gettext_lazy as _
from django_scopes import ScopedManager, scopes_disabled
@@ -34,7 +32,6 @@ from pretix.base.models import LoggedModel
from pretix.base.permissions import (
AnyPermissionOf, assert_valid_event_permission,
)
from pretix.helpers import BrinIndexIgnoredOnSQLite
@scopes_disabled()
@@ -290,27 +287,3 @@ class Device(LoggedModel):
return self.get_events_with_any_permission()
else:
return self.organizer.events.none()
class DeviceLastSeen(models.Model):
# This is a separate model since we expect it to get A LOT of writes and PostgreSQL always
# writes full rows and then needs to update all indexes on the row, so this is going to save a
# lot of write traffic on the databse
device = models.OneToOneField("Device", on_delete=models.CASCADE, related_name="last_seen")
last_seen = models.DateTimeField(auto_now=True)
class Meta:
indexes = [
BrinIndexIgnoredOnSQLite(
# BRIN indexes are highly efficient on lots of updates, especially of chronological data
# and especially if we later want to query them by range, as we likely want to.
"last_seen",
name="pretixbase_device_last_seen",
autosummarize=True
)
]
@property
def is_recent(self):
# pretixSCAN/pretixPOS sync every 5 minutes, so 7 minutes can be considered "offline"
return now() - self.last_seen < timedelta(minutes=7)
+3 -8
View File
@@ -628,14 +628,9 @@ class Order(LockModel, LoggedModel):
def set_expires(self, now_dt=None, subevents=None):
now_dt = now_dt or now()
tz = ZoneInfo(self.event.settings.timezone)
sales_channel_suffix = "_" + self.sales_channel.identifier.replace(".", "_")
if not (mode := self.event.settings.get(f'payment_term_mode{sales_channel_suffix}')):
mode = self.event.settings.get('payment_term_mode')
sales_channel_suffix = ""
mode = self.event.settings.get('payment_term_mode')
if mode == 'days':
exp_by_date = now_dt.astimezone(tz) + timedelta(days=self.event.settings.get(f'payment_term_days{sales_channel_suffix}', as_type=int))
exp_by_date = now_dt.astimezone(tz) + timedelta(days=self.event.settings.get('payment_term_days', as_type=int))
exp_by_date = exp_by_date.astimezone(tz).replace(hour=23, minute=59, second=59, microsecond=0)
if self.event.settings.get('payment_term_weekdays'):
if exp_by_date.weekday() == 5:
@@ -643,7 +638,7 @@ class Order(LockModel, LoggedModel):
elif exp_by_date.weekday() == 6:
exp_by_date += timedelta(days=1)
elif mode == 'minutes':
exp_by_date = now_dt.astimezone(tz) + timedelta(minutes=self.event.settings.get(f'payment_term_minutes{sales_channel_suffix}', as_type=int))
exp_by_date = now_dt.astimezone(tz) + timedelta(minutes=self.event.settings.get('payment_term_minutes', as_type=int))
else:
raise ValueError("'payment_term_mode' has an invalid value '{}'.".format(mode))
-5
View File
@@ -53,7 +53,6 @@ from django.utils.translation import (
)
from django_scopes import scopes_disabled
from pretix.base.decimal import round_decimal
from pretix.base.i18n import language
from pretix.base.media import MEDIA_TYPES
from pretix.base.models import (
@@ -917,8 +916,6 @@ class CartManager:
if custom_price > 99_999_999_999:
raise CartError(error_messages['price_too_high'])
custom_price = round_decimal(custom_price, currency=self.event.currency)
op = self.AddOperation(
count=i['count'],
item=item,
@@ -1041,8 +1038,6 @@ class CartManager:
if custom_price > 99_999_999_999:
raise CartError(error_messages['price_too_high'])
custom_price = round_decimal(custom_price, currency=self.event.currency)
# Fix positions with wrong price (TODO: happens out-of-cartmanager-transaction and therefore a little hacky)
for ca in current_addons[cp][a['item'], a['variation']]:
if ca.listed_price != listed_price:
+3 -11
View File
@@ -801,10 +801,11 @@ def get_available_placeholders(event, base_parameters, rich=False):
return params
def prepare_sample_context_for_preview(placeholder_to_sample):
def get_sample_context(event, context_parameters, rich=True):
context_dict = {}
lbl = _('This value will be replaced based on dynamic parameters.')
for k, sample in placeholder_to_sample.items():
for k, v in get_available_placeholders(event, context_parameters, rich=rich).items():
sample = v.render_sample(event)
if isinstance(sample, PlainHtmlAlternativeString):
context_dict[k] = PlainHtmlAlternativeString(
'<{el} class="placeholder" title="{title}">{plain}</{el}>'.format(
@@ -829,12 +830,3 @@ def prepare_sample_context_for_preview(placeholder_to_sample):
escape(sample)
))
return context_dict
def get_sample_context(event, context_parameters, rich=True):
return prepare_sample_context_for_preview(
{
k: v.render_sample(event)
for k, v in get_available_placeholders(event, context_parameters, rich=rich).items()
}
)
+6 -6
View File
@@ -979,12 +979,12 @@ DEFAULTS = {
'form_class': forms.IntegerField,
'serializer_class': serializers.IntegerField,
'write_permission': 'event.settings.payment:write',
'form_kwargs': lambda suffix="", parent=0: dict(
'form_kwargs': dict(
label=_('Payment term in days'),
widget=forms.NumberInput(
attrs={
'data-display-dependency': f'#id_payment_term_mode{suffix}_{parent}',
'data-required-if': f'#id_payment_term_mode{suffix}_{parent}'
'data-display-dependency': '#id_payment_term_mode_0',
'data-required-if': '#id_payment_term_mode_0'
},
),
help_text=_("The number of days after placing an order the user has to pay to preserve their reservation. If "
@@ -1023,7 +1023,7 @@ DEFAULTS = {
'form_class': forms.IntegerField,
'serializer_class': serializers.IntegerField,
'write_permission': 'event.settings.payment:write',
'form_kwargs': lambda suffix="", parent=1: dict(
'form_kwargs': dict(
label=_('Payment term in minutes'),
help_text=_("The number of minutes after placing an order the user has to pay to preserve their reservation. "
"Only use this if you exclusively offer real-time payment methods. Please note that for technical reasons, "
@@ -1032,8 +1032,8 @@ DEFAULTS = {
MaxValueValidator(1440)],
widget=forms.NumberInput(
attrs={
'data-display-dependency': f'#id_payment_term_mode{suffix}_{parent}',
'data-required-if': f'#id_payment_term_mode{suffix}_{parent}'
'data-display-dependency': '#id_payment_term_mode_1',
'data-required-if': '#id_payment_term_mode_1'
},
),
),
-44
View File
@@ -856,50 +856,6 @@ class PaymentSettingsForm(EventSettingsValidationMixin, SettingsForm):
'tax_rule_payment',
]
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.term_channel_fields = {}
for c in self.obj.organizer.sales_channels.all():
if c.type_instance.payment_restrictions_supported and c.identifier != "web":
# At the moment, it seems sufficient to allow this for the same channel types as other payment settings
# We can always introduce more flags later if needed
suffix = '_' + c.identifier.replace(".", "_")
self.term_channel_fields[c] = [
'payment_term_mode' + suffix,
'payment_term_days' + suffix,
'payment_term_minutes' + suffix,
]
self.fields['payment_term_mode' + suffix] = DEFAULTS['payment_term_mode']['form_class'](
label=_("Payment term"),
widget=forms.RadioSelect,
required=False,
choices=(
('', _("same as above")),
('days', _("different payment term in days")),
('minutes', _("different payment term in minutes"))
),
)
self.fields['payment_term_days' + suffix] = DEFAULTS['payment_term_days']['form_class'](
required=False,
**DEFAULTS['payment_term_days']['form_kwargs'](suffix, 1),
)
self.fields['payment_term_minutes' + suffix] = DEFAULTS['payment_term_minutes']['form_class'](
required=False,
**DEFAULTS['payment_term_minutes']['form_kwargs'](suffix, 2),
)
def clean(self):
data = super().clean()
for c in self.term_channel_fields.keys():
suffix = '_' + c.identifier.replace(".", "_")
mode = self.cleaned_data.get(f'payment_term_mode{suffix}')
if mode == 'days' and self.cleaned_data.get(f'payment_term_days{suffix}') is None:
raise ValidationError({f'payment_term_days{suffix}': _("This field is required.")})
if mode == 'minutes' and self.cleaned_data.get(f'payment_term_minutes{suffix}') is None:
raise ValidationError({f'payment_term_minutes{suffix}': _("This field is required.")})
return data
def clean_payment_term_days(self):
value = self.cleaned_data.get('payment_term_days')
if self.cleaned_data.get('payment_term_mode') == 'days' and value is None:
@@ -2,10 +2,9 @@
{% load i18n %}
{% load static %}
{% load bootstrap3 %}
{% load getitem %}
{% block inside %}
<h1>{% trans "Payment settings" %}</h1>
<form action="" method="post" class="form-horizontal">
<form action="" method="post" class="form-horizontal form-plugins">
{% csrf_token %}
<div class="tabbed-form">
<fieldset>
@@ -72,37 +71,14 @@
{% bootstrap_form_errors form layout="control" %}
{% bootstrap_field form.payment_term_mode layout="control" %}
{% bootstrap_field form.payment_term_days layout="control" %}
{% bootstrap_field form.payment_term_minutes layout="control" %}
{% bootstrap_field form.payment_term_weekdays layout="control" %}
{% bootstrap_field form.payment_term_minutes layout="control" %}
{% bootstrap_field form.payment_term_last layout="control" %}
{% bootstrap_field form.payment_term_expire_automatically layout="control" %}
{% trans "days" context "unit" as days %}
{% bootstrap_field form.payment_term_expire_delay_days layout="control" addon_after=days %}
{% bootstrap_field form.payment_term_accept_late layout="control" %}
{% bootstrap_field form.payment_pending_hidden layout="control" %}
{% for c, fields in form.term_channel_fields.items %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
{% if "." in c.icon %}
<img src="{% static c.icon %}" class="fa-like-image"
data-toggle="tooltip" title="{{ c.type_instance.verbose_name }}">
{% else %}
<span class="fa fa-fw fa-{{ c.icon }} text-muted"
data-toggle="tooltip" title="{{ c.type_instance.verbose_name }}"></span>
{% endif %}
{{ c.label }}
</h3>
</div>
<div class="panel-body">
{% for f in fields %}
{% bootstrap_field form|getitem:f layout="control" %}
{% endfor %}
</div>
</div>
{% endfor %}
</fieldset>
<fieldset>
<legend>{% trans "Advanced" %}</legend>
@@ -118,10 +118,6 @@
</td>
{% endif %}
<td>
<span class="fa fa-fw {% if d.last_seen and d.last_seen.is_recent %}fa-check-circle text-success{% else %}fa-circle text-danger{% endif %}"
data-toggle="tooltip"
title="{% if d.last_seen %}{% blocktrans with time=d.last_seen.last_seen|date:"SHORT_DATETIME_FORMAT" %}Last seen: {{ time }}{% endblocktrans %}{% else %}{% trans "No recent contact" %}{% endif %}"
></span>
{{ d.device_id }}
</td>
<td>
@@ -129,7 +125,6 @@
<del>{% endif %}
{{ d.name }}
{% if d.revoked %}</del>{% endif %}
{% if d.gate %}
<br>
<small class="text-muted">{{ d.gate.name }}</small>
+2 -2
View File
@@ -269,8 +269,8 @@ class MailSettingsSetupView(TemplateView):
if settings.MAIL_CUSTOM_SENDER_DMARC_REQUIRED:
dmarc_record = get_dmarc_record(hostname)
if not dmarc_record:
dmarc_warning = _(
'We did not find a DMARC record for your domain. This means that there is a very high chance '
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.'
)
+1 -1
View File
@@ -382,7 +382,7 @@ class OrderOverpaidRefundBulkActionView(BaseOrderBulkActionView):
'provider': refund.provider,
}, user=self.request.user)
payment.payment_provider.execute_refund(refund)
return bool(proposals)
return True
except (ValueError, PaymentException):
return False
+11 -9
View File
@@ -108,9 +108,6 @@ from pretix.base.services.export import (
init_organizer_exporters, multiexport, scheduled_organizer_export,
)
from pretix.base.services.mail import mail, prefix_subject
from pretix.base.services.placeholders import (
prepare_sample_context_for_preview,
)
from pretix.base.templatetags.rich_text import markdown_compile_email
from pretix.base.views.tasks import AsyncAction
from pretix.control.forms.exports import ScheduledOrganizerExportForm
@@ -348,11 +345,16 @@ class MailSettingsPreview(OrganizerPermissionRequiredMixin, View):
# get all supported placeholders with dummy values
def placeholders(self, item):
ctx = prepare_sample_context_for_preview(
MailSettingsForm(obj=self.request.organizer)._get_sample_context(
MailSettingsForm.base_context[item]
)
)
ctx = {}
for p, s in MailSettingsForm(obj=self.request.organizer)._get_sample_context(
MailSettingsForm.base_context[item]).items():
if s.strip().startswith('*'):
ctx[p] = s
else:
ctx[p] = '<span class="placeholder" title="{}">{}</span>'.format(
_('This value will be replaced based on dynamic parameters.'),
s
)
return self.SafeDict(ctx)
def post(self, request, *args, **kwargs):
@@ -1208,7 +1210,7 @@ class DeviceQueryMixin:
def get_queryset(self):
qs = self.request.organizer.devices.prefetch_related(
'limit_events', 'gate',
).select_related('last_seen').order_by('revoked', '-device_id')
).order_by('revoked', '-device_id')
if 'device' in self.request_data and '__ALL' not in self.request_data:
qs = qs.filter(
-19
View File
@@ -22,7 +22,6 @@
import contextlib
from django.conf import settings
from django.contrib.postgres.indexes import BrinIndex
from django.core.exceptions import FieldDoesNotExist, ImproperlyConfigured
from django.db import connection, transaction
from django.db.models import (
@@ -286,21 +285,3 @@ def get_deterministic_ordering(model, ordering):
# on the primary key to provide total ordering.
ordering.append("-pk")
return ordering
class IgnoreOnSQLiteMixin:
# Mixin to allow defining PostgreSQL-specific indexes that will just not be created
# on SQLite. SQLite is supported for testing only anyways!
def create_sql(self, model, schema_editor, *args, **kwargs):
if "sqlite" in settings.DATABASES["default"]["ENGINE"]:
return ""
return super().create_sql(model, schema_editor, *args, **kwargs)
def remove_sql(self, model, schema_editor, **kwargs):
if "sqlite" in settings.DATABASES["default"]["ENGINE"]:
return ""
return super().remove_sql(model, schema_editor, **kwargs)
class BrinIndexIgnoredOnSQLite(IgnoreOnSQLiteMixin, BrinIndex):
pass
+222 -367
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2026-07-15 14:20+0000\n"
"Last-Translator: Llewelyn Barkhuizen <llewelyn@akademia.ac.za>\n"
"Language-Team: Afrikaans <https://translate.pretix.eu/projects/pretix/pretix/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2026.7.1\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr "Engels"
@@ -1169,19 +1201,6 @@ msgstr ""
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1314,66 +1333,6 @@ msgstr ""
msgid "No"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Purchase ticket"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Start time"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "End time"
msgstr ""
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2201,6 +2160,30 @@ msgstr ""
msgid "Position ID"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2592,6 +2575,12 @@ msgstr ""
msgid "Gift card code"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2705,7 +2694,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2871,7 +2860,7 @@ msgid "This combination of credentials is not known to our system."
msgstr ""
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -3794,7 +3783,6 @@ msgstr ""
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4412,8 +4400,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5708,6 +5696,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6486,7 +6491,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6505,7 +6510,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -6974,12 +6979,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7536,6 +7535,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -8661,12 +8665,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10199,11 +10197,11 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py
#: 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 "
@@ -11684,7 +11682,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -12880,7 +12877,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -12904,7 +12901,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13079,22 +13076,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13132,6 +13113,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13359,36 +13347,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
msgid "All sources"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Device actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "User email"
msgstr ""
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14566,7 +14524,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -14680,53 +14637,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "The selected quota does not match the selected subevent."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "There is no sufficient quota available to perform this change."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16432,6 +16342,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -16700,7 +16614,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17118,8 +17031,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17130,6 +17043,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17264,7 +17178,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -17820,22 +17733,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -17996,94 +17893,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18198,6 +18007,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18372,6 +18244,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19270,20 +19180,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19294,10 +19190,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20312,7 +20204,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20399,7 +20290,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -20696,13 +20586,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21115,6 +20998,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22191,7 +22079,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24348,13 +24235,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24362,10 +24247,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgid "Change multiple vouchers"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -24705,8 +24586,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25309,30 +25189,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26390,7 +26246,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -27578,6 +27433,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28212,13 +28072,8 @@ msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
+222 -367
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -17,6 +17,38 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr ""
@@ -1167,19 +1199,6 @@ msgstr ""
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1312,66 +1331,6 @@ msgstr ""
msgid "No"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Purchase ticket"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Start time"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "End time"
msgstr ""
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2199,6 +2158,30 @@ msgstr ""
msgid "Position ID"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2590,6 +2573,12 @@ msgstr ""
msgid "Gift card code"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2703,7 +2692,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2869,7 +2858,7 @@ msgid "This combination of credentials is not known to our system."
msgstr ""
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -3792,7 +3781,6 @@ msgstr ""
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4410,8 +4398,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5706,6 +5694,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6484,7 +6489,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6503,7 +6508,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -6972,12 +6977,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7534,6 +7533,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -8659,12 +8663,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10197,11 +10195,11 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py
#: 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 "
@@ -11682,7 +11680,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -12878,7 +12875,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -12902,7 +12899,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13077,22 +13074,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13130,6 +13111,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13357,36 +13345,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
msgid "All sources"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Device actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "User email"
msgstr ""
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14564,7 +14522,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -14678,53 +14635,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "The selected quota does not match the selected subevent."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "There is no sufficient quota available to perform this change."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16430,6 +16340,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -16698,7 +16612,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17116,8 +17029,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17128,6 +17041,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17262,7 +17176,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -17818,22 +17731,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -17994,94 +17891,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18196,6 +18005,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18370,6 +18242,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19268,20 +19178,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19292,10 +19188,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20310,7 +20202,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20397,7 +20288,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -20694,13 +20584,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21113,6 +20996,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22189,7 +22077,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24346,13 +24233,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24360,10 +24245,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgid "Change multiple vouchers"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -24703,8 +24584,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25307,30 +25187,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26388,7 +26244,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -27576,6 +27431,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28210,13 +28070,8 @@ msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
File diff suppressed because it is too large Load Diff
+222 -367
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+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/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.8.4\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr "İngiliscə"
@@ -1169,19 +1201,6 @@ msgstr ""
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1314,66 +1333,6 @@ msgstr ""
msgid "No"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Purchase ticket"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Start time"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "End time"
msgstr ""
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2201,6 +2160,30 @@ msgstr ""
msgid "Position ID"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2592,6 +2575,12 @@ msgstr ""
msgid "Gift card code"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2705,7 +2694,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2871,7 +2860,7 @@ msgid "This combination of credentials is not known to our system."
msgstr ""
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -3794,7 +3783,6 @@ msgstr ""
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4412,8 +4400,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5708,6 +5696,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6486,7 +6491,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6505,7 +6510,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -6974,12 +6979,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7536,6 +7535,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -8661,12 +8665,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10199,11 +10197,11 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py
#: 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 "
@@ -11684,7 +11682,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -12880,7 +12877,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -12904,7 +12901,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13079,22 +13076,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13132,6 +13113,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13359,36 +13347,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
msgid "All sources"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Device actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "User email"
msgstr ""
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14566,7 +14524,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -14680,53 +14637,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "The selected quota does not match the selected subevent."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "There is no sufficient quota available to perform this change."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16432,6 +16342,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -16700,7 +16614,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17118,8 +17031,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17130,6 +17043,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17264,7 +17178,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -17820,22 +17733,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -17996,94 +17893,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18198,6 +18007,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18372,6 +18244,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19270,20 +19180,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19294,10 +19190,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20312,7 +20204,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20399,7 +20290,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -20696,13 +20586,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21115,6 +20998,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22191,7 +22079,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24348,13 +24235,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24362,10 +24247,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgid "Change multiple vouchers"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -24705,8 +24586,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25309,30 +25189,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26392,7 +26248,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -27580,6 +27435,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28214,13 +28074,8 @@ msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
+236 -404
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+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/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2026.6.1\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Botiga desactivada"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "S'ha acabat la prevenda"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "No ha començat la prevenda"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "En venda"
#: pretix/_base_settings.py
msgid "English"
msgstr "Anglès"
@@ -1342,24 +1374,6 @@ msgstr "Compte de Stripe"
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#, fuzzy
#| msgctxt "refund_source"
#| msgid "Customer"
msgid "Customers"
msgstr "Client"
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
#, fuzzy
#| msgid "Members"
msgid "Memberships"
msgstr "Membres"
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1499,74 +1513,6 @@ msgstr "Si"
msgid "No"
msgstr "No"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Mode de prova"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Cancel·lat"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#, fuzzy
#| msgid "Members"
msgid "Membership type"
msgstr "Membres"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Purchased"
msgid "Purchase ticket"
msgstr "Comprat"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Data d'inici"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Date"
msgid "Start time"
msgstr "Data"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Data de finalització"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End: %(time)s"
msgid "End time"
msgstr "Final: %(time)s"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
#, fuzzy
#| msgid "Invoices"
@@ -2444,6 +2390,30 @@ msgstr "cancel·lat"
msgid "Position ID"
msgstr "Identificador de la posició"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Data d'inici"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Data de finalització"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2884,6 +2854,12 @@ msgstr ""
msgid "Gift card code"
msgstr "Codi del val regal"
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Mode de prova"
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2997,7 +2973,7 @@ msgstr "Expirat i amb valor"
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -3183,7 +3159,7 @@ msgid "This combination of credentials is not known to our system."
msgstr "El sistema no reconeix aquesta combinació de credencials."
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
"Per raons de seguretat, si us plau espereu 5 minuts abans de tornar-ho a "
@@ -4210,7 +4186,6 @@ msgstr "Permet traspassar la quota"
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4934,8 +4909,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -6473,6 +6448,25 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr "Número de vegades que es pot utilitzar aquest val."
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Cancel·lat"
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#, fuzzy
#| msgid "Members"
msgid "Membership type"
msgstr "Membres"
#: pretix/base/models/orders.py
msgid "pending"
msgstr "pendent"
@@ -7333,7 +7327,7 @@ msgstr "Aquesta variació no pertany a aquest producte."
msgid "It is currently not possible to create vouchers for add-on products."
msgstr "Actualment no es poden crear vals per a complements de productes."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -7361,7 +7355,7 @@ msgid ""
msgstr ""
"El número màxim per comanda no pot ser menor que el número mínim per comanda."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7905,12 +7899,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr "Aquesta targeta regal ja s'ha fet servir. Si us plau torneu a provar."
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr "Codi de tiquet (contingut del codi de barres)"
@@ -8561,6 +8549,14 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#, fuzzy
#| msgctxt "refund_source"
#| msgid "Customer"
msgid "Customers"
msgstr "Client"
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -9953,14 +9949,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
#, fuzzy
#| msgid "You cannot select a quota that belongs to a different event."
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr "No podeu seleccionar una quota que pertany a un esdeveniment diferent."
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -11834,13 +11822,13 @@ 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/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/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 "
@@ -13876,7 +13864,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -15316,7 +15303,7 @@ msgstr "Totes les comandes"
msgid "Valid orders"
msgstr "Comandes pagades"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr "Paga (o cancel·lat amb tarifa de pagament)"
@@ -15345,7 +15332,7 @@ msgstr "Pendent o pagat"
msgid "Cancellations"
msgstr "Cancel·lació"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Canceled (paid fee)"
msgid "Canceled (fully)"
@@ -15559,22 +15546,6 @@ msgstr "La tenda està activa i la pre-venda en marxa"
msgid "Inactive"
msgstr "Inactiu"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "No ha començat la prevenda"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "S'ha acabat la prevenda"
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
#, fuzzy
@@ -15624,6 +15595,15 @@ msgstr "Inactiu"
msgid "not yet activated"
msgstr "Inactiu"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
#, fuzzy
#| msgid "Members"
msgid "Memberships"
msgstr "Membres"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Event end"
@@ -15897,42 +15877,6 @@ msgstr "Revocar l'accés"
msgid "Search email address or subject"
msgstr "Requereix adreces de correu per tiquet"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All orders"
msgid "All sources"
msgstr "Totes les comandes"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Device name"
msgid "Device actions"
msgstr "Nom del dispositiu"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order details"
msgid "User email"
msgstr "Detalls de la comanda"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -17262,7 +17206,6 @@ msgstr "Opcional"
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Save changes"
msgctxt "form_bulk"
@@ -17384,65 +17327,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "You cannot create a voucher that blocks quota as the selected product or "
#| "quota is currently sold out or completely reserved."
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
"No podeu crear un val que bloca la quota ja que el producte o quota "
"seleccionats s'han venut o reservat completament."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The selected product does not allow to select a seat."
msgid "The selected quota does not match the selected subevent."
msgstr "El producte seleccionat no permet triar un seient."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr "No hi ha prou quota disponible a \"{}\" per realitzar l'operació."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -19390,6 +19274,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -19675,7 +19563,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -20129,8 +20016,8 @@ msgstr "Esborrar"
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -20141,6 +20028,7 @@ msgstr "Esborrar"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -20292,7 +20180,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -20936,22 +20823,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid "Verification failed"
@@ -21126,94 +20997,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -21332,6 +21115,69 @@ msgstr "URL de sistema:"
msgid "Create QR code"
msgstr "Codi de comanda"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -21523,6 +21369,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -22535,20 +22419,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Botiga desactivada"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "En venda"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -22559,12 +22429,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#, fuzzy
#| msgid "Specific seat"
msgid "Specific object selected"
msgstr "Seient específic"
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -23682,7 +23546,6 @@ msgstr "Pot canviar les comandes"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -23773,7 +23636,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -24079,13 +23941,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#, fuzzy
#| msgid ""
@@ -24546,6 +24401,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -25770,7 +25630,6 @@ msgstr "Pot canviar les comandes"
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr "Configuració avançada"
@@ -28139,13 +27998,11 @@ msgid "Copy codes"
msgstr "Copiar codis"
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr "Detalls del val"
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -28153,12 +28010,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Create multiple vouchers"
msgid "Change multiple vouchers"
msgstr "Crear múltiples vals"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -28522,8 +28373,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -29163,30 +29013,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
#, fuzzy
#| msgid "This gift card was used in the meantime. Please try again."
@@ -30374,7 +30200,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -31714,6 +31539,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -32439,13 +32269,8 @@ msgstr "URL base de la redirecció"
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
@@ -38462,6 +38287,13 @@ msgstr "Kosovo"
#~ msgid "Full access"
#~ msgstr "Nom complet"
#, fuzzy
#~| msgid "You cannot select a quota that belongs to a different event."
#~ msgid ""
#~ "You cannot cancel a position that has been used to issue a gift card."
#~ msgstr ""
#~ "No podeu seleccionar una quota que pertany a un esdeveniment diferent."
#~ msgid "Automatically on payment"
#~ msgstr "Automàticament durant el pagament"
+231 -461
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+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/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 5.15.2\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Obchod vypnut"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Předprodej ukončen"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "Předprodej zatím nezačal"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "V prodeji"
#: pretix/_base_settings.py
msgid "English"
msgstr "Angličtina"
@@ -1270,19 +1302,6 @@ msgstr "Zákaznické účty"
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr "Stažení tabulky všech aktuálně registrovaných zákaznických účtů."
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "Zákazníci"
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr "Členství"
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1415,71 +1434,6 @@ msgstr "Ano"
msgid "No"
msgstr "Ne"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Testovací režím"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Zrušeno"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Druh členství"
#: pretix/base/exporters/customers.py
#, fuzzy
msgid "Purchase ticket"
msgstr "Zakoupeno"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Datum začátku"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Start time from"
msgid "Start time"
msgstr "Čas začátku od"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Datum konce"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End: %(time)s"
msgid "End time"
msgstr "Konec: %(time)s"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2335,6 +2289,30 @@ msgstr "zrušeno"
msgid "Position ID"
msgstr "ID pozice"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Datum začátku"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Datum konce"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2739,6 +2717,12 @@ msgstr "Stáhněte si tabulku všech transakcí s dárkovými poukazy."
msgid "Gift card code"
msgstr "kód dárkové poukázky"
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Testovací režím"
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2855,7 +2839,7 @@ msgstr "Expirované a s hodnotou"
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -3023,7 +3007,7 @@ msgid "This combination of credentials is not known to our system."
msgstr "Zadané přihlašovací údaje nejsou platné."
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
"Z bezpečnostních důvodů, prosím, počkejte pět minut a potom to zkuste znovu."
@@ -3995,7 +3979,6 @@ msgstr "Ignorování kvóty"
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4687,8 +4670,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -6155,6 +6138,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr "Maximální počet využití."
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Zrušeno"
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Druh členství"
#: pretix/base/models/orders.py
msgid "pending"
msgstr "chybějící"
@@ -6990,7 +6990,7 @@ msgstr "Tato varianta nepatří k tomuto produktu."
msgid "It is currently not possible to create vouchers for add-on products."
msgstr "V současné době není možné vytvářet poukazy na doplňkové produkty."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -7013,7 +7013,7 @@ msgid ""
"usages."
msgstr "Maximální počet použití nesmí být nižší než minimální počet použití."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7536,15 +7536,6 @@ msgstr "Tato dárková karta není organizátorem akce akceptována."
msgid "This gift card was used in the meantime. Please try again."
msgstr "Tato dárková karta byla mezitím použita. Zkuste to prosím znovu."
#: pretix/base/payment.py
#, fuzzy
#| msgid ""
#| "This payment provider does not exist or the respective plugin is disabled."
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr "Tento poskytovatel plateb neexistuje nebo příslušný plugin je vypnutý."
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr "Kód vstupenky (obsah čárkového kódu)"
@@ -8150,6 +8141,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "Zákazníci"
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr "Zařízení"
@@ -9477,16 +9473,6 @@ msgid ""
"card."
msgstr "Cenu pozice, která byla použita k vydání dárkové karty, nelze změnit."
#: pretix/base/services/orders.py
#, fuzzy
#| msgid ""
#| "You cannot change the price of a position that has been used to issue a "
#| "gift card."
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr "Cenu pozice, která byla použita k vydání dárkové karty, nelze změnit."
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -11302,13 +11288,13 @@ 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/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact"
msgid "Contact URL"
msgstr "Kontakt"
#: pretix/base/settings.py
#: 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 "
@@ -13301,7 +13287,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -14611,7 +14596,7 @@ msgstr "Všechny objednávky"
msgid "Valid orders"
msgstr "Platné objednávky"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr "Zaplaceno (nebo zrušeno se zaplaceným poplatkem)"
@@ -14635,7 +14620,7 @@ msgstr "Probíhající nebo zaplacené"
msgid "Cancellations"
msgstr "Storna"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr "Zrušeno (kompletní)"
@@ -14815,22 +14800,6 @@ msgstr "Obchod naživo a předprodej běží"
msgid "Inactive"
msgstr "Neaktivní"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "Předprodej zatím nezačal"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Předprodej ukončen"
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -14868,6 +14837,13 @@ msgstr "aktivní"
msgid "not yet activated"
msgstr "zatím neaktivováno"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr "Členství"
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr "Nemá žádné členství"
@@ -15097,42 +15073,6 @@ msgstr "Odvolaná zařízení"
msgid "Search email address or subject"
msgstr "Vyžadovat e-mailové adresy na lístek"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "Zdroj"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All vouchers"
msgid "All sources"
msgstr "Všechny poukázky"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr "Týmové akce"
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr "Zákaznické akce"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Device status"
msgid "Device actions"
msgstr "Stav zařízení"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order details"
msgid "User email"
msgstr "Podrobnosti o objednávce"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr "Všechny uživatelé"
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr "Další text v zápatí"
@@ -16500,7 +16440,6 @@ msgstr "Volitelné"
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr "změnit"
@@ -16616,65 +16555,6 @@ msgstr ""
"Poukázka odpovídá pouze skrytým produktům, ale nezvolili jste, že je mají "
"zobrazit."
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "You cannot create a voucher that blocks quota as the selected product or "
#| "quota is currently sold out or completely reserved."
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
"Nelze vytvořit poukaz, který blokuje kvótu, protože vybraný produkt nebo "
"kvóta jsou aktuálně vyprodány nebo zcela rezervovány."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The selected product does not allow to select a seat."
msgid "The selected quota does not match the selected subevent."
msgstr "Vybraný produkt neumožňuje výběr místa."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr "Na kvótu „{}“ není k dispozici dostatek kvóty k provedení operace."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr "Kupónové kódy"
@@ -18533,6 +18413,10 @@ msgstr "Autorizované aplikace"
msgid "Account history"
msgstr "Historie účtu"
#: pretix/control/navigation.py
msgid "All users"
msgstr "Všechny uživatelé"
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -18811,7 +18695,6 @@ msgstr "Nastavit nové heslo"
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -19267,8 +19150,8 @@ msgstr "Smazat"
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -19279,6 +19162,7 @@ msgstr "Smazat"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -19413,7 +19297,6 @@ msgstr "Čas"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr "Vybrat všechny výsledky i na dalších stránkách"
@@ -20129,34 +20012,6 @@ msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
"Našli jsme záznam SPF na vaší doméně, který obsahuje tento systém. Skvělé!"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid "Your new SPF record could look like this:"
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr "Váš nový záznam SPF může vypadat takto:"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid ""
#| "We found an SPF record on your domain that includes this system. Great!"
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
"Našli jsme záznam SPF na vaší doméně, který obsahuje tento systém. Skvělé!"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid "Your new SPF record could look like this:"
msgid "Your new DMARC record could look like this:"
msgstr "Váš nový záznam SPF může vypadat takto:"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid ""
#| "We found an SPF record on your domain that includes this system. Great!"
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
"Našli jsme záznam SPF na vaší doméně, který obsahuje tento systém. Skvělé!"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr "Ověřování"
@@ -20356,103 +20211,6 @@ msgstr ""
"nesmazatelná data, například objednávky, které nebyly provedeny v testovacím "
"režimu."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr "Kontrola"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
"Tato akce obsahuje <strong>přeplacené objednávky</strong>, například z "
"důvodu duplicitních pokusů o platbu. Měli byste tyto případy zkontrolovat a "
"uvažovat možnost vrácení přeplacené částky uživateli."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr "Zobrazit přeplacené objednávky"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
"Tato akce obsahuje <strong>nevyřízené náhrady</strong>, o které byste se "
"měli postarat."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr "Zobrazit čekající náhrady"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
"Tato akce obsahuje <strong>vyžádaná zrušení</strong>, o které byste se měli "
"postarat."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr "Zobrazit objednávky s požadavkem na zrušení"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
"Tato akce obsahuje <strong>nevyřízená schválení</strong>, o která byste se "
"měli postarat."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr "Zobrazit objednávky čekající na schválení"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -20577,6 +20335,78 @@ msgstr "Adresa obchodu:"
msgid "Create QR code"
msgstr "Vytvořit kód QR"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
"Tato akce obsahuje <strong>přeplacené objednávky</strong>, například z "
"důvodu duplicitních pokusů o platbu. Měli byste tyto případy zkontrolovat a "
"uvažovat možnost vrácení přeplacené částky uživateli."
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr "Zobrazit přeplacené objednávky"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
"Tato akce obsahuje <strong>nevyřízené náhrady</strong>, o které byste se "
"měli postarat."
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr "Zobrazit čekající náhrady"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
"Tato akce obsahuje <strong>vyžádaná zrušení</strong>, o které byste se měli "
"postarat."
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr "Zobrazit objednávky s požadavkem na zrušení"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
"Tato akce obsahuje <strong>nevyřízená schválení</strong>, o která byste se "
"měli postarat."
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr "Zobrazit objednávky čekající na schválení"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -20758,6 +20588,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr "Všechny akce"
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr "Týmové akce"
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr "Zákaznické akce"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr "Kontrola"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -21720,20 +21588,6 @@ msgstr "Žádné termíny"
msgid "More quotas"
msgstr "Další kvóty"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Obchod vypnut"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "V prodeji"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -21744,12 +21598,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#, fuzzy
#| msgid "Specific seat"
msgid "Specific object selected"
msgstr "Přidělené místo"
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -22806,7 +22654,6 @@ msgstr "Změnit více zařízení"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr "%(number)s vybráno"
@@ -22903,7 +22750,6 @@ msgstr "Smazat vybrané"
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr "Upravit vybrané"
@@ -23205,13 +23051,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -23648,6 +23487,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "Zdroj"
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -24795,7 +24639,6 @@ msgstr "Změnit více zařízení"
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr "Rozšířená nastavení"
@@ -27126,13 +26969,11 @@ msgid "Copy codes"
msgstr "Kopírovat kódy"
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr "Podrobnosti o poukázce"
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -27140,12 +26981,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Change multiple devices"
msgid "Change multiple vouchers"
msgstr "Změnit více zařízení"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -27502,8 +27337,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -28137,66 +27971,6 @@ msgstr ""
"Měli byste aktualizovat nastavení DNS své domény tak, aby zahrnovalo tento "
"systém v záznamu SPF."
#: pretix/control/views/mailsetup.py
#, fuzzy
#| msgid ""
#| "We could not find an SPF record set for the 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 an SPF record "
#| "on the domain. You can do so through the DNS settings at the provider you "
#| "registered your domain with."
msgid ""
"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."
msgstr ""
"Nepodařilo se nám najít záznam SPF nastavený pro doménu, kterou se snažíte "
"použít. To znamená, že je velmi vysoká pravděpodobnost, že většina e-mailů "
"bude odmítnuta nebo označena jako spam. Důrazně doporučujeme nastavit záznam "
"SPF pro danou doménu. Můžete tak učinit prostřednictvím nastavení DNS u "
"poskytovatele, u kterého jste doménu zaregistrovali."
#: pretix/control/views/mailsetup.py
#, fuzzy
#| msgid ""
#| "We found an SPF record set for the domain you are trying to use, but it "
#| "does not include this system's email server. 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 to include this system "
#| "in the SPF record."
msgid ""
"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."
msgstr ""
"Našli jsme záznam SPF nastavený pro doménu, kterou se snažíte použít, ale "
"neobsahuje e-mailový server tohoto systému. To znamená, že je velmi vysoká "
"pravděpodobnost, že většina e-mailů bude odmítnuta nebo označena jako spam. "
"Měli byste aktualizovat nastavení DNS své domény tak, aby zahrnovalo tento "
"systém v záznamu SPF."
#: pretix/control/views/mailsetup.py
#, fuzzy
#| msgid ""
#| "We found an SPF record set for the domain you are trying to use, but it "
#| "does not include this system's email server. 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 to include this system "
#| "in the SPF record."
msgid ""
"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."
msgstr ""
"Našli jsme záznam SPF nastavený pro doménu, kterou se snažíte použít, ale "
"neobsahuje e-mailový server tohoto systému. To znamená, že je velmi vysoká "
"pravděpodobnost, že většina e-mailů bude odmítnuta nebo označena jako spam. "
"Měli byste aktualizovat nastavení DNS své domény tak, aby zahrnovalo tento "
"systém v záznamu SPF."
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -29299,7 +29073,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -30562,6 +30335,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -31247,13 +31025,8 @@ msgstr "Přesměrování URL"
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
@@ -36150,9 +35923,6 @@ msgstr "Přístup k zápisu"
msgid "Kosovo"
msgstr "Kosovo"
#~ msgid "All actions"
#~ msgstr "Všechny akce"
#, fuzzy
#~| msgid "Account information"
#~ msgid "Account invitation"
+222 -371
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+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/"
@@ -20,6 +20,38 @@ msgstr ""
"(n==3) ? 3 :(n==6) ? 4 : 5;\n"
"X-Generator: Weblate 5.1.1\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr "Saesneg"
@@ -1191,19 +1223,6 @@ msgstr ""
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1336,66 +1355,6 @@ msgstr ""
msgid "No"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Purchase ticket"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Start time"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "End time"
msgstr ""
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2223,6 +2182,30 @@ msgstr ""
msgid "Position ID"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2614,6 +2597,12 @@ msgstr ""
msgid "Gift card code"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2727,7 +2716,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2893,7 +2882,7 @@ msgid "This combination of credentials is not known to our system."
msgstr ""
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -3822,7 +3811,6 @@ msgstr ""
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4440,8 +4428,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5736,6 +5724,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6521,7 +6526,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6540,7 +6545,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7009,12 +7014,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7578,6 +7577,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -8717,12 +8721,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10260,13 +10258,13 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Content"
msgid "Contact URL"
msgstr "Cynnwys"
#: pretix/base/settings.py
#: 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 "
@@ -11753,7 +11751,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -12951,7 +12948,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -12975,7 +12972,7 @@ msgstr ""
msgid "Cancellations"
msgstr "Dileadau"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13150,22 +13147,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13203,6 +13184,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13430,38 +13418,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "Tarddiad"
#: pretix/control/forms/filter.py
msgid "All sources"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Redirection"
msgid "Device actions"
msgstr "Ailgyfeiriad"
#: pretix/control/forms/filter.py
msgid "User email"
msgstr ""
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14649,7 +14605,6 @@ msgstr "Dewisol"
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr "newid"
@@ -14763,55 +14718,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The subevent does not belong to this event."
msgid "The selected quota does not match the selected subevent."
msgstr "Nid yw'r digwyddiad yn perthyn i'r digwyddiad hwn."
#: pretix/control/forms/vouchers.py
msgid "There is no sufficient quota available to perform this change."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16518,6 +16424,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -16786,7 +16696,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17210,8 +17119,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17222,6 +17131,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17356,7 +17266,6 @@ msgstr "Stamp amser"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -17927,22 +17836,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -18103,94 +17996,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18305,6 +18110,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18479,6 +18347,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19396,20 +19302,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19420,10 +19312,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20454,7 +20342,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20545,7 +20432,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -20842,13 +20728,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21263,6 +21142,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "Tarddiad"
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22353,7 +22237,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24534,13 +24417,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24548,10 +24429,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgid "Change multiple vouchers"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -24893,8 +24770,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25505,30 +25381,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26592,7 +26444,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -27789,6 +27640,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28425,13 +28281,8 @@ msgstr "Ailgyfeirio URIs"
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
File diff suppressed because it is too large Load Diff
+14 -14
View File
@@ -7,7 +7,7 @@ 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-31 18:00+0000\n"
"PO-Revision-Date: 2026-04-22 18:00+0000\n"
"Last-Translator: Nikolai <nikolai@lengefeldt.de>\n"
"Language-Team: Danish <https://translate.pretix.eu/projects/pretix/pretix-js/"
"da/>\n"
@@ -16,7 +16,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"
@@ -1306,62 +1306,62 @@ msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "January"
msgstr "januar"
msgstr "Januar"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "February"
msgstr "februar"
msgstr "Februar"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "March"
msgstr "marts"
msgstr "Marts"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "April"
msgstr "april"
msgstr "April"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "May"
msgstr "maj"
msgstr "Maj"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "June"
msgstr "juni"
msgstr "Juni"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "July"
msgstr "juli"
msgstr "Juli"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "August"
msgstr "august"
msgstr "August"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "September"
msgstr "september"
msgstr "September"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "October"
msgstr "oktober"
msgstr "Oktober"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "November"
msgstr "november"
msgstr "November"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "December"
msgstr "december"
msgstr "December"
#~ msgid "iDEAL"
#~ msgstr "iDEAL"
File diff suppressed because it is too large Load Diff
-7
View File
@@ -94,8 +94,6 @@ Checkout
Chrome
Client-ID
Client-Secret
CNAME
CNAME-Eintrag
CODE.txt
Community-Übersetzungen
CONFIRM
@@ -125,11 +123,6 @@ Debug-Modus
dekodi
Desktop-Apps
Di
DKIM
DKIM-Eintrag
DKIM-Schlüssel
DMARC
DMARC-Eintrag
Do
Downloadformat
Dr
File diff suppressed because it is too large Load Diff
@@ -94,8 +94,6 @@ Checkout
Chrome
Client-ID
Client-Secret
CNAME
CNAME-Eintrag
CODE.txt
Community-Übersetzungen
CONFIRM
@@ -125,11 +123,6 @@ Debug-Modus
dekodi
Desktop-Apps
Di
DKIM
DKIM-Eintrag
DKIM-Schlüssel
DMARC
DMARC-Eintrag
Do
Downloadformat
Dr
+222 -367
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+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"
@@ -18,6 +18,38 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr ""
@@ -1168,19 +1200,6 @@ msgstr ""
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1313,66 +1332,6 @@ msgstr ""
msgid "No"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Purchase ticket"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Start time"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "End time"
msgstr ""
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2200,6 +2159,30 @@ msgstr ""
msgid "Position ID"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2591,6 +2574,12 @@ msgstr ""
msgid "Gift card code"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2704,7 +2693,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2870,7 +2859,7 @@ msgid "This combination of credentials is not known to our system."
msgstr ""
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -3793,7 +3782,6 @@ msgstr ""
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4411,8 +4399,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5707,6 +5695,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6485,7 +6490,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6504,7 +6509,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -6973,12 +6978,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7535,6 +7534,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -8660,12 +8664,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10198,11 +10196,11 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py
#: 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 "
@@ -11683,7 +11681,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -12879,7 +12876,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -12903,7 +12900,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13078,22 +13075,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13131,6 +13112,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13358,36 +13346,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
msgid "All sources"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Device actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "User email"
msgstr ""
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14565,7 +14523,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -14679,53 +14636,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "The selected quota does not match the selected subevent."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "There is no sufficient quota available to perform this change."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16431,6 +16341,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -16699,7 +16613,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17117,8 +17030,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17129,6 +17042,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17263,7 +17177,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -17819,22 +17732,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -17995,94 +17892,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18197,6 +18006,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18371,6 +18243,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19269,20 +19179,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19293,10 +19189,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20311,7 +20203,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20398,7 +20289,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -20695,13 +20585,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21114,6 +20997,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22190,7 +22078,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24347,13 +24234,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24361,10 +24246,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgid "Change multiple vouchers"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -24704,8 +24585,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25308,30 +25188,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26389,7 +26245,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -27577,6 +27432,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28211,13 +28071,8 @@ msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
+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-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:33+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"
File diff suppressed because it is too large Load Diff
+222 -367
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -17,6 +17,38 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr ""
@@ -1167,19 +1199,6 @@ msgstr ""
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1312,66 +1331,6 @@ msgstr ""
msgid "No"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Purchase ticket"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Start time"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "End time"
msgstr ""
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2199,6 +2158,30 @@ msgstr ""
msgid "Position ID"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2590,6 +2573,12 @@ msgstr ""
msgid "Gift card code"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2703,7 +2692,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2869,7 +2858,7 @@ msgid "This combination of credentials is not known to our system."
msgstr ""
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -3792,7 +3781,6 @@ msgstr ""
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4410,8 +4398,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5706,6 +5694,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6484,7 +6489,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6503,7 +6508,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -6972,12 +6977,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7534,6 +7533,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -8659,12 +8663,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10197,11 +10195,11 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py
#: 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 "
@@ -11682,7 +11680,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -12878,7 +12875,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -12902,7 +12899,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13077,22 +13074,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13130,6 +13111,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13357,36 +13345,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
msgid "All sources"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Device actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "User email"
msgstr ""
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14564,7 +14522,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -14678,53 +14635,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "The selected quota does not match the selected subevent."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "There is no sufficient quota available to perform this change."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16430,6 +16340,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -16698,7 +16612,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17116,8 +17029,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17128,6 +17041,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17262,7 +17176,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -17818,22 +17731,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -17994,94 +17891,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18196,6 +18005,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18370,6 +18242,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19268,20 +19178,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19292,10 +19188,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20310,7 +20202,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20397,7 +20288,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -20694,13 +20584,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21113,6 +20996,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22189,7 +22077,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24346,13 +24233,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24360,10 +24245,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgid "Change multiple vouchers"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -24703,8 +24584,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25307,30 +25187,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26388,7 +26244,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -27576,6 +27431,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28210,13 +28070,8 @@ msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
File diff suppressed because it is too large Load Diff
+222 -392
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+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/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr "Inglés"
@@ -1264,19 +1296,6 @@ msgstr ""
"Descargue una hoja de cálculo de todas las cuentas de clientes registradas "
"actualmente."
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1409,72 +1428,6 @@ msgstr "Sí"
msgid "No"
msgstr "No"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Personalized ticket"
msgid "Purchase ticket"
msgstr "Boleto personalizado"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Event start time"
msgid "Start time"
msgstr "Hora de inicio del evento"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Event end time"
msgid "End time"
msgstr "Hora de finalización del evento"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2332,6 +2285,30 @@ msgstr ""
msgid "Position ID"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2727,6 +2704,12 @@ msgstr ""
msgid "Gift card code"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2840,7 +2823,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -3006,7 +2989,7 @@ msgid "This combination of credentials is not known to our system."
msgstr ""
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -3944,7 +3927,6 @@ msgstr ""
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4570,8 +4552,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5872,6 +5854,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6652,7 +6651,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6671,7 +6670,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7140,12 +7139,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7719,6 +7712,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -8850,12 +8848,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10390,11 +10382,11 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py
#: 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 "
@@ -11880,7 +11872,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -13084,7 +13075,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -13108,7 +13099,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13283,22 +13274,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13336,6 +13311,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13565,42 +13547,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr "Dirección de correo electrónico"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All invoices"
msgid "All sources"
msgstr "Todas las facturas"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Redirection URIs"
msgid "Device actions"
msgstr "URI de redirección"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order total"
msgid "User email"
msgstr "Pedido total"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14778,7 +14724,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -14892,64 +14837,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "One of the selected products is not available in the selected country."
msgid "The selected quota does not match the selected subevent."
msgstr ""
"Uno de los productos seleccionados no está disponible en el país "
"seleccionado."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr ""
"No hay suficiente cuota disponible en la cuota \"{}\" para realizar la "
"operación."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16663,6 +16550,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -16931,7 +16822,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17349,8 +17239,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17361,6 +17251,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17495,7 +17386,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -18057,22 +17947,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -18235,94 +18109,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18437,6 +18223,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18619,6 +18468,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19517,20 +19404,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19541,10 +19414,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20563,7 +20432,6 @@ msgstr "Dirección de correo electrónico"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20650,7 +20518,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -20947,13 +20814,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21366,6 +21226,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22442,7 +22307,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24618,13 +24482,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24632,12 +24494,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Email address"
msgid "Change multiple vouchers"
msgstr "Dirección de correo electrónico"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -24977,8 +24833,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25581,30 +25436,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26675,7 +26506,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -27863,6 +27693,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28497,13 +28332,8 @@ msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
+222 -367
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+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/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.15.1\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr "Inglise"
@@ -1169,19 +1201,6 @@ msgstr ""
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1314,66 +1333,6 @@ msgstr ""
msgid "No"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Purchase ticket"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Start time"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "End time"
msgstr ""
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2201,6 +2160,30 @@ msgstr ""
msgid "Position ID"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2592,6 +2575,12 @@ msgstr ""
msgid "Gift card code"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2705,7 +2694,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2871,7 +2860,7 @@ msgid "This combination of credentials is not known to our system."
msgstr ""
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -3794,7 +3783,6 @@ msgstr ""
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4412,8 +4400,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5708,6 +5696,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6486,7 +6491,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6505,7 +6510,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -6974,12 +6979,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7536,6 +7535,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -8661,12 +8665,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10199,11 +10197,11 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py
#: 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 "
@@ -11684,7 +11682,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -12880,7 +12877,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -12904,7 +12901,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13079,22 +13076,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13132,6 +13113,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13359,36 +13347,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
msgid "All sources"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Device actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "User email"
msgstr ""
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14566,7 +14524,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -14680,53 +14637,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "The selected quota does not match the selected subevent."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "There is no sufficient quota available to perform this change."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16432,6 +16342,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -16700,7 +16614,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17118,8 +17031,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17130,6 +17043,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17264,7 +17178,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -17820,22 +17733,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -17996,94 +17893,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18198,6 +18007,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18372,6 +18244,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19270,20 +19180,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19294,10 +19190,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20312,7 +20204,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20399,7 +20290,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -20696,13 +20586,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21115,6 +20998,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22191,7 +22079,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24350,13 +24237,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24364,10 +24249,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgid "Change multiple vouchers"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -24707,8 +24588,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25311,30 +25191,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26392,7 +26248,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -27580,6 +27435,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28214,13 +28074,8 @@ msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
+233 -420
View File
@@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"PO-Revision-Date: 2026-07-29 11:04+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2026-07-27 17:00+0000\n"
"Last-Translator: Albizuri <oier@puntu.eus>\n"
"Language-Team: Basque <https://translate.pretix.eu/projects/pretix/pretix/eu/"
">\n"
"Language-Team: Basque <https://translate.pretix.eu/projects/pretix/pretix/"
"eu/>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2026.7.1\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr "Euskara"
@@ -777,15 +809,16 @@ msgstr ""
"pertsonalizatuetarako erabil daitezke."
#: pretix/base/context.py
#, python-brace-format
#, fuzzy, python-brace-format
#| msgid "powered by {name} based on <a {a_attr}>pretix</a>"
msgid "<a {a_name_attr}>powered by {name}</a> <a {a_attr}>based on pretix</a>"
msgstr ""
"<a {a_name_attr}> {name}-ek bultzatua <a {a_attr}>pretix</a> -en oinarritua"
msgstr "{name}-ek bultzatua eta <a {a_attr}>pretix</a> -an oinarritua"
#: pretix/base/context.py
#, python-brace-format
#, fuzzy, python-brace-format
#| msgid "powered by {name} based on <a {a_attr}>pretix</a>"
msgid "<a {a_attr}>powered by {name} based on pretix</a>"
msgstr "<a {a_attr}>-ek bultzatua <a {name}>pretix</a> -an oinarritua"
msgstr "{name}-ek bultzatua eta <a {a_attr}>pretix</a> -an oinarritua"
#: pretix/base/context.py
#, python-format
@@ -1283,19 +1316,6 @@ msgstr ""
"Deskargatu kalkulu-orri bat egun erregistratuta dauden bezeroen kontu "
"guztiekin."
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1428,72 +1448,6 @@ msgstr "Bai"
msgid "No"
msgstr "Ez"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Froga modua"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Ezeztatua"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Afiliazio mota"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Purchase time"
msgid "Purchase ticket"
msgstr "Erosketa-ordua"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Hasiera-data"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Start date"
msgid "Start time"
msgstr "Hasiera-data"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Amaiera-data"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End: %(time)s"
msgid "End time"
msgstr "Amaiera: %(time)s"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2349,6 +2303,30 @@ msgstr "bertan behera utzia"
msgid "Position ID"
msgstr "Posizioaren IDa"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Hasiera-data"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Amaiera-data"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2758,6 +2736,12 @@ msgstr ""
msgid "Gift card code"
msgstr "Opari-txartelaren kodea"
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Froga modua"
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2875,7 +2859,7 @@ msgstr "Iraungita eta balioarekin"
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -3045,7 +3029,7 @@ msgid "This combination of credentials is not known to our system."
msgstr "Gure sistemak ez du ezagutzen kredentzialen konbinazio hori."
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
"Segurtasun arrazoiengatik, mesedez itxaron 5 minutu berriro saiatu baino "
@@ -4039,7 +4023,6 @@ msgstr "Kuota ekiditea baimendu"
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4744,8 +4727,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -6276,6 +6259,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr "Abonu hau erosketa batean zenbat aldiz erabil daitekeen."
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Ezeztatua"
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Afiliazio mota"
#: pretix/base/models/orders.py
msgid "pending"
msgstr "ordaindu gabe"
@@ -7137,7 +7137,7 @@ msgstr "Bariazio hau ez dagokio produktu honi."
msgid "It is currently not possible to create vouchers for add-on products."
msgstr "Gaur egun, ezin da produktu osagarrietarako kupoirik sortu."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -7162,7 +7162,7 @@ msgstr ""
"Erabilera-kopuru maximoa ezin da izan erabilera-kopuru minimoa baino "
"txikiagoa."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7698,12 +7698,6 @@ msgstr "Opari-txartel hau ez du onartzen ekitaldi-antolatzaile honek."
msgid "This gift card was used in the meantime. Please try again."
msgstr "Bien bitartean erabili da opari-txartel hori. Mesedez, saiatu berriro."
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr "Sarreraren kodea (barra-kodearen edukia)"
@@ -8300,6 +8294,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -9627,17 +9626,6 @@ msgid ""
msgstr ""
"Ezin duzu opari-txartel bat emateko erabili den posizio baten prezioa aldatu."
#: pretix/base/services/orders.py
#, fuzzy
#| msgid ""
#| "You cannot change the price of a position that has been used to issue a "
#| "gift card."
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
"Ezin duzu opari-txartel bat emateko erabili den posizio baten prezioa aldatu."
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -11548,13 +11536,13 @@ msgstr ""
"Publikoki erakutsiko dugu, bertaratzen direnak zurekin harremanetan jar "
"daitezen."
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact:"
msgid "Contact URL"
msgstr "Kontaktua:"
#: pretix/base/settings.py
#: 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 "
@@ -13556,7 +13544,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -14847,7 +14834,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -14871,7 +14858,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -15046,22 +15033,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -15099,6 +15070,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -15328,42 +15306,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr "Helbide elektronikoa eskatu sarrera bakoitzeko"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All invoices"
msgid "All sources"
msgstr "Faktura guztiak"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Device name"
msgid "Device actions"
msgstr "Gailuaren izena"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order total"
msgid "User email"
msgstr "Eskaerak guztira"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -15663,7 +15605,7 @@ msgstr ""
#: pretix/control/forms/item.py
msgid "Number of tickets"
msgstr "Sarrera kopurua"
msgstr ""
#: pretix/control/forms/item.py
msgid "Quota name is required."
@@ -16174,7 +16116,7 @@ msgstr ""
#: pretix/control/forms/orders.py pretix/plugins/sendmail/forms.py
msgid "Attach tickets"
msgstr "Sarrerak atxikita"
msgstr ""
#: pretix/control/forms/orders.py pretix/plugins/sendmail/forms.py
msgid ""
@@ -16569,7 +16511,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -16683,65 +16624,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "You cannot create a voucher that blocks quota as the selected product or "
#| "quota is currently sold out or completely reserved."
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
"Ezin duzu kupoia blokeatzen duen kupoirik sortu, hautatutako produktua edo "
"kupoa agortuta edo erabat erreserbatuta baitago."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The selected product does not allow to select a seat."
msgid "The selected quota does not match the selected subevent."
msgstr "Hautatutako produktuak ez du uzten eserleku bat hautatzen."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr "Ez dago nahikoa kuota erabilgarri\"{}\" kuotan eragiketa egiteko."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -18503,6 +18385,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -18771,7 +18657,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -19191,8 +19076,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -19203,6 +19088,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -19337,7 +19223,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -19918,22 +19803,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -20096,94 +19965,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -20298,6 +20079,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -20486,6 +20330,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -21405,20 +21287,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -21429,12 +21297,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#, fuzzy
#| msgid "Specific seat"
msgid "Specific object selected"
msgstr "Eserleku espezifikoa"
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -22457,7 +22319,6 @@ msgstr "Aukeratu bat baino gehiago zerrenda batetik"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -22547,7 +22408,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -22844,13 +22704,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -23282,6 +23135,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -24373,7 +24231,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -26585,13 +26442,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -26599,12 +26454,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Choose multiple from a list"
msgid "Change multiple vouchers"
msgstr "Aukeratu bat baino gehiago zerrenda batetik"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -26949,8 +26798,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -27566,30 +27414,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -28682,7 +28506,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -30032,6 +29855,11 @@ msgstr ""
msgid "PayPal account"
msgstr "PayPal kontua"
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -30767,25 +30595,15 @@ msgid "Base redirection URLs"
msgstr "Oinarria birbideratzeko URLa"
#: pretix/plugins/returnurl/views.py
#, fuzzy
#| msgid ""
#| "Redirection will only be allowed to URLs that start with one of these "
#| "prefixes. Enter one or more allowed URL prefix per line. URL prefixes "
#| "must include a slash after the hostname."
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
"Birbideratzea aurrizki horietako batekin hasten diren URLei bakarrik "
"onartuko zaie. Sartu lerroko URL aurrizki baimendu bat edo gehiago. URL "
"aurrizkiek barra bat izan behar dute ostalariaren izenaren ondoren."
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
msgid "Send out emails to all your customers or specific groups of customers."
msgstr ""
@@ -35862,11 +35680,6 @@ msgstr "Idatzi sarbidea"
msgid "Kosovo"
msgstr "Kosovo"
#, python-brace-format
#~ msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#~ msgstr ""
#~ "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#, fuzzy
#~| msgid "Account information"
#~ msgid "Account invitation"
+3 -3
View File
@@ -8,7 +8,7 @@ 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-29 11:04+0000\n"
"PO-Revision-Date: 2024-09-06 08:47+0000\n"
"Last-Translator: Albizuri <oier@puntu.eus>\n"
"Language-Team: Basque <https://translate.pretix.eu/projects/pretix/pretix-js/"
"eu/>\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.7\n"
#: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js
msgid "Marked as paid"
@@ -619,7 +619,7 @@ msgstr ""
#: pretix/static/pretixcontrol/js/ui/editor.js
msgid "Powered by pretix"
msgstr "pretix-ek sustatua"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/editor.js
msgid "Object"
+222 -411
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+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/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.13.3\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Kauppa on suljettu"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Ennakkomyynti on päättynyt"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "Ennakkomyynti ei ole alkanut"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "Myynnissä"
#: pretix/_base_settings.py
msgid "English"
msgstr "englanti"
@@ -1284,19 +1316,6 @@ msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
"Lataa taulukko kaikista tällä hetkellä rekisteröidyistä asiakastileistä."
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "Asiakkaat"
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1429,72 +1448,6 @@ msgstr "Kyllä"
msgid "No"
msgstr "Ei"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Testitila"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Peruttu"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Jäsenyystyyppi"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Purchase time"
msgid "Purchase ticket"
msgstr "Oston kellonaika"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Alkupäivämäärä"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Start time from"
msgid "Start time"
msgstr "Alkuaika"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Loppupäivämäärä"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End: %(time)s"
msgid "End time"
msgstr "Päättyy: %(time)s"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2349,6 +2302,30 @@ msgstr "peruutettu"
msgid "Position ID"
msgstr "Paikkatunniste"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Alkupäivämäärä"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Loppupäivämäärä"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2757,6 +2734,12 @@ msgstr "Lataa laskentaohjelmataulukko kaikista lahjakorttitapahtumista."
msgid "Gift card code"
msgstr "Lahjakortin koodi"
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Testitila"
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2872,7 +2855,7 @@ msgstr "Vanhentunut ja arvolla varustettu"
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -3043,7 +3026,7 @@ msgid "This combination of credentials is not known to our system."
msgstr "Tämä käyttäjätunnuksen ja salasanan yhdistelmä ei ole tiedossamme."
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr "Tietoturvasyistä, odota 5 minuuttia ennen kuin yrität uudelleen."
@@ -4026,7 +4009,6 @@ msgstr "Salli kiintiön ohittaminen"
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4729,8 +4711,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -6261,6 +6243,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr "Montako kertaa tätä jäsenyyttä voidaan käyttää oston yhteydessä."
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Peruttu"
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Jäsenyystyyppi"
#: pretix/base/models/orders.py
msgid "pending"
msgstr "odottaa"
@@ -7127,7 +7126,7 @@ msgstr "Tämä variaatio ei kuulu tähän tuotteeseen."
msgid "It is currently not possible to create vouchers for add-on products."
msgstr "Tällä hetkellä ei ole mahdollista luoda arvoseteleitä lisätuotteille."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -7152,7 +7151,7 @@ msgstr ""
"Käyttökertojen enimmäismäärä ei saa olla pienempi kuin käyttökertojen "
"vähimmäismäärä."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7675,12 +7674,6 @@ msgstr "Tapahtuman järjestäjä ei hyväksy tätä lahjakorttia."
msgid "This gift card was used in the meantime. Please try again."
msgstr "Tämä lahjakortti käytettiin sillä välin. Yritä uudelleen."
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr "Lipun koodi (viivakoodin sisältö)"
@@ -8281,6 +8274,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "Asiakkaat"
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr "Laitteet"
@@ -9587,18 +9585,6 @@ msgstr ""
"Et voi muuttaa sellaisen position hintaa, jota on käytetty lahjakortin "
"myöntämiseen."
#: pretix/base/services/orders.py
#, fuzzy
#| msgid ""
#| "You cannot change the price of a position that has been used to issue a "
#| "gift card."
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
"Et voi muuttaa sellaisen position hintaa, jota on käytetty lahjakortin "
"myöntämiseen."
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -11464,13 +11450,13 @@ 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/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact:"
msgid "Contact URL"
msgstr "Kontakti:"
#: pretix/base/settings.py
#: 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 "
@@ -13484,7 +13470,6 @@ msgstr "Saat tämän sähköpostiviestin, koska olet tehnyt {event}tilauksen."
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -14770,7 +14755,7 @@ msgstr "Kaikki tilaukset"
msgid "Valid orders"
msgstr "Voimassaolevat tilaukset"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -14794,7 +14779,7 @@ msgstr "Odottaa tai maksettu"
msgid "Cancellations"
msgstr "Peruutukset"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr "Peruttu (kokonaan)"
@@ -14969,22 +14954,6 @@ msgstr ""
msgid "Inactive"
msgstr "Epäaktiivinen"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "Ennakkomyynti ei ole alkanut"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Ennakkomyynti on päättynyt"
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -15022,6 +14991,13 @@ msgstr "aktiivinen"
msgid "not yet activated"
msgstr "ei vielä aktivoitu"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr "Ei jäseniä"
@@ -15251,42 +15227,6 @@ msgstr "Peruutetut laitteet"
msgid "Search email address or subject"
msgstr "Vaadi sähköpostiosoitteet per lippu"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "Lähde"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All orders"
msgid "All sources"
msgstr "Kaikki tilaukset"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Device status"
msgid "Device actions"
msgstr "Laitteen status"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order total"
msgid "User email"
msgstr "Tilauksen summa"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -16494,7 +16434,6 @@ msgstr "Valinnainen"
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr "muuta"
@@ -16608,65 +16547,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "You cannot create a voucher that blocks quota as the selected product or "
#| "quota is currently sold out or completely reserved."
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
"Et voi luoda kuponkia, joka varaa kiintiön, koska valittu tuote tai kiintiö "
"on tällä hetkellä loppuunmyyty tai kokonaan varattu."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The selected product does not allow to select a seat."
msgid "The selected quota does not match the selected subevent."
msgstr "Valittu tuote ei salli paikan valitsemista."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr "Kiintiössä \"{}\" ei ole tarpeaksi tilaa operaation suorittamiseksi."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr "Koodit"
@@ -18423,6 +18303,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -18691,7 +18575,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -19119,8 +19002,8 @@ msgstr "Poista"
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -19131,6 +19014,7 @@ msgstr "Poista"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -19265,7 +19149,6 @@ msgstr "Aikaleima"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -19851,22 +19734,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr "Vahvistus"
@@ -20033,94 +19900,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -20241,6 +20020,69 @@ msgstr ""
msgid "Create QR code"
msgstr "Luo QR koodi"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -20427,6 +20269,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -21341,20 +21221,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Kauppa on suljettu"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "Myynnissä"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -21365,12 +21231,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#, fuzzy
#| msgid "Specific seat"
msgid "Specific object selected"
msgstr "Erityinen istuin"
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -22394,7 +22254,6 @@ msgstr "Vaihda useita laitteita"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -22484,7 +22343,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -22781,13 +22639,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -23217,6 +23068,11 @@ msgstr "Vahvista maksu"
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "Lähde"
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -24316,7 +24172,6 @@ msgstr "Vaihda useita laitteita"
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -26529,13 +26384,11 @@ msgid "Copy codes"
msgstr "Kopioi koodit"
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr "Kupongin yksityiskohdat"
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -26543,12 +26396,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Create multiple vouchers"
msgid "Change multiple vouchers"
msgstr "Luo monta kuponkia"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -26895,8 +26742,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -27517,30 +27363,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -28635,7 +28457,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -29939,6 +29760,11 @@ msgstr ""
msgid "PayPal account"
msgstr "PayPal-tili"
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr "Klikkaa tästä saadaksesi ohjeet tarvittavien avainten hankkimiseen"
@@ -30666,25 +30492,15 @@ msgid "Base redirection URLs"
msgstr "Perusuudelleenohjauksen URL-osoitteet"
#: pretix/plugins/returnurl/views.py
#, fuzzy
#| msgid ""
#| "Redirection will only be allowed to URLs that start with one of these "
#| "prefixes. Enter one or more allowed URL prefix per line. URL prefixes "
#| "must include a slash after the hostname."
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
"Uudelleenohjaus sallitaan vain URL-osoitteisiin, jotka alkavat jollakin "
"näistä etuliitteistä. Kirjoita yksi tai useampi sallittu URL-etuliite riviä "
"kohti. URL-etuliitteissä on oltava isäntänimen jälkeen vinoviiva."
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
msgid "Send out emails to all your customers or specific groups of customers."
msgstr ""
@@ -35686,11 +35502,6 @@ msgstr "Kirjoita käyttöoikeudet"
msgid "Kosovo"
msgstr "Kosovo"
#, python-brace-format
#~ msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#~ msgstr ""
#~ "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#, fuzzy
#~| msgid "Account information"
#~ msgid "Account invitation"
+222 -380
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+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/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.9.2\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr "Enskt"
@@ -1218,19 +1250,6 @@ msgstr ""
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1363,66 +1382,6 @@ msgstr ""
msgid "No"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Purchase ticket"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Start time"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "End time"
msgstr ""
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2250,6 +2209,30 @@ msgstr ""
msgid "Position ID"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2645,6 +2628,12 @@ msgstr ""
msgid "Gift card code"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2758,7 +2747,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2924,7 +2913,7 @@ msgid "This combination of credentials is not known to our system."
msgstr ""
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -3847,7 +3836,6 @@ msgstr ""
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4469,8 +4457,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5765,6 +5753,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6543,7 +6548,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6562,7 +6567,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7031,12 +7036,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7602,6 +7601,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -8729,12 +8733,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10267,11 +10265,11 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py
#: 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 "
@@ -11754,7 +11752,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -12950,7 +12947,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -12974,7 +12971,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13149,22 +13146,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13202,6 +13183,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13429,40 +13417,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
msgid "All sources"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Redirection URIs"
msgid "Device actions"
msgstr "URL til víðarstilling"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order denied"
msgid "User email"
msgstr "Bílegging avvíst"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14642,7 +14596,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -14756,62 +14709,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "One of the selected products is not available in the selected country."
msgid "The selected quota does not match the selected subevent."
msgstr "Eitt av produktunum, sum tú hevur valt, er ikki tøkt í valda landinum."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr ""
"Tað eru ikki nóg nógvar eindir eftir á kvotuni \"{}\" til at gjøgnumføra "
"hesi boð."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16525,6 +16422,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -16793,7 +16694,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17211,8 +17111,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17223,6 +17123,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17357,7 +17258,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -17917,22 +17817,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -18093,94 +17977,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18295,6 +18091,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18471,6 +18330,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19369,20 +19266,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19393,10 +19276,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20411,7 +20290,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20498,7 +20376,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -20795,13 +20672,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21214,6 +21084,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22290,7 +22165,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24453,13 +24327,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24467,10 +24339,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgid "Change multiple vouchers"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -24810,8 +24678,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25414,30 +25281,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26507,7 +26350,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -27695,6 +27537,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28329,13 +28176,8 @@ msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+222 -407
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+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/"
@@ -20,6 +20,38 @@ msgstr ""
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.10.2\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Trgovina onemogućena"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Pretprodaja završena"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "Pretprodaja nije započela"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "U prodaji"
#: pretix/_base_settings.py
msgid "English"
msgstr "Engleski"
@@ -1287,19 +1319,6 @@ msgstr "Korisnički profili"
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr "Preuzmite tablicu svih trenutno registriranih korisničkih računa."
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "Kupci"
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr "Članstva"
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1432,72 +1451,6 @@ msgstr "Da"
msgid "No"
msgstr "Ne"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Testni mod"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Otkazano"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Vrsta članstva"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Purchase time"
msgid "Purchase ticket"
msgstr "Vrijeme kupnje"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Datum početka"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Start time from"
msgid "Start time"
msgstr "Vrijeme početka od"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Datum završetka"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End: %(time)s"
msgid "End time"
msgstr "Kraj: %(time)s"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2352,6 +2305,30 @@ msgstr "Otkazano"
msgid "Position ID"
msgstr "ID pozicije"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Datum početka"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Datum završetka"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2760,6 +2737,12 @@ msgstr "Preuzmite proračunsku tablicu svih transakcija poklon kartica."
msgid "Gift card code"
msgstr "Kod poklon kartice"
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Testni mod"
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2876,7 +2859,7 @@ msgstr "Isteklo i s vrijednošću"
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -3046,7 +3029,7 @@ msgid "This combination of credentials is not known to our system."
msgstr "Ova kombinacija vjerodajnica nije poznata našem sustavu."
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
"Iz sigurnosnih razloga, pričekajte 5 minuta prije nego što pokušate ponovno."
@@ -4039,7 +4022,6 @@ msgstr "Dozvoli zaobilaženje kvote"
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4745,8 +4727,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -6247,6 +6229,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr "Broj puta koliko se ovo članstvo može koristiti u kupnji."
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Otkazano"
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Vrsta članstva"
#: pretix/base/models/orders.py
msgid "pending"
msgstr "na čekanju"
@@ -7061,7 +7060,7 @@ msgstr "Ova varijacija ne pripada ovom proizvodu."
msgid "It is currently not possible to create vouchers for add-on products."
msgstr "Trenutno nije moguće kreirati vaučere za dodatne proizvode."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -7084,7 +7083,7 @@ msgstr ""
"Maksimalni broj korištenja ne smije biti manji od minimalnog broja "
"korištenja."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7575,12 +7574,6 @@ msgid "This gift card was used in the meantime. Please try again."
msgstr ""
"Ova poklon kartica je u međuvremenu iskorištena. Molimo pokušajte ponovno."
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr "Kod ulaznice (sadržaj barkoda)"
@@ -8187,6 +8180,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "Kupci"
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr "Uređaji"
@@ -9406,18 +9404,6 @@ msgstr ""
"Ne možete promijeniti cijenu pozicije koja je korištena za izdavanje poklon "
"kartice."
#: pretix/base/services/orders.py
#, fuzzy
#| msgid ""
#| "You cannot change the price of a position that has been used to issue a "
#| "gift card."
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
"Ne možete promijeniti cijenu pozicije koja je korištena za izdavanje poklon "
"kartice."
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -11047,13 +11033,13 @@ 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/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact:"
msgid "Contact URL"
msgstr "Kontakt:"
#: pretix/base/settings.py
#: 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 "
@@ -12601,7 +12587,6 @@ msgstr "Primili ste ovu e-poštu jer ste naručili za {event}."
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -13829,7 +13814,7 @@ msgstr "Sve narudžbe"
msgid "Valid orders"
msgstr "Valjane narudžbe"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr "Plaćeno (ili otkazano s plaćenom naknadom)"
@@ -13853,7 +13838,7 @@ msgstr "Na čekanju ili plaćeno"
msgid "Cancellations"
msgstr "Otkazivanja"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr "Otkazano (potpuno)"
@@ -14030,22 +14015,6 @@ msgstr "Trgovina uživo i predprodaja u tijeku"
msgid "Inactive"
msgstr "Neaktivno"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "Pretprodaja nije započela"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Pretprodaja završena"
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -14083,6 +14052,13 @@ msgstr "aktivan"
msgid "not yet activated"
msgstr "još nije aktivirano"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr "Članstva"
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr "Nema članstava"
@@ -14312,42 +14288,6 @@ msgstr "Opozvani uređaji"
msgid "Search email address or subject"
msgstr "Zahtijevajte e-mail adrese po ulaznici"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "Izvor"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All vouchers"
msgid "All sources"
msgstr "Svi vaučeri"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr "Radnje tima"
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr "Radnje kupaca"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Device status"
msgid "Device actions"
msgstr "Status uređaja"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order details"
msgid "User email"
msgstr "Detalji narudžbe"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr "Svi korisnici"
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr "Dodatni tekst u podnožju"
@@ -15559,7 +15499,6 @@ msgstr "Neobavezno"
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr "promjena"
@@ -15674,59 +15613,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The selected product does not allow to select a seat."
msgid "The selected quota does not match the selected subevent."
msgstr "Odabrani proizvod ne dopušta odabir sjedala."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr "Nema dovoljno kvote na kvoti \"{}\" za izvršenje operacije."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr "Kodovi"
@@ -17494,6 +17380,10 @@ msgstr "Autorizirane aplikacije"
msgid "Account history"
msgstr "Povijest profila"
#: pretix/control/navigation.py
msgid "All users"
msgstr "Svi korisnici"
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -17762,7 +17652,6 @@ msgstr "Postavi novu lozinku"
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -18186,8 +18075,8 @@ msgstr "Izbriši"
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -18198,6 +18087,7 @@ msgstr "Izbriši"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -18332,7 +18222,6 @@ msgstr "Vremenska oznaka"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr "Odaberi sve rezultate na drugim stranicama"
@@ -18921,26 +18810,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid "Your new SPF record could look like this:"
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr "Vaš novi SPF zapis bi mogao izgledati ovako:"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid "Your new SPF record could look like this:"
msgid "Your new DMARC record could look like this:"
msgstr "Vaš novi SPF zapis bi mogao izgledati ovako:"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr "Provjera"
@@ -19103,94 +18972,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr "Osobni podaci su uklonjeni iz ovog zapisa dnevnika."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr "Ovu promjenu izvršio je pretix administrator."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr "Pregledaj"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr "Prikaži preplaćene narudžbe"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr "Prikaži povrate na čekanju"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr "Prikaži narudžbe koje traže otkazivanje"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr "Prikaži narudžbe na čekanju za odobrenje"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr "Prikaži pogođene narudžbe"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -19305,6 +19086,69 @@ msgstr "URL trgovine:"
msgid "Create QR code"
msgstr "Kreiraj QR kod"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr "Prikaži preplaćene narudžbe"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr "Prikaži povrate na čekanju"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr "Prikaži narudžbe koje traže otkazivanje"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr "Prikaži narudžbe na čekanju za odobrenje"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr "Prikaži pogođene narudžbe"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -19489,6 +19333,44 @@ msgstr ""
msgid "Enable test mode"
msgstr "Omogući testni način"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr "Sve radnje"
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr "Radnje tima"
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr "Radnje kupaca"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr "Osobni podaci su uklonjeni iz ovog zapisa dnevnika."
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr "Ovu promjenu izvršio je pretix administrator."
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr "Pregledaj"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -20408,20 +20290,6 @@ msgstr "Nema datuma"
msgid "More quotas"
msgstr "Više kvota"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Trgovina onemogućena"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "U prodaji"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -20432,12 +20300,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr "Brza smeđa lisica skače preko lijenog psa."
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#, fuzzy
#| msgid "Specific seat"
msgid "Specific object selected"
msgstr "Specifično sjedalo"
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -21465,7 +21327,6 @@ msgstr "Promijeni više datuma"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr "%(number)s odabrano"
@@ -21556,7 +21417,6 @@ msgstr "Izbriši odabrano"
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr "Uredi odabrano"
@@ -21853,13 +21713,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -22293,6 +22146,11 @@ msgstr "Potvrdi kao plaćeno"
msgid "Create a refund"
msgstr "Kreiraj povrat"
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "Izvor"
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr "Otkaži prijenos"
@@ -23392,7 +23250,6 @@ msgstr "Promijeni više uređaja"
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr "Napredne postavke"
@@ -25621,13 +25478,11 @@ msgid "Copy codes"
msgstr "Kopiraj kodove"
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr "Detalji vaučera"
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -25635,12 +25490,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Create multiple vouchers"
msgid "Change multiple vouchers"
msgstr "Kreiraj više vaučera"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -25982,8 +25831,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -26612,30 +26460,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr "Kôd za provjeru je bio netočan, pokušajte ponovno."
@@ -27732,7 +27556,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -28982,6 +28805,11 @@ msgstr ""
msgid "PayPal account"
msgstr "PayPal račun"
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr "Kliknite ovdje za tutorial o tome kako dobiti potrebne ključeve"
@@ -29664,13 +29492,8 @@ msgstr "Osnovni URL-ovi za preusmjeravanje"
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
@@ -34470,14 +34293,6 @@ msgstr "Pravo pisanja"
msgid "Kosovo"
msgstr "Kosovo"
#~ msgid "All actions"
#~ msgstr "Sve radnje"
#, python-brace-format
#~ msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#~ msgstr ""
#~ "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#, fuzzy
#~| msgid "Account information"
#~ msgid "Account invitation"
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+135 -98
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-08-02 22:00+0000\n"
"Last-Translator: \"Luca Sorace \\\"Stranck\\\"\" <strdjn@gmail.com>\n"
"PO-Revision-Date: 2026-03-25 14:14+0000\n"
"Last-Translator: Pietro Isotti <isottipietro@gmail.com>\n"
"Language-Team: Italian <https://translate.pretix.eu/projects/pretix/pretix-"
"js/it/>\n"
"Language: it\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.16.2\n"
#: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js
msgid "Marked as paid"
@@ -42,91 +42,93 @@ msgstr "Apple Pay"
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Itaú"
msgstr "Ita"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
#, fuzzy
msgid "PayPal Credit"
msgstr "PayPal (Pagamento a rate)"
msgstr "PayPal"
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Credit Card"
msgstr "Carta di credito"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "PayPal Pay Later"
msgstr "PayPal (Acquista ora, paga dopo)"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "iDEAL | Wero"
msgstr "iDEAL | Wero"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "SEPA Direct Debit"
msgstr "Addebito diretto SEPA"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Bancontact"
msgstr "Bancontact"
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 "SOFORT"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
#, fuzzy
msgid "eps"
msgstr "eps"
msgstr "Si"
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "MyBank"
msgstr "MyBank"
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 "Verkkopankki"
msgstr ""
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "PayU"
msgstr "PayU"
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 "Maxima"
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 "Boleto"
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
@@ -141,7 +143,7 @@ msgstr "Stiamo processando il tuo pagamento …"
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js
msgid "Payment method unavailable"
msgstr "Metodo di pagamento non disponibile"
msgstr ""
#: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js
msgid "Placed orders"
@@ -153,11 +155,11 @@ msgstr "Ordini pagati"
#: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js
msgid "Attendees (ordered)"
msgstr "Partecipanti (ordini effettuati)"
msgstr ""
#: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js
msgid "Attendees (paid)"
msgstr "Partecipanti (ordini pagati)"
msgstr ""
#: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js
msgid "Total revenue"
@@ -237,11 +239,11 @@ msgstr "Eliminato"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Confirmed"
msgstr "Confermato"
msgstr ""
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Approval pending"
msgstr "In attesa di approvazione"
msgstr ""
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Redeemed"
@@ -308,13 +310,12 @@ msgid "Order canceled"
msgstr "Ordine cancellato"
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
#, fuzzy
msgid "Ticket code is ambiguous on list"
msgstr "Il codice del biglietto è ambiguo sulla lista"
msgstr ""
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Order not approved"
msgstr "Ordine non approvato"
msgstr ""
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/i18n.ts
msgid "Checked-in Tickets"
@@ -429,11 +430,11 @@ msgstr "Usa i tasti Ctrl-C per copiare!"
#: pretix/static/pretixcontrol/js/ui/checkinrules/App.vue
msgid "Edit"
msgstr "Modifica"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/App.vue
msgid "Visualize"
msgstr "Visualizza"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/App.vue
msgid ""
@@ -441,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 ""
"La tua regola filtra sempre per prodotto o variation, ma i seguenti prodotti "
"o variation non sono presenti in nessuna parte delle tue regole. Questo "
"impedirà alle persone con questi biglietti di poter accedere all'evento:"
#: pretix/static/pretixcontrol/js/ui/checkinrules/App.vue
msgid "Please double-check if this was intentional."
msgstr "Per favore, controlla se è stato intenzionale."
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "All of the conditions below (AND)"
@@ -491,17 +489,17 @@ msgstr "minuti"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Duplicate"
msgstr "Duplicato"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgctxt "entry_status"
msgid "present"
msgstr "Presente"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgctxt "entry_status"
msgid "absent"
msgstr "Assente"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "is one of"
@@ -517,7 +515,7 @@ msgstr "è dopo"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "="
msgstr "="
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Product"
@@ -537,55 +535,63 @@ msgstr "Data e orario corrente"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Current day of the week (1 = Monday, 7 = Sunday)"
msgstr "Giorno corrente della settimana (1 = Lunedì, 7 = Domenica)"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Current entry status"
msgstr "Stato dell'ingresso corrente"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Number of previous entries"
msgstr "Numero di precedenti ingressi"
msgstr "Numero di inserimenti precedenti"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Number of previous entries since midnight"
msgstr "Numero di precedenti ingressi fino a mezzanotte"
msgstr "Numero di inserimenti precedenti fino a mezzanotte"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
#, fuzzy
#| msgid "Number of previous entries"
msgid "Number of previous entries since"
msgstr "Numero di precedenti ingressi dal"
msgstr "Numero di inserimenti precedenti"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
#, fuzzy
#| msgid "Number of previous entries"
msgid "Number of previous entries before"
msgstr "Numero di precedenti ingressi prima del"
msgstr "Numero di inserimenti precedenti"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Number of days with a previous entry"
msgstr "Numero di giorni con un precedente ingresso"
msgstr "Nunmero di giorni con un inserimento precedente"
#: 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 "Numero di giorni con un precedente ingresso dal"
msgstr "Nunmero di giorni con un inserimento precedente"
#: 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 "Numero di giorni con un precedente ingresso prima del"
msgstr "Nunmero di giorni con un inserimento precedente"
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Minutes since last entry (-1 on first entry)"
msgstr "Minuti dall'ultimo ingresso (-1 al primo ingresso)"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/constants.ts
msgid "Minutes since first entry (-1 on first entry)"
msgstr "Minuti dal primo ingresso (-1 al primo ingresso)"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/django-interop.ts
msgid "Error: Product not found!"
msgstr "Errore: Prodotto non trovato!"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/checkinrules/django-interop.ts
msgid "Error: Variation not found!"
msgstr "Errore: Variation non trovata!"
msgstr ""
#: pretix/static/pretixcontrol/js/ui/editor.js
msgid "Check-in QR"
@@ -600,12 +606,16 @@ msgid "Group of objects"
msgstr "Gruppo di oggetti"
#: pretix/static/pretixcontrol/js/ui/editor.js
#, fuzzy
#| msgid "Text object"
msgid "Text object (deprecated)"
msgstr "Oggetto testo (deprecato)"
msgstr "Oggetto testo"
#: pretix/static/pretixcontrol/js/ui/editor.js
#, fuzzy
#| msgid "Text object"
msgid "Text box"
msgstr "Riquadro testo"
msgstr "Oggetto testo"
#: pretix/static/pretixcontrol/js/ui/editor.js
msgid "Barcode area"
@@ -652,24 +662,25 @@ msgid "Unknown error."
msgstr "Errore sconosciuto."
#: 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 "Il colore scelto ha un ottimo contrasto ed è molto leggibile."
msgstr "Il colore scelto ha un ottimo contrasto ed è molto leggibile!"
#: 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 ""
"Il colore scelto ha un buon contrasto ed è sufficiente per i requisiti di "
"accessibilità."
"Il colore scelto ha un buon contrasto e probabilmente è abbastanza leggibile!"
#: pretix/static/pretixcontrol/js/ui/main.js
msgid ""
"Your color has insufficient contrast to white. Accessibility of your site "
"will be impacted."
msgstr ""
"Il colore scelto ha un contrasto insufficiente rispetto al bianco. "
"L'accessibilità nel tuo sito sarà ridotta."
#: pretix/static/pretixcontrol/js/ui/main.js
msgid "Search query"
@@ -689,11 +700,11 @@ msgstr "Solo i selezionati"
#: pretix/static/pretixcontrol/js/ui/main.js
msgid "Enter page number between 1 and %(max)s."
msgstr "Inserisci il numero di pagina tra 1 e %(max)s."
msgstr ""
#: pretix/static/pretixcontrol/js/ui/main.js
msgid "Invalid page number."
msgstr "Numero di pagina invalido."
msgstr ""
#: pretix/static/pretixcontrol/js/ui/main.js
msgid "Use a different name internally"
@@ -712,8 +723,10 @@ msgid "Calculating default price…"
msgstr "Calcolando il prezzo di default…"
#: pretix/static/pretixcontrol/js/ui/plugins.js
#, fuzzy
#| msgid "Search results"
msgid "No results"
msgstr "Nessun risultato"
msgstr "Risultati ricerca"
#: pretix/static/pretixcontrol/js/ui/question.js
msgid "Others"
@@ -743,33 +756,39 @@ msgstr "Carrello scaduto"
#: pretix/static/pretixpresale/js/ui/cart.js
msgid "Your cart is about to expire."
msgstr "La selezione nel tuo carrello sta per scadere."
msgstr ""
#: pretix/static/pretixpresale/js/ui/cart.js
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] "Gli elementi nel tuo carrello sono riservati per un minuto."
msgstr[0] "Gli elementi nel tuo carrello sono riservati per 1 minuto."
msgstr[1] "Gli elementi nel tuo carrello sono riservati per {num} minuti."
#: pretix/static/pretixpresale/js/ui/cart.js
#, fuzzy
#| msgid "Cart expired"
msgid "Your cart has expired."
msgstr "Il tuo carrello è scaduto."
msgstr "Carrello scaduto"
#: pretix/static/pretixpresale/js/ui/cart.js
#, fuzzy
#| msgid ""
#| "The items in your cart are no longer reserved for you. You can still "
#| "complete your order as long as theyre available."
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 ""
"Gli articoli nel tuo carrello non sono più riservati a te. Puoi ancora "
"Gli articoli nel tuo carrello non sono più riservati per te. Puoi ancora "
"completare il tuo ordine finché sono disponibili."
#: pretix/static/pretixpresale/js/ui/cart.js
msgid "Do you want to renew the reservation period?"
msgstr "Vuoi rinnovare la scadenza del tuo carrello?"
msgstr ""
#: pretix/static/pretixpresale/js/ui/cart.js
msgid "Renew reservation"
msgstr "Rinnova scadenza"
msgstr ""
#: pretix/static/pretixpresale/js/ui/main.js
msgid "The organizer keeps %(currency)s %(amount)s"
@@ -788,64 +807,69 @@ msgid "Your local time:"
msgstr "Ora locale:"
#: pretix/static/pretixpresale/js/walletdetection.js
#, fuzzy
#| msgid "Apple Pay"
msgid "Google Pay"
msgstr "Google Pay"
msgstr "Apple Pay"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgctxt "widget"
msgid "Quantity"
msgstr "Quantità"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgctxt "widget"
msgid "Decrease quantity"
msgstr "Diminuisci quantità"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgctxt "widget"
msgid "Increase quantity"
msgstr "Aumenta quantità"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgctxt "widget"
msgid "Filter events by"
msgstr "Filtra eventi per"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgctxt "widget"
msgid "Filter"
msgstr "Filtra"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgctxt "widget"
msgid "Price"
msgstr "Prezzo"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, javascript-format
msgctxt "widget"
msgid "Original price: %s"
msgstr "Prezzo originale: %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 "Nuovo prezzo: %s"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, fuzzy
#| msgctxt "widget"
#| msgid "Select %s"
msgctxt "widget"
msgid "Select"
msgstr "Seleziona"
msgstr "Seleziona %s"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
@@ -902,7 +926,7 @@ msgstr "da %(currency)s %(price)s"
#, javascript-format
msgctxt "widget"
msgid "Image of %s"
msgstr "Immagine di %s"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
@@ -943,21 +967,27 @@ msgstr "Disponibile solo con voucher"
#: 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 "Ancora non disponibile"
msgstr "attualmente disponibile: %s"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgctxt "widget"
msgid "Not available anymore"
msgstr "Non più disponibile"
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 "Attualmente non disponibile"
msgstr "attualmente disponibile: %s"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
@@ -1065,17 +1095,18 @@ msgstr "Chiudi"
#: 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 "Finisci checkout"
msgstr "Ricarica checkout"
#: 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 ""
"Non puoi annullare questa operazione. Per favore, aspetta che il caricamento "
"finisca."
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
@@ -1085,15 +1116,21 @@ msgstr "Continua"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, fuzzy
#| msgctxt "widget"
#| msgid "Select variant %s"
msgctxt "widget"
msgid "Show variants"
msgstr "Mostra varianti"
msgstr "Seleziona variante %s"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
#, fuzzy
#| msgctxt "widget"
#| msgid "Select variant %s"
msgctxt "widget"
msgid "Hide variants"
msgstr "Nascondi varianti"
msgstr "Seleziona variante %s"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
@@ -1199,37 +1236,37 @@ msgstr "Do"
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "Monday"
msgstr "Lunedì"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "Tuesday"
msgstr "Martedì"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "Wednesday"
msgstr "Mercoledì"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "Thursday"
msgstr "Giovedì"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "Friday"
msgstr "Venerdì"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "Saturday"
msgstr "Sabato"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
msgid "Sunday"
msgstr "Domenica"
msgstr ""
#: pretix/static/pretixpresale/js/widget/widget.js
#: pretix/static/pretixpresale/widget/src/i18n.ts
File diff suppressed because it is too large Load Diff
+233 -429
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2026-06-01 09:00+0000\n"
"Last-Translator: Hijiri Umemoto <hijiri@umemoto.org>\n"
"Language-Team: Korean <https://translate.pretix.eu/projects/pretix/pretix/ko/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 2026.5\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "사전판매 끝남"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "사전판매 시작하지 않음"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "세일 중"
#: pretix/_base_settings.py
msgid "English"
msgstr "영어"
@@ -1214,19 +1246,6 @@ msgstr "고객 계정"
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr "현재 등록된 모든 고객 계정의 스프레드시트를 다운로드합니다."
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "고객"
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr "멤버십"
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1359,72 +1378,6 @@ msgstr "예"
msgid "No"
msgstr "아니오"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "테스트 모드"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "취소하다"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "멤버쉽 형태"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Purchase time"
msgid "Purchase ticket"
msgstr "구매 시간"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "시작 날짜"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Start time from"
msgid "Start time"
msgstr "시작 시간은 ~부터"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "끝 날짜"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End date"
msgid "End time"
msgstr "끝 날짜"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2276,6 +2229,30 @@ msgstr "취소"
msgid "Position ID"
msgstr "직책 아이디"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "시작 날짜"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "끝 날짜"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2675,6 +2652,12 @@ msgstr "모든 선물 카드의 스프레드시트를 다운로드 하세요"
msgid "Gift card code"
msgstr "선물 카드 코드"
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "테스트 모드"
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2788,7 +2771,7 @@ msgstr "만료되고 가치있음"
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2958,7 +2941,7 @@ msgid "This combination of credentials is not known to our system."
msgstr "이 자격 증명 조합은 우리 시스템에 알려져 있지 않습니다."
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr "보안상의 이유로 다시 시도하기 전에 5분만 기다려 주세요."
@@ -3922,7 +3905,6 @@ msgstr "할당량 우회를 허용합니다"
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4599,13 +4581,9 @@ msgid "This event is remote or partially remote."
msgstr "이 이벤트는 원격 또는 부분적으로 원격입니다."
#: pretix/base/models/event.py
#, fuzzy
#| msgid ""
#| "This will be used to let users know if the event is in a different "
#| "timezone and lets us calculate users local times."
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
"이를 통해 이벤트가 다른 시간대에 있는지 사용자에게 알리고 사용자의 현지 시간"
"을 계산해 보겠습니다."
@@ -6064,6 +6042,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr "이 멤버쉽을 한 번의 구매에서 사용할 수 있는 횟수"
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "취소하다"
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "멤버쉽 형태"
#: pretix/base/models/orders.py
msgid "pending"
msgstr "대기중"
@@ -6925,7 +6920,7 @@ msgstr "이 변형은 이 제품에 속하지 않습니다."
msgid "It is currently not possible to create vouchers for add-on products."
msgstr "현재 묶음 제품에 대한 바우처를 만드는 것은 불가능합니다."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6946,7 +6941,7 @@ msgid ""
"usages."
msgstr "최대 사용 횟수는 최소 사용 횟수보다 적을 수 없습니다."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr "이 바우처가 할당량을 차단하려면 특정 날짜를 선택해야 합니다."
@@ -7455,12 +7450,6 @@ msgstr "이 기프트 카드는 이벤트 주최자가 받지 않습니다."
msgid "This gift card was used in the meantime. Please try again."
msgstr "이 기프트 카드는 그동안 사용되었습니다. 다시 시도해 주세요."
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr "티켓 코드(바코드 내용)"
@@ -8062,6 +8051,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "고객"
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr "장치"
@@ -9346,16 +9340,6 @@ msgid ""
"card."
msgstr "기프트 카드 발급에 사용된 포지션의 가격은 변경할 수 없습니다."
#: pretix/base/services/orders.py
#, fuzzy
#| msgid ""
#| "You cannot change the price of a position that has been used to issue a "
#| "gift card."
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr "기프트 카드 발급에 사용된 포지션의 가격은 변경할 수 없습니다."
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -11142,13 +11126,13 @@ msgstr "연락처 주소"
msgid "We'll show this publicly to allow attendees to contact you."
msgstr "참석자들이 연락할 수 있도록 공개적으로 보여드리겠습니다."
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact:"
msgid "Contact URL"
msgstr "연락처:"
#: pretix/base/settings.py
#: 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 "
@@ -12966,7 +12950,6 @@ msgstr "{event}를 주문하셨기 때문에 이 이메일을 받게 되었습
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -14291,7 +14274,7 @@ msgstr "모든 주문"
msgid "Valid orders"
msgstr "유효한 주문"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr "유료(또는 유료 수수료로 취소)"
@@ -14315,7 +14298,7 @@ msgstr "보류중이거나 유료"
msgid "Cancellations"
msgstr "취소"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr "취소됨(완전히)"
@@ -14492,22 +14475,6 @@ msgstr "라이브 및 사전 판매 실행 중 쇼핑하기"
msgid "Inactive"
msgstr "비활성화된 상태"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "사전판매 시작하지 않음"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "사전판매 끝남"
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -14545,6 +14512,13 @@ msgstr "활성화된"
msgid "not yet activated"
msgstr "아직 활성화 되지 않음"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr "멤버십"
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr "멤버십 없습니다"
@@ -14774,42 +14748,6 @@ msgstr "권한이 취소된 기기"
msgid "Search email address or subject"
msgstr "티켓당 이메일 주소 필요"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All vouchers"
msgid "All sources"
msgstr "모든 바우처"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr "팀 작업"
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr "고객 작업"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Device status"
msgid "Device actions"
msgstr "기기 상태"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order email"
msgid "User email"
msgstr "주문 이메일"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr "모든 사용자"
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr "추가 하단 내용"
@@ -16287,7 +16225,6 @@ msgstr "선택 사항"
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr "변경하다"
@@ -16408,65 +16345,6 @@ msgstr ""
"이 바우처는 숨겨진 제품에만 적용되며, 해당 제품을 표시하도록 선택하지 않았습"
"니다"
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "You cannot create a voucher that blocks quota as the selected product or "
#| "quota is currently sold out or completely reserved."
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
"선택한 제품이나 할당량이 현재 매진되었거나 완전히 예약되었기 때문에 할당량을 "
"차단하는 바우처를 만들 수 없습니다."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The selected product does not allow to select a seat."
msgid "The selected quota does not match the selected subevent."
msgstr "선택한 제품은 좌석을 선택할 수 없습니다."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr "할당량 \"{}\"에 작업을 수행할 수 있는 할당량이 충분하지 않습니다."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr "코드"
@@ -18325,6 +18203,10 @@ msgstr "허가된 앱"
msgid "Account history"
msgstr "계정 기록"
#: pretix/control/navigation.py
msgid "All users"
msgstr "모든 사용자"
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -18613,7 +18495,6 @@ msgstr "새 비밀번호를 설정하세요"
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -19057,8 +18938,8 @@ msgstr "삭제하기"
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -19069,6 +18950,7 @@ msgstr "삭제하기"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -19203,7 +19085,6 @@ msgstr "타임스탬프(특정 시점의 날짜와 시간을 기록한 값)"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr "다른 페이지에서도 모든 결과 선택"
@@ -19864,34 +19745,6 @@ msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
"귀하의 도메인에서 이 시스템이 포함된 SPF 레코드를 발견했습니다. 좋아요!"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid "Your new SPF record could look like this:"
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr "새 SPF 레코드는 다음과 같이 표시될 수 있습니다:"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid ""
#| "We found an SPF record on your domain that includes this system. Great!"
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
"귀하의 도메인에서 이 시스템이 포함된 SPF 레코드를 발견했습니다. 좋아요!"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid "Your new SPF record could look like this:"
msgid "Your new DMARC record could look like this:"
msgstr "새 SPF 레코드는 다음과 같이 표시될 수 있습니다:"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid ""
#| "We found an SPF record on your domain that includes this system. Great!"
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
"귀하의 도메인에서 이 시스템이 포함된 SPF 레코드를 발견했습니다. 좋아요!"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr "검증"
@@ -20086,105 +19939,6 @@ msgstr ""
"테스트 모드에서 수행되지 않은 주문과 같이 삭제할 수 없는 데이터가 포함되지 않"
"은 경우에만 이벤트를 완전히 삭제할 수 있습니다."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr "이 로그 기록에서 개인정보가 삭제되었습니다"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr "이 변경 작업은 pretix 관리자가 진행하였습니다"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr "점검하기"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
#, fuzzy
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
"이 이벤트에는 중복 결제 시도로 인해 초과 결제된 주문이 포함되어 있습니다. 사"
"례를 검토하고 초과 결제된 금액을 사용자에게 환불하는 것을 고려해야 합니다."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr "초과 지불된 주문 표시입니다"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
#, fuzzy
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr "이 이벤트에는 귀하가 처리해야 할 <강한> 환불이 포함되어 있습니다."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr "보류 중인 환불 표시입니다"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
#, fuzzy
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr "이 이벤트에는 요청하신 취소가 포함되어 있으며, 이를 처리해야 합니다."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr "취소를 요청하는 주문 표시합니다"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
#, fuzzy
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr "이 이벤트에는 여러분이 처리해야 할 <강한> 승인이 보류 중입니다."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr "승인 대기 중인 주문 표시입니다"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
#, fuzzy
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
"이 이벤트에는 결제가 완료된 상태로 표시되지 않은 <강력> 완납 주문</강력>이 포"
"함되어 있습니다. 아마도 결제가 완료될 당시 할당량이 남아 있지 않았기 때문일 "
"것입니다. 사례를 검토하고 고객에게 환불하거나 더 많은 공간을 제공하는 것을 고"
"려해야 합니다."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr "영향을 받은 주문 표시입니다"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -20309,6 +20063,80 @@ msgstr "온라인 쇼핑몰이나 상점의 웹사이트 주소"
msgid "Create QR code"
msgstr "큐알코드를 생성합니다"
#: pretix/control/templates/pretixcontrol/event/index.html
#, fuzzy
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
"이 이벤트에는 중복 결제 시도로 인해 초과 결제된 주문이 포함되어 있습니다. 사"
"례를 검토하고 초과 결제된 금액을 사용자에게 환불하는 것을 고려해야 합니다."
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr "초과 지불된 주문 표시입니다"
#: pretix/control/templates/pretixcontrol/event/index.html
#, fuzzy
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr "이 이벤트에는 귀하가 처리해야 할 <강한> 환불이 포함되어 있습니다."
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr "보류 중인 환불 표시입니다"
#: pretix/control/templates/pretixcontrol/event/index.html
#, fuzzy
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr "이 이벤트에는 요청하신 취소가 포함되어 있으며, 이를 처리해야 합니다."
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr "취소를 요청하는 주문 표시합니다"
#: pretix/control/templates/pretixcontrol/event/index.html
#, fuzzy
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr "이 이벤트에는 여러분이 처리해야 할 <강한> 승인이 보류 중입니다."
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr "승인 대기 중인 주문 표시입니다"
#: pretix/control/templates/pretixcontrol/event/index.html
#, fuzzy
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
"이 이벤트에는 결제가 완료된 상태로 표시되지 않은 <강력> 완납 주문</강력>이 포"
"함되어 있습니다. 아마도 결제가 완료될 당시 할당량이 남아 있지 않았기 때문일 "
"것입니다. 사례를 검토하고 고객에게 환불하거나 더 많은 공간을 제공하는 것을 고"
"려해야 합니다."
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr "영향을 받은 주문 표시입니다"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -20510,6 +20338,44 @@ msgstr ""
msgid "Enable test mode"
msgstr "테스트 모드 시작"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr "모든 작업"
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr "팀 작업"
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr "고객 작업"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr "이 로그 기록에서 개인정보가 삭제되었습니다"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr "이 변경 작업은 pretix 관리자가 진행하였습니다"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr "점검하기"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -21418,20 +21284,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "세일 중"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -21442,12 +21294,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#, fuzzy
#| msgid "Specific seat"
msgid "Specific object selected"
msgstr "특정 좌석"
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -22470,7 +22316,6 @@ msgstr "목록에서 여러 개 선택하기"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -22558,7 +22403,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -22855,13 +22699,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -23291,6 +23128,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -24376,7 +24218,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -26583,13 +26424,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -26597,12 +26436,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Choose multiple from a list"
msgid "Change multiple vouchers"
msgstr "목록에서 여러 개 선택하기"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -26944,8 +26777,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -27562,30 +27394,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -28677,7 +28485,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -29872,6 +29679,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -30506,13 +30318,8 @@ msgstr "기본 리다이렉션 URL"
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
@@ -35044,9 +34851,6 @@ msgstr ""
msgid "Kosovo"
msgstr "코소보"
#~ msgid "All actions"
#~ msgstr "모든 작업"
#~ msgid "Account invitation"
#~ msgstr "계정 초대"
+222 -391
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2025-10-28 17:00+0000\n"
"Last-Translator: Sven Muhlen <sven.muhlen@bnl.etat.lu>\n"
"Language-Team: Luxembourgish <https://translate.pretix.eu/projects/pretix/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.14\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Verkaf eriwwer"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr "Englesch"
@@ -1227,19 +1259,6 @@ msgstr "Clientskonten"
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr "Tabell mat allen aktuell registréierte Clientskonten eroflueden."
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "Clienten"
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr "Memberschaften"
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1372,72 +1391,6 @@ msgstr "Jo"
msgid "No"
msgstr "Nee"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Test-Modus"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Annuléiert"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Typ vu Memberschaft"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Purchase time"
msgid "Purchase ticket"
msgstr "Auerzäit vum Kaf"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Startdatum"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Start date"
msgid "Start time"
msgstr "Startdatum"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Schlussdatum"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End date"
msgid "End time"
msgstr "Schlussdatum"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2292,6 +2245,30 @@ msgstr "annuléiert"
msgid "Position ID"
msgstr "Positioun"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Startdatum"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Schlussdatum"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2699,6 +2676,12 @@ msgstr "Eng Tabell mat allen Transaktiounen iwwer Bongen eroflueden."
msgid "Gift card code"
msgstr "Code vum Bong"
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Test-Modus"
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2817,7 +2800,7 @@ msgstr "Ofgelaf mat enger Valeur"
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2986,7 +2969,7 @@ msgid "This combination of credentials is not known to our system."
msgstr "Dës Kombinatioun un Zougangsdonnéeën ass an eisem System net bekannt."
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
"Aus Sécherheetsgrënn waart wgl. 5 Minutten éier Dir nach eemol probéiert."
@@ -3986,7 +3969,6 @@ msgstr "Contingent ignoréieren"
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4649,8 +4631,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5955,6 +5937,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Annuléiert"
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Typ vu Memberschaft"
#: pretix/base/models/orders.py
msgid "pending"
msgstr "steet op"
@@ -6737,7 +6736,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6756,7 +6755,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7225,12 +7224,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7817,6 +7810,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "Clienten"
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr "Apparater"
@@ -8952,12 +8950,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10494,13 +10486,13 @@ msgstr "Kontakt-E-Mail"
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact"
msgid "Contact URL"
msgstr "Kontakt"
#: pretix/base/settings.py
#: 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 "
@@ -11988,7 +11980,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -13196,7 +13187,7 @@ msgstr "All Bestellungen"
msgid "Valid orders"
msgstr "Gülteg Bestellungen"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -13220,7 +13211,7 @@ msgstr ""
msgid "Cancellations"
msgstr "Annulatiounen"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr "Annuléiert (komplett)"
@@ -13395,22 +13386,6 @@ msgstr ""
msgid "Inactive"
msgstr "Inaktiv"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Verkaf eriwwer"
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13448,6 +13423,13 @@ msgstr "aktiv"
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr "Memberschaften"
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr "Huet keng Memberschaften"
@@ -13677,42 +13659,6 @@ msgstr "Gespaarten Apparater"
msgid "Search email address or subject"
msgstr "E-Mails-Adress"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "Source"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All vouchers"
msgid "All sources"
msgstr "All Bongen"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Device status"
msgid "Device actions"
msgstr "Status vum Apparat"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order email"
msgid "User email"
msgstr "E-Mail-Adress vun der Bestellung"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr "All Benotzer"
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14892,7 +14838,6 @@ msgstr "Optionell"
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr "änneren"
@@ -15006,61 +14951,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "One of the selected products is not available in the selected country."
msgid "The selected quota does not match the selected subevent."
msgstr ""
"Ee vun den ausgewielte Produiten ass net am ausgewielte Land disponibel."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr "De Contingent \"{}\" huet net genuch Kapazitéit fir dës Ännerung."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr "Coden"
@@ -16772,6 +16662,10 @@ msgstr "Autoriséiert Appen"
msgid "Account history"
msgstr "Konto-Ännerungen"
#: pretix/control/navigation.py
msgid "All users"
msgstr "All Benotzer"
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -17040,7 +16934,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17458,8 +17351,8 @@ msgstr "Läschen"
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17470,6 +17363,7 @@ msgstr "Läschen"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17604,7 +17498,6 @@ msgstr "Zäitpunkt"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -18160,22 +18053,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr "Verifikatioun"
@@ -18338,94 +18215,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr "Detailer"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18540,6 +18329,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18714,6 +18566,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr "Detailer"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19615,20 +19505,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19639,12 +19515,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#, fuzzy
#| msgid "Specific seat"
msgid "Specific object selected"
msgstr "Zougewise Sëtzplaz"
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20663,7 +20533,6 @@ msgstr "E-Mails-Adress vum Participant"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20752,7 +20621,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -21049,13 +20917,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21470,6 +21331,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "Source"
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22554,7 +22420,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24749,13 +24614,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24763,12 +24626,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Attendee email address"
msgid "Change multiple vouchers"
msgstr "E-Mails-Adress vum Participant"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -25110,8 +24967,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25716,30 +25572,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26807,7 +26639,6 @@ msgid "Macao"
msgstr "Macao"
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -28003,6 +27834,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28637,13 +28473,8 @@ msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
+222 -367
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -19,6 +19,38 @@ msgstr ""
"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
"1 : 2);\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr ""
@@ -1170,19 +1202,6 @@ msgstr ""
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1315,66 +1334,6 @@ msgstr ""
msgid "No"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Purchase ticket"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Start time"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "End time"
msgstr ""
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2202,6 +2161,30 @@ msgstr ""
msgid "Position ID"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2593,6 +2576,12 @@ msgstr ""
msgid "Gift card code"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2706,7 +2695,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2872,7 +2861,7 @@ msgid "This combination of credentials is not known to our system."
msgstr ""
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -3795,7 +3784,6 @@ msgstr ""
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4413,8 +4401,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5709,6 +5697,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6487,7 +6492,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6506,7 +6511,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -6975,12 +6980,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7537,6 +7536,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -8665,12 +8669,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10203,11 +10201,11 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py
#: 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 "
@@ -11688,7 +11686,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -12884,7 +12881,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -12908,7 +12905,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13083,22 +13080,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13136,6 +13117,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13363,36 +13351,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
msgid "All sources"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Device actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "User email"
msgstr ""
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14570,7 +14528,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -14684,53 +14641,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "The selected quota does not match the selected subevent."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "There is no sufficient quota available to perform this change."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16436,6 +16346,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -16704,7 +16618,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17123,8 +17036,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17135,6 +17048,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17269,7 +17183,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -17827,22 +17740,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -18003,94 +17900,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18205,6 +18014,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18379,6 +18251,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19278,20 +19188,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19302,10 +19198,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20320,7 +20212,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20408,7 +20299,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -20705,13 +20595,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21124,6 +21007,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22202,7 +22090,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24361,13 +24248,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24375,10 +24260,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgid "Change multiple vouchers"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -24718,8 +24599,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25324,30 +25204,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26405,7 +26261,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -27593,6 +27448,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28227,13 +28087,8 @@ msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
+222 -407
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2025-02-21 19:00+0000\n"
"Last-Translator: anonymous <noreply@weblate.org>\n"
"Language-Team: Latvian <https://translate.pretix.eu/projects/pretix/pretix/"
@@ -20,6 +20,38 @@ msgstr ""
"19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\n"
"X-Generator: Weblate 5.10\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr "Angļu"
@@ -1309,19 +1341,6 @@ msgstr "Lietotāja profils"
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "Klienti"
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1456,72 +1475,6 @@ msgstr "Jā"
msgid "No"
msgstr "Nē"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Testa režīms"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Atcelts"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Abonementa veids"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Payment date"
msgid "Purchase ticket"
msgstr "Maksājuma datums"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Sākuma datums"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Start time from"
msgid "Start time"
msgstr "Sākuma laiks no"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Beigu datums"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End: %(time)s"
msgid "End time"
msgstr "Beigas: %(time)s"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
#, fuzzy
#| msgid "Invoices"
@@ -2385,6 +2338,30 @@ msgstr "atcelts"
msgid "Position ID"
msgstr "Iegādāto produktu ID"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Sākuma datums"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Beigu datums"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2815,6 +2792,12 @@ msgstr ""
msgid "Gift card code"
msgstr "Dāvanu kartes kods"
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Testa režīms"
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2928,7 +2911,7 @@ msgstr "Beidzies derīgums un ar vērtību"
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -3106,7 +3089,7 @@ msgid "This combination of credentials is not known to our system."
msgstr "Šī akreditācijas datu kombinācija mūsu sistēmai nav zināma."
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr "Drošibas apsvērumu dēļ lūgums uzgaidīt 5min pirms mēģināt vēlreiz."
@@ -4099,7 +4082,6 @@ msgstr "Ļauj apiet kvotu"
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4795,8 +4777,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -6303,6 +6285,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr "Reizes, cik šo promokodu var izmantot."
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Atcelts"
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Abonementa veids"
#: pretix/base/models/orders.py
msgid "pending"
msgstr "gaida"
@@ -7148,7 +7147,7 @@ msgstr "Šīs variācijas nepieder šim produktam."
msgid "It is currently not possible to create vouchers for add-on products."
msgstr "Pašlaik nav iespējams izveidot promokodi papildinājumu produktiem."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -7176,7 +7175,7 @@ msgstr ""
"Maksimālais pasūtījuma skaits nedrīkst būt mazāks par minimālo pasūtījuma "
"skaitu."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7694,12 +7693,6 @@ msgstr "Šis pasākumu rīkotājs nepieņem šāda veida dāvanu kartes."
msgid "This gift card was used in the meantime. Please try again."
msgstr "Šī dāvanu karte jau ir izmantota. Lūdzu mēģiniet vēlreiz."
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr "Biļetes kods (svītrkoda saturs)"
@@ -8331,6 +8324,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "Klienti"
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr "Ierīces"
@@ -9658,18 +9656,6 @@ msgstr ""
"Jūs nevarat mainīt pozīcijas cenu, kas tika izmantota dāvanu kartes "
"izsniegšanai."
#: pretix/base/services/orders.py
#, fuzzy
#| msgid ""
#| "You cannot change the price of a position that has been used to issue a "
#| "gift card."
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
"Jūs nevarat mainīt pozīcijas cenu, kas tika izmantota dāvanu kartes "
"izsniegšanai."
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -11296,13 +11282,13 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact:"
msgid "Contact URL"
msgstr "Kontaktpersona:"
#: pretix/base/settings.py
#: 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 "
@@ -12958,7 +12944,6 @@ msgstr "Jūs saņemat šo epastu, jo veicāt pasūtījumu uz {event}."
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -14269,7 +14254,7 @@ msgstr ""
msgid "Valid orders"
msgstr "Derīgi pasūtījumi"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -14296,7 +14281,7 @@ msgstr ""
msgid "Cancellations"
msgstr "Atceltie darījumi"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr "Atcelts (pilnīgi)"
@@ -14471,22 +14456,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -14524,6 +14493,13 @@ msgstr "aktīvs"
msgid "not yet activated"
msgstr "vēl nav aktivizēts"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr "Nav dalību"
@@ -14753,42 +14729,6 @@ msgstr "Deaktivizētās ierīces"
msgid "Search email address or subject"
msgstr "E-pasta adrese"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All invoices"
msgid "All sources"
msgstr "Visi rēķini"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Device status"
msgid "Device actions"
msgstr "Ierīces statuss"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order details"
msgid "User email"
msgstr "Pasūtījuma detaļas"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr "Papildu teksts kājenei"
@@ -16050,7 +15990,6 @@ msgstr "Izvēles"
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr "Mainīt"
@@ -16166,65 +16105,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "You cannot create a voucher that blocks quota as the selected product or "
#| "quota is currently sold out or completely reserved."
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
"Jūs nevarat izveidot promokodu, kas bloķētu kvotu, jo izvēlētais produkts "
"vai kvota šobrīd ir izpārdota vai pilnībā rezervēta."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The selected product does not allow to select a seat."
msgid "The selected quota does not match the selected subevent."
msgstr "Atlasītais produkts neļauj izvēlēties sēdvietu."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr "Kvotai \"{}\" nav pietiekošs atlikums, lai veiktu darbību."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -18101,6 +17981,10 @@ msgstr ""
msgid "Account history"
msgstr "Konta vēsture"
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -18375,7 +18259,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -18821,8 +18704,8 @@ msgstr "Dzēst"
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -18833,6 +18716,7 @@ msgstr "Dzēst"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -18969,7 +18853,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -19567,22 +19450,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr "Verifikācija"
@@ -19745,94 +19612,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr "Rādīt pasūtījumus, kam pieprasīta atcelšana"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -19949,6 +19728,69 @@ msgstr ""
msgid "Create QR code"
msgstr "Cits QR kods"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr "Rādīt pasūtījumus, kam pieprasīta atcelšana"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -20134,6 +19976,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -21085,20 +20965,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -21109,12 +20975,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#, fuzzy
#| msgid "Deactivate selected"
msgid "Specific object selected"
msgstr "Deaktivizēt atlasītos"
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -22198,7 +22058,6 @@ msgstr "Mainīt vairākus datumus"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -22289,7 +22148,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr "Mainīt atlasītos"
@@ -22594,13 +22452,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -23035,6 +22886,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -24190,7 +24046,6 @@ msgstr "Mainīt vairākus datumus"
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -26472,13 +26327,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -26486,13 +26339,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgctxt "subevent"
#| msgid "Change multiple dates"
msgid "Change multiple vouchers"
msgstr "Mainīt vairākus datumus"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -26849,8 +26695,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -27494,30 +27339,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr "Verifikācijas kods nepareizs, lūdzu mēģiniet vēlreiz."
@@ -28637,7 +28458,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -29955,6 +29775,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\"> {text} </a>"
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -30689,13 +30514,8 @@ msgstr "Atbildes URI, uz kuru lietotājs tiks nosūtīts pēc autorizēšanās"
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
@@ -35858,11 +35678,6 @@ msgstr "Rediģēšanas režīma piekļuve"
msgid "Kosovo"
msgstr "Kosovo"
#, python-brace-format
#~ msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#~ msgstr ""
#~ "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\"> {text} </a>"
#, fuzzy
#~| msgid "Account information"
#~ msgid "Account invitation"
+222 -367
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -17,6 +17,38 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr ""
@@ -1167,19 +1199,6 @@ msgstr ""
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1312,66 +1331,6 @@ msgstr ""
msgid "No"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Purchase ticket"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Start time"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "End time"
msgstr ""
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2199,6 +2158,30 @@ msgstr ""
msgid "Position ID"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2590,6 +2573,12 @@ msgstr ""
msgid "Gift card code"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2703,7 +2692,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2869,7 +2858,7 @@ msgid "This combination of credentials is not known to our system."
msgstr ""
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -3792,7 +3781,6 @@ msgstr ""
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4410,8 +4398,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5706,6 +5694,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6484,7 +6489,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6503,7 +6508,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -6972,12 +6977,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7534,6 +7533,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -8659,12 +8663,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10197,11 +10195,11 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py
#: 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 "
@@ -11682,7 +11680,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -12878,7 +12875,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -12902,7 +12899,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13077,22 +13074,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13130,6 +13111,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13357,36 +13345,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
msgid "All sources"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Device actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "User email"
msgstr ""
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14564,7 +14522,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -14678,53 +14635,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "The selected quota does not match the selected subevent."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "There is no sufficient quota available to perform this change."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16430,6 +16340,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -16698,7 +16612,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17116,8 +17029,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17128,6 +17041,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17262,7 +17176,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -17818,22 +17731,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -17994,94 +17891,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18196,6 +18005,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18370,6 +18242,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19268,20 +19178,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19292,10 +19188,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20310,7 +20202,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20397,7 +20288,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -20694,13 +20584,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21113,6 +20996,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22189,7 +22077,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24346,13 +24233,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24360,10 +24245,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgid "Change multiple vouchers"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -24703,8 +24584,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25307,30 +25187,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26388,7 +26244,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -27576,6 +27431,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28210,13 +28070,8 @@ msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2025-01-20 01:00+0000\n"
"Last-Translator: Serge Bazanski <sergiusz@q3k.org>\n"
"Language-Team: Polish (informal) <https://translate.pretix.eu/projects/"
@@ -20,6 +20,38 @@ msgstr ""
"|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.9.2\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr "Angielski"
@@ -1280,19 +1312,6 @@ msgstr ""
"Pobierz arkusz kalkulacyjny wszystkich obecnie zarejestrowanych kont "
"klientów."
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1425,72 +1444,6 @@ msgstr "Tak"
msgid "No"
msgstr "Nie"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Tryb testowy"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Personalized ticket"
msgid "Purchase ticket"
msgstr "Personalizowany bilet"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Data początkowa"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Start date"
msgid "Start time"
msgstr "Data początkowa"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Data końcowa"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End date"
msgid "End time"
msgstr "Data końcowa"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2343,6 +2296,30 @@ msgstr "anulowane"
msgid "Position ID"
msgstr "ID pozycji"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Data początkowa"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Data końcowa"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2753,6 +2730,12 @@ msgstr ""
msgid "Gift card code"
msgstr "Kod karty podarunkowej"
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Tryb testowy"
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2870,7 +2853,7 @@ msgstr "Wygaśnięte i z wartością"
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -3041,7 +3024,7 @@ msgid "This combination of credentials is not known to our system."
msgstr "Te dane logowanie nie są nam znane."
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr "Z powodów bezpieczeństwa poczekaj 5 minut przed kolejną próbą."
@@ -4014,7 +3997,6 @@ msgstr "Pozwól na obejście limitów"
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4712,8 +4694,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -6039,6 +6021,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6821,7 +6820,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6840,7 +6839,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7309,12 +7308,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7890,6 +7883,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -9036,12 +9034,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10584,11 +10576,11 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py
#: 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 "
@@ -12084,7 +12076,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -13292,7 +13283,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -13316,7 +13307,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13491,22 +13482,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13544,6 +13519,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13773,42 +13755,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr "Adres email"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All invoices"
msgid "All sources"
msgstr "Wszystkie faktury"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Device name"
msgid "Device actions"
msgstr "Nazwa urządzenia"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order total"
msgid "User email"
msgstr "Suma zamówienia"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14990,7 +14936,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -15104,59 +15049,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The event slug cannot be changed."
msgid "The selected quota does not match the selected subevent."
msgstr "Skrót wydarzenie nie może zostać zmieniony."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr "Limit \"{}\" niewystarczający do wykonania operacji."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16872,6 +16764,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -17140,7 +17036,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17559,8 +17454,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17571,6 +17466,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17705,7 +17601,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -18276,22 +18171,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -18455,94 +18334,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18657,6 +18448,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18840,6 +18694,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19742,20 +19634,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19766,10 +19644,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20789,7 +20663,6 @@ msgstr "Adres email uczestnika"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20877,7 +20750,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -21174,13 +21046,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21595,6 +21460,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22678,7 +22548,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24873,13 +24742,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24887,12 +24754,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Attendee email address"
msgid "Change multiple vouchers"
msgstr "Adres email uczestnika"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -25232,8 +25093,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25846,30 +25706,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26939,7 +26775,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -28134,6 +27969,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28768,13 +28608,8 @@ msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
+222 -387
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2025-06-05 04:00+0000\n"
"Last-Translator: Francisco Rosa <francisco@comm7.net>\n"
"Language-Team: Portuguese <https://translate.pretix.eu/projects/pretix/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 5.11.4\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr "Inglês"
@@ -1274,19 +1306,6 @@ msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
"Baixe uma planilha de todas as contas de clientes registradas atualmente."
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1419,72 +1438,6 @@ msgstr "Sim"
msgid "No"
msgstr "Não"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Order date"
msgid "Purchase ticket"
msgstr "Dia do pedido"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Data de início"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Start date"
msgid "Start time"
msgstr "Data de início"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Data final"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End date"
msgid "End time"
msgstr "Data final"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
#, fuzzy
#| msgid "Invoices"
@@ -2345,6 +2298,30 @@ msgstr ""
msgid "Position ID"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Data de início"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Data final"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2758,6 +2735,12 @@ msgstr ""
msgid "Gift card code"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2871,7 +2854,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -3037,7 +3020,7 @@ msgid "This combination of credentials is not known to our system."
msgstr ""
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -3978,7 +3961,6 @@ msgstr ""
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4617,8 +4599,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5930,6 +5912,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6721,7 +6720,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6740,7 +6739,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7210,12 +7209,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7800,6 +7793,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -8944,12 +8942,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10501,13 +10493,13 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Bancontact"
msgid "Contact URL"
msgstr "Contato bancário"
#: pretix/base/settings.py
#: 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 "
@@ -12011,7 +12003,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -13229,7 +13220,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -13253,7 +13244,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13431,22 +13422,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13484,6 +13459,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13715,41 +13697,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr "Endereço de e-mail"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All invoices"
msgid "All sources"
msgstr "Todas faturas"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
msgid "Device actions"
msgstr "Filtrar por status"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order total"
msgid "User email"
msgstr "Total do pedido"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14962,7 +14909,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -15076,60 +15022,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The selected date does not exist in this event series."
msgid "The selected quota does not match the selected subevent."
msgstr "A data selecionada não existe nesta série de eventos."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr ""
"Não há cota suficiente disponível na cota \"{}\" para executar a operação."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16896,6 +16788,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -17167,7 +17063,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17589,8 +17484,8 @@ msgstr "Deletar"
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17601,6 +17496,7 @@ msgstr "Deletar"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17735,7 +17631,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -18305,22 +18200,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
msgid "Verification"
@@ -18484,94 +18363,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18687,6 +18478,69 @@ msgstr ""
msgid "Create QR code"
msgstr "Código de pedido"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18867,6 +18721,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19780,20 +19672,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19804,10 +19682,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20838,7 +20712,6 @@ msgstr "Endereço de e-mail"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20926,7 +20799,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -21225,13 +21097,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21648,6 +21513,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22751,7 +22621,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24946,13 +24815,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24960,12 +24827,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Email address"
msgid "Change multiple vouchers"
msgstr "Endereço de e-mail"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -25307,8 +25168,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25920,30 +25780,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -27024,7 +26860,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -28251,6 +28086,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28900,13 +28740,8 @@ msgstr "URIs de redirecionamento"
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+229 -414
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2026-06-30 16:52+0000\n"
"Last-Translator: Nikita Mitasov <me@ch4og.com>\n"
"Language-Team: Russian <https://translate.pretix.eu/projects/pretix/pretix/"
@@ -20,6 +20,38 @@ msgstr ""
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 2026.6.1\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Магазин отключен"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Предпродажа окончена"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "Предпродажа не началась"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "В продаже"
#: pretix/_base_settings.py
msgid "English"
msgstr "Английский язык"
@@ -1324,22 +1356,6 @@ msgstr "Аккаунт в Stripe"
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#, fuzzy
#| msgctxt "refund_source"
#| msgid "Customer"
msgid "Customers"
msgstr "Клиент"
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1485,74 +1501,6 @@ msgstr "Да"
msgid "No"
msgstr "Нет"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Отменено"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#, fuzzy
#| msgid "Fee type"
msgid "Membership type"
msgstr "Тип сбора"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Order date"
msgid "Purchase ticket"
msgstr "Дата заказа"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Дата начала"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Event date"
msgid "Start time"
msgstr "Дата мероприятия"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Дата окончания"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End: %(time)s"
msgid "End time"
msgstr "Окончание: %(time)s"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
#, fuzzy
#| msgid "Invoices"
@@ -2422,6 +2370,30 @@ msgstr "отменено"
msgid "Position ID"
msgstr "ID позиции"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Дата начала"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Дата окончания"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2871,6 +2843,12 @@ msgstr ""
msgid "Gift card code"
msgstr "Код подарочного сертификата"
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2991,7 +2969,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -3180,7 +3158,7 @@ msgid "This combination of credentials is not known to our system."
msgstr "Эта комбинация учётных данных неизвестна нашей системе."
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -4226,7 +4204,6 @@ msgstr "Разрешить обход квоты"
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4954,8 +4931,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -6536,6 +6513,25 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr "Количество раз, которое этот промокод может быть использован."
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Отменено"
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#, fuzzy
#| msgid "Fee type"
msgid "Membership type"
msgstr "Тип сбора"
#: pretix/base/models/orders.py
msgid "pending"
msgstr "не завершено"
@@ -7401,7 +7397,7 @@ msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
"В настоящее время невозможно создать промокоды для дополнительных продуктов."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
#, fuzzy
#| msgid "You cannot select a quota and a specific product at the same time."
msgid ""
@@ -7430,7 +7426,7 @@ msgstr ""
"Максимальное количество на заказ не может быть ниже минимального количества "
"на заказ."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7983,12 +7979,6 @@ msgstr ""
"За это время этот подарочный сертификат уже был использован. Пожалуйста, "
"попробуйте ещё раз."
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr "Код билета (содержание штрих-кода)"
@@ -8638,6 +8628,14 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#, fuzzy
#| msgctxt "refund_source"
#| msgid "Customer"
msgid "Customers"
msgstr "Клиент"
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -10017,18 +10015,6 @@ msgstr ""
"Вы не можете изменить цену позиции, которая использовалась для выдачи "
"подарочного сертификата."
#: pretix/base/services/orders.py
#, fuzzy
#| msgid ""
#| "You cannot change the price of a position that has been used to issue a "
#| "gift card."
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
"Вы не можете изменить цену позиции, которая использовалась для выдачи "
"подарочного сертификата."
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -11707,13 +11693,13 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact"
msgid "Contact URL"
msgstr "Связаться"
#: pretix/base/settings.py
#: 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 "
@@ -13403,7 +13389,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -14733,7 +14718,7 @@ msgstr ""
msgid "Valid orders"
msgstr "Оплаченные заказы"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -14762,7 +14747,7 @@ msgstr ""
msgid "Cancellations"
msgstr "Отмена"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Canceled (paid fee)"
msgid "Canceled (fully)"
@@ -14968,22 +14953,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "Предпродажа не началась"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Предпродажа окончена"
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -15029,6 +14998,13 @@ msgstr "Активен"
msgid "not yet activated"
msgstr "Активен"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Your items"
@@ -15290,42 +15266,6 @@ msgstr "Все счета"
msgid "Search email address or subject"
msgstr "Адрес электронной почты"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All invoices"
msgid "All sources"
msgstr "Все счета"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Device name"
msgid "Device actions"
msgstr "Наименование устройства"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order details"
msgid "User email"
msgstr "Данные заказа"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -16607,7 +16547,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Save changes"
msgctxt "form_bulk"
@@ -16727,65 +16666,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "You cannot create a voucher that blocks quota as the selected product or "
#| "quota is currently sold out or completely reserved."
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
"Вы не можете создать промокод, который блокирует квоту, поскольку выбранный "
"продукт или квота в настоящее время распроданы или полностью зарезервированы."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The selected product does not allow to select a seat."
msgid "The selected quota does not match the selected subevent."
msgstr "Выбранный продукт не позволяет выбрать место."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr "Недостаточно квоты в \"{}\" для выполнения операции."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -18689,6 +18569,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -18963,7 +18847,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -19415,8 +19298,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -19427,6 +19310,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -19568,7 +19452,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -20174,22 +20057,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid "Verification failed"
@@ -20364,96 +20231,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
#, fuzzy
#| msgid "The order has been canceled."
msgid "Show orders requesting cancellation"
msgstr "Заказ отменён."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -20570,6 +20347,71 @@ msgstr ""
msgid "Create QR code"
msgstr "Код заказа"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#, fuzzy
#| msgid "The order has been canceled."
msgid "Show orders requesting cancellation"
msgstr "Заказ отменён."
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -20759,6 +20601,44 @@ msgstr ""
msgid "Enable test mode"
msgstr "Включить вебхук"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -21747,20 +21627,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Магазин отключен"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "В продаже"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -21771,13 +21637,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#, fuzzy
#| msgctxt "subevent"
#| msgid "No date selected."
msgid "Specific object selected"
msgstr "Дата не выбрана."
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -22884,7 +22743,6 @@ msgstr "Отменить заказ"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -22975,7 +22833,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#, fuzzy
#| msgctxt "subevent"
#| msgid "No date selected."
@@ -23285,13 +23142,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -23755,6 +23605,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -24947,7 +24802,6 @@ msgstr "Отменить заказ"
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -27280,13 +27134,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -27294,12 +27146,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Cancel order"
msgid "Change multiple vouchers"
msgstr "Отменить заказ"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -27656,8 +27502,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -28310,30 +28155,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
#, fuzzy
#| msgid "This gift card was used in the meantime. Please try again"
@@ -29502,7 +29323,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -30832,6 +30652,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -31566,13 +31391,8 @@ msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
@@ -36834,11 +36654,6 @@ msgstr ""
msgid "Kosovo"
msgstr ""
#, python-brace-format
#~ msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#~ msgstr ""
#~ "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#, fuzzy
#~| msgid "Account information changed"
#~ msgid "Account invitation"
+222 -380
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2021-03-03 06:00+0000\n"
"Last-Translator: helabasa <R45XvezA@pm.me>\n"
"Language-Team: Sinhala <https://translate.pretix.eu/projects/pretix/pretix/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.4.2\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "සාප්පුව අබල කර ඇත"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr ""
@@ -1201,19 +1233,6 @@ msgstr ""
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1346,71 +1365,6 @@ msgstr ""
msgid "No"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Purchase ticket"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Order code"
msgid "Start time"
msgstr "ඇණවුම් කේතය"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgctxt "subevent"
#| msgid "All dates"
msgid "End time"
msgstr "සියලුම දිනයන්"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2241,6 +2195,30 @@ msgstr ""
msgid "Position ID"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2643,6 +2621,12 @@ msgstr ""
msgid "Gift card code"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2756,7 +2740,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2922,7 +2906,7 @@ msgid "This combination of credentials is not known to our system."
msgstr ""
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -3851,7 +3835,6 @@ msgstr ""
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4473,8 +4456,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5769,6 +5752,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6552,7 +6552,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6571,7 +6571,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7040,12 +7040,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7604,6 +7598,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -8733,12 +8732,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10275,11 +10268,11 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py
#: 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 "
@@ -11762,7 +11755,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -12968,7 +12960,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -12994,7 +12986,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13174,22 +13166,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13227,6 +13203,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13466,44 +13449,6 @@ msgstr "සියලුම දිනයන්"
msgid "Search email address or subject"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgctxt "subevent"
#| msgid "All dates"
msgid "All sources"
msgstr "සියලුම දිනයන්"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgctxt "subevent"
#| msgid "All dates"
msgid "Device actions"
msgstr "සියලුම දිනයන්"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order code"
msgid "User email"
msgstr "ඇණවුම් කේතය"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14681,7 +14626,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -14795,53 +14739,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "The selected quota does not match the selected subevent."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "There is no sufficient quota available to perform this change."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16553,6 +16450,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -16821,7 +16722,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17239,8 +17139,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17251,6 +17151,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17385,7 +17286,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -17943,22 +17843,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -18119,94 +18003,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18323,6 +18119,69 @@ msgstr ""
msgid "Create QR code"
msgstr "ඇණවුම් කේතය"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18499,6 +18358,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19402,20 +19299,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "සාප්පුව අබල කර ඇත"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19426,10 +19309,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20450,7 +20329,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20537,7 +20415,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -20834,13 +20711,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21253,6 +21123,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22337,7 +22212,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24512,13 +24386,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24526,10 +24398,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgid "Change multiple vouchers"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -24869,8 +24737,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25474,30 +25341,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26564,7 +26407,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -27770,6 +27612,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28415,13 +28262,8 @@ msgstr "සියලුම දිනයන්"
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
+223 -465
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2025-03-15 20:49+0000\n"
"Last-Translator: Kristian Feldsam <feldsam@gmail.com>\n"
"Language-Team: Slovak <https://translate.pretix.eu/projects/pretix/pretix/sk/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 5.10.3\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Predaj je zakázaný"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Predpredaj skončil"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "Predpredaj sa nezačal"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "V predaji"
#: pretix/_base_settings.py
msgid "English"
msgstr "Angličtina"
@@ -1286,19 +1318,6 @@ msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
"Stiahnite si tabuľku všetkých aktuálne zaregistrovaných zákazníckych účtov."
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "Zákazníci"
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr "Členstvo"
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1431,72 +1450,6 @@ msgstr "Áno"
msgid "No"
msgstr "Nie"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Testovací režim"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Zrušené"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Typ členstva"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Purchase time"
msgid "Purchase ticket"
msgstr "Čas nákupu"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Dátum začiatku"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Start time from"
msgid "Start time"
msgstr "Čas začiatku od"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Dátum ukončenia"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End: %(time)s"
msgid "End time"
msgstr "Koniec: %(time)s"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2352,6 +2305,30 @@ msgstr "zrušené"
msgid "Position ID"
msgstr "ID pozície"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Dátum začiatku"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Dátum ukončenia"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2759,6 +2736,12 @@ msgstr "Stiahnite si tabuľku všetkých transakcií s darčekovými kartami."
msgid "Gift card code"
msgstr "Kód darčekovej karty"
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Testovací režim"
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2876,7 +2859,7 @@ msgstr "Premlčané a s hodnotou"
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -3046,7 +3029,7 @@ msgid "This combination of credentials is not known to our system."
msgstr "Táto kombinácia poverení nie je nášmu systému známa."
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr "Z bezpečnostných dôvodov počkajte 5 minút, kým to skúsite znova."
@@ -4036,7 +4019,6 @@ msgstr "Povolenie obísť kvótu"
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4747,8 +4729,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -6248,6 +6230,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr "Počet prípadov, keď je možné toto členstvo použiť pri nákupe."
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Zrušené"
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Typ členstva"
#: pretix/base/models/orders.py
msgid "pending"
msgstr "čaká sa na"
@@ -7115,7 +7114,7 @@ msgstr "Táto variácia nepatrí k tomuto produktu."
msgid "It is currently not possible to create vouchers for add-on products."
msgstr "V súčasnosti nie je možné vytvárať poukazy na doplnkové produkty."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -7138,7 +7137,7 @@ msgid ""
"usages."
msgstr "Maximálny počet použití nesmie byť nižší ako minimálny počet použití."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7663,17 +7662,6 @@ msgstr "Tento organizátor podujatia túto darčekovú kartu neakceptuje."
msgid "This gift card was used in the meantime. Please try again."
msgstr "Táto darčeková karta bola medzitým použitá. Skúste to prosím znova."
#: pretix/base/payment.py
#, fuzzy
#| msgid ""
#| "This payment provider does not exist or the respective plugin is disabled."
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
"Tento poskytovateľ platieb neexistuje alebo je príslušný zásuvný modul "
"vypnutý."
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr "Kód vstupenky (obsah čiarového kódu)"
@@ -8280,6 +8268,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "Zákazníci"
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr "Zariadenia"
@@ -9550,18 +9543,6 @@ msgstr ""
"Cenu pozície, ktorá bola použitá na vydanie darčekovej karty, nemôžete "
"zmeniť."
#: pretix/base/services/orders.py
#, fuzzy
#| msgid ""
#| "You cannot change the price of a position that has been used to issue a "
#| "gift card."
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
"Cenu pozície, ktorá bola použitá na vydanie darčekovej karty, nemôžete "
"zmeniť."
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -11426,13 +11407,13 @@ msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
"Túto informáciu zobrazíme verejne, aby vás účastníci mohli kontaktovať."
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact:"
msgid "Contact URL"
msgstr "Kontakt:"
#: pretix/base/settings.py
#: 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 "
@@ -13463,7 +13444,6 @@ msgstr "Tento e-mail dostávate, pretože ste si objednali {event}."
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -14791,7 +14771,7 @@ msgstr "Všetky objednávky"
msgid "Valid orders"
msgstr "Platné objednávky"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr "Zaplatené (alebo zrušené so zaplateným poplatkom)"
@@ -14815,7 +14795,7 @@ msgstr "Čaká na vybavenie alebo je zaplatené"
msgid "Cancellations"
msgstr "Zrušenie"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr "Zrušené (úplne)"
@@ -14992,22 +14972,6 @@ msgstr "Obchod naživo a predpredaj beží"
msgid "Inactive"
msgstr "Neaktívne"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "Predpredaj sa nezačal"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Predpredaj skončil"
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -15045,6 +15009,13 @@ msgstr "aktívny"
msgid "not yet activated"
msgstr "ešte nie je aktivovaný"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr "Členstvo"
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr "Nemá žiadne členstvo"
@@ -15274,42 +15245,6 @@ msgstr "Odvolané zariadenia"
msgid "Search email address or subject"
msgstr "Vyžadovať e-mailové adresy na tiket"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "Zdroj"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All vouchers"
msgid "All sources"
msgstr "Všetky poukazy"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr "Tímové akcie"
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr "Činnosti zákazníkov"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Device status"
msgid "Device actions"
msgstr "Stav zariadenia"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order details"
msgid "User email"
msgstr "Podrobnosti o objednávke"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr "Všetci používatelia"
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr "Dodatočný text v pätičke"
@@ -16694,7 +16629,6 @@ msgstr "Voliteľné"
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr "zmeniť"
@@ -16810,66 +16744,6 @@ msgstr ""
"Kupón sa zhoduje len so skrytými produktmi, ale nezvolili ste, že ich má "
"zobrazovať."
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "You cannot create a voucher that blocks quota as the selected product or "
#| "quota is currently sold out or completely reserved."
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
"Nemôžete vytvoriť poukaz, ktorý blokuje kvótu, pretože vybraný produkt alebo "
"kvóta sú v súčasnosti vypredané alebo úplne rezervované."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The selected product does not allow to select a seat."
msgid "The selected quota does not match the selected subevent."
msgstr "Vybraný produkt neumožňuje vybrať sedadlo."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr ""
"V kvóte \"{}\" nie je k dispozícii dostatočná kvóta na vykonanie operácie."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr "Kódy"
@@ -18746,6 +18620,10 @@ msgstr "Autorizované aplikácie"
msgid "Account history"
msgstr "História účtu"
#: pretix/control/navigation.py
msgid "All users"
msgstr "Všetci používatelia"
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -19016,7 +18894,6 @@ msgstr "Nastavenie nového hesla"
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -19465,8 +19342,8 @@ msgstr "Odstrániť"
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -19477,6 +19354,7 @@ msgstr "Odstrániť"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -19611,7 +19489,6 @@ msgstr "Časová pečiatka"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr "Výber všetkých výsledkov aj na iných stránkach"
@@ -20336,34 +20213,6 @@ msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
"Na vašej doméne sme našli záznam SPF, ktorý obsahuje tento systém. Skvelé!"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid "Your new SPF record could look like this:"
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr "Váš nový záznam SPF by mohol vyzerať takto:"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid ""
#| "We found an SPF record on your domain that includes this system. Great!"
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
"Na vašej doméne sme našli záznam SPF, ktorý obsahuje tento systém. Skvelé!"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid "Your new SPF record could look like this:"
msgid "Your new DMARC record could look like this:"
msgstr "Váš nový záznam SPF by mohol vyzerať takto:"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid ""
#| "We found an SPF record on your domain that includes this system. Great!"
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
"Na vašej doméne sme našli záznam SPF, ktorý obsahuje tento systém. Skvelé!"
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr "Overovanie"
@@ -20564,94 +20413,6 @@ msgstr ""
"Udalosť môžete úplne vymazať len vtedy, ak neobsahuje žiadne nevymazateľné "
"údaje, napríklad objednávky, ktoré neboli vykonané v testovacom režime."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr "Osobné údaje boli z tohto záznamu vymazané."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr "Túto zmenu vykonal správca systému pretix."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr "Kontrola"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr "Zobraziť preplatené objednávky"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr "Zobraziť čakajúce refundácie"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr "Zobraziť objednávky požadujúce zrušenie"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr "Zobraziť objednávky čakajúce na schválenie"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr "Zobraziť dotknuté objednávky"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -20777,6 +20538,69 @@ msgstr "Adresa URL obchodu:"
msgid "Create QR code"
msgstr "Vytvorenie kódu QR"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr "Zobraziť preplatené objednávky"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr "Zobraziť čakajúce refundácie"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr "Zobraziť objednávky požadujúce zrušenie"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr "Zobraziť objednávky čakajúce na schválenie"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr "Zobraziť dotknuté objednávky"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -20965,6 +20789,44 @@ msgstr ""
msgid "Enable test mode"
msgstr "Povolenie testovacieho režimu"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr "Všetky akcie"
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr "Tímové akcie"
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr "Činnosti zákazníkov"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr "Osobné údaje boli z tohto záznamu vymazané."
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr "Túto zmenu vykonal správca systému pretix."
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr "Kontrola"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -21976,20 +21838,6 @@ msgstr "Žiadne dátumy"
msgid "More quotas"
msgstr "Viac kvót"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Predaj je zakázaný"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "V predaji"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -22000,12 +21848,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr "Rýchla hnedá líška preskočí lenivého psa."
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#, fuzzy
#| msgid "Specific seat"
msgid "Specific object selected"
msgstr "Špecifické sedadlo"
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -23116,7 +22958,6 @@ msgstr "Zmena viacerých dátumov"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr "%(number)s vybraných"
@@ -23216,7 +23057,6 @@ msgstr "Odstrániť vybrané"
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr "Upraviť vybrané"
@@ -23530,13 +23370,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -24000,6 +23833,11 @@ msgstr "Potvrdiť ako zaplatené"
msgid "Create a refund"
msgstr "Vytvorenie refundácie"
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "Zdroj"
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr "Zrušiť prevod"
@@ -25168,7 +25006,6 @@ msgstr "Zmena viacerých zariadení"
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr "Rozšírené nastavenia"
@@ -27551,13 +27388,11 @@ msgid "Copy codes"
msgstr "Kópia kódov"
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr "Podrobnosti o poukaze"
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -27569,12 +27404,6 @@ msgstr ""
"poukazu nedostupný aj v prípade, že sa vypredá iná kvóta spojená s týmto "
"výrobkom!"
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Create multiple vouchers"
msgid "Change multiple vouchers"
msgstr "Vytvorenie viacerých poukazov"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -27946,9 +27775,9 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
"Pozvánku pre \"{}\" nemôžete prijať, pretože už ste súčasťou tohto tímu."
#: pretix/control/views/auth.py
#, python-brace-format
@@ -28621,66 +28450,6 @@ msgstr ""
"spam. Mali by ste aktualizovať nastavenia DNS svojej domény tak, aby tento "
"systém zahŕňali do záznamu SPF."
#: pretix/control/views/mailsetup.py
#, fuzzy
#| msgid ""
#| "We could not find an SPF record set for the 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 an SPF record "
#| "on the domain. You can do so through the DNS settings at the provider you "
#| "registered your domain with."
msgid ""
"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."
msgstr ""
"Pre doménu, ktorú sa snažíte použiť, sme nenašli nastavený záznam SPF. To "
"znamená, že je veľmi vysoká pravdepodobnosť, že väčšina e-mailov bude "
"odmietnutá alebo označená ako spam. Dôrazne odporúčame nastaviť záznam SPF "
"na doméne. Môžete tak urobiť prostredníctvom nastavení DNS u poskytovateľa, "
"u ktorého ste zaregistrovali doménu."
#: pretix/control/views/mailsetup.py
#, fuzzy
#| msgid ""
#| "We found an SPF record set for the domain you are trying to use, but it "
#| "does not include this system's email server. 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 to include this system "
#| "in the SPF record."
msgid ""
"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."
msgstr ""
"Našli sme záznam SPF nastavený pre doménu, ktorú sa snažíte použiť, ale "
"neobsahuje e-mailový server tohto systému. To znamená, že je veľmi vysoká "
"pravdepodobnosť, že väčšina e-mailov bude odmietnutá alebo označená ako "
"spam. Mali by ste aktualizovať nastavenia DNS svojej domény tak, aby tento "
"systém zahŕňali do záznamu SPF."
#: pretix/control/views/mailsetup.py
#, fuzzy
#| msgid ""
#| "We found an SPF record set for the domain you are trying to use, but it "
#| "does not include this system's email server. 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 to include this system "
#| "in the SPF record."
msgid ""
"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."
msgstr ""
"Našli sme záznam SPF nastavený pre doménu, ktorú sa snažíte použiť, ale "
"neobsahuje e-mailový server tohto systému. To znamená, že je veľmi vysoká "
"pravdepodobnosť, že väčšina e-mailov bude odmietnutá alebo označená ako "
"spam. Mali by ste aktualizovať nastavenia DNS svojej domény tak, aby tento "
"systém zahŕňali do záznamu SPF."
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr "Overovací kód bol nesprávny, skúste to prosím znova."
@@ -29832,7 +29601,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -31136,6 +30904,11 @@ msgstr ""
msgid "PayPal account"
msgstr "Účet PayPal"
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr "Kliknutím sem získate návod na získanie požadovaných kľúčov"
@@ -31844,13 +31617,8 @@ msgstr "Základné adresy URL presmerovania"
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
@@ -36833,16 +36601,6 @@ msgstr "Prístup na zápis"
msgid "Kosovo"
msgstr "Kosovo"
#~ msgid "All actions"
#~ msgstr "Všetky akcie"
#, python-brace-format
#~ msgid ""
#~ "You cannot accept the invitation for \"{}\" as you already are part of "
#~ "this team."
#~ msgstr ""
#~ "Pozvánku pre \"{}\" nemôžete prijať, pretože už ste súčasťou tohto tímu."
#, fuzzy
#~| msgid "Account information"
#~ msgid "Account invitation"
+227 -406
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2024-11-18 16:09+0100\n"
"Last-Translator: Lovro <lovrogrilc@gmail.com>\n"
"Language-Team: Slovenian <https://translate.pretix.eu/projects/pretix/pretix/"
@@ -20,6 +20,38 @@ msgstr ""
"n%100==4 ? 2 : 3;\n"
"X-Generator: Poedit 3.4.2\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Trgovina izključena"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Prednaročilo zaključeno"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "Prednaročilo se še ni začelo"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "Naprodaj"
#: pretix/_base_settings.py
msgid "English"
msgstr "angleščina"
@@ -1293,22 +1325,6 @@ msgstr "Računi strank"
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr "Prenesite preglednico vseh trenutno registriranih računov strank."
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#, fuzzy
#| msgctxt "refund_source"
#| msgid "Customer"
msgid "Customers"
msgstr "Stranka"
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1441,74 +1457,6 @@ msgstr "Da"
msgid "No"
msgstr "Ne"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Preizkusni način"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#, fuzzy
#| msgid "Fee type"
msgid "Membership type"
msgstr "Tipi stroškov"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Purchased products"
msgid "Purchase ticket"
msgstr "Kupljeni izdelki"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Datum začetka"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Date from"
msgid "Start time"
msgstr "Datum od"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Datum konca"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End date"
msgid "End time"
msgstr "Datum konca"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2380,6 +2328,30 @@ msgstr "preklicano"
msgid "Position ID"
msgstr "ID pozicije"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Datum začetka"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Datum konca"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2821,6 +2793,12 @@ msgstr ""
msgid "Gift card code"
msgstr "Koda darilne kartice"
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Preizkusni način"
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2936,7 +2914,7 @@ msgstr "S preteklo veljavnostjo in z vrednostjo"
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -3123,7 +3101,7 @@ msgid "This combination of credentials is not known to our system."
msgstr "Naš sistem ne pozna te kombinacije poverilnic."
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr "Iz varnostnih razlogov počakajte 5 minut, preden poskusite znova."
@@ -4134,7 +4112,6 @@ msgstr "Dovoli zaobiti kvoto"
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4849,8 +4826,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -6398,6 +6375,25 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr "Število uporab tega bona."
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#, fuzzy
#| msgid "Fee type"
msgid "Membership type"
msgstr "Tipi stroškov"
#: pretix/base/models/orders.py
msgid "pending"
msgstr "v teku"
@@ -7254,7 +7250,7 @@ msgstr "Ta različica ne spada v ta izdelek."
msgid "It is currently not possible to create vouchers for add-on products."
msgstr "Trenutno ni mogoče izdelati bonov za dodatne izdelke."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -7283,7 +7279,7 @@ msgstr ""
"Najvišje število na naročilo ne sme biti nižje od najnižjega števila na "
"naročilo."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr "Če želite, da ta kupon blokira kvoto, morate izbrati določen datum."
@@ -7806,12 +7802,6 @@ msgstr "Organizator prireditve ne sprejema te darilne kartice."
msgid "This gift card was used in the meantime. Please try again."
msgstr "Ta darilna kartica je bila medtem uporabljena. Poskusite ponovno."
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr "Koda vstopnice (vsebina črtne kode)"
@@ -8458,6 +8448,14 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#, fuzzy
#| msgctxt "refund_source"
#| msgid "Customer"
msgid "Customers"
msgstr "Stranka"
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -9889,18 +9887,6 @@ msgstr ""
"Cene pozicije, ki je bila uporabljena za izdajo darilne kartice, ne morete "
"spremeniti."
#: pretix/base/services/orders.py
#, fuzzy
#| msgid ""
#| "You cannot change the price of a position that has been used to issue a "
#| "gift card."
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
"Cene pozicije, ki je bila uporabljena za izdajo darilne kartice, ne morete "
"spremeniti."
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -11694,11 +11680,11 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py
#: 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 "
@@ -13253,7 +13239,6 @@ msgstr "To e-pošto ste prejeli, ker ste oddali naročilo za {event}."
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -14557,7 +14542,7 @@ msgstr ""
msgid "Valid orders"
msgstr "Plačana naročila"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -14586,7 +14571,7 @@ msgstr ""
msgid "Cancellations"
msgstr "Preklic"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -14781,22 +14766,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "Prednaročilo se še ni začelo"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Prednaročilo zaključeno"
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -14842,6 +14811,13 @@ msgstr "Aktiven"
msgid "not yet activated"
msgstr "Je aktiven"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Team members"
@@ -15109,42 +15085,6 @@ msgstr "Vsi računi"
msgid "Search email address or subject"
msgstr "Zahtevajte e-poštne naslove na vstopnico"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All vouchers"
msgid "All sources"
msgstr "Vsi boni"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Device name"
msgid "Device actions"
msgstr "Ime naprave"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order total"
msgid "User email"
msgstr "Skupni znesek naročila"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -16428,7 +16368,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Order changed"
msgctxt "form_bulk"
@@ -16548,65 +16487,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "You cannot create a voucher that blocks quota as the selected product or "
#| "quota is currently sold out or completely reserved."
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
"Ne morete ustvariti bona, ki blokira kvote, saj je izbrani izdelek ali kvota "
"trenutno razprodan ali popolnoma rezerviran."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The selected product does not allow to select a seat."
msgid "The selected quota does not match the selected subevent."
msgstr "Za izbrani dogodek ni možna izbira sedeža."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr "Na kvoti \"{}\" ni dovolj kvote za izvedbo operacije."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -18499,6 +18379,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -18773,7 +18657,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -19229,8 +19112,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -19241,6 +19124,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -19382,7 +19266,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -19975,22 +19858,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid "Variation"
@@ -20163,94 +20030,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -20367,6 +20146,69 @@ msgstr ""
msgid "Create QR code"
msgstr "Koda naročila"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -20551,6 +20393,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -21535,20 +21415,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Trgovina izključena"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "Naprodaj"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -21559,12 +21425,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#, fuzzy
#| msgid "Specific seat"
msgid "Specific object selected"
msgstr "Poseben sedež"
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -22662,7 +22522,6 @@ msgstr "Lahko spreminja naročila"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -22753,7 +22612,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -23058,13 +22916,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -23523,6 +23374,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -24709,7 +24565,6 @@ msgstr "Lahko spreminja naročila"
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -27035,13 +26890,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -27049,12 +26902,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Can change orders"
msgid "Change multiple vouchers"
msgstr "Lahko spreminja naročila"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -27408,8 +27255,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -28055,30 +27901,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
#, fuzzy
#| msgid "This gift card was used in the meantime. Please try again."
@@ -29222,7 +29044,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -30534,6 +30355,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -31237,13 +31063,8 @@ msgstr "URIji za preusmeritev"
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
+222 -367
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2026-02-19 22:00+0000\n"
"Last-Translator: Ruud Hendrickx <ruud@leckxicon.eu>\n"
"Language-Team: Albanian <https://translate.pretix.eu/projects/pretix/pretix/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.16\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr "Anglisht"
@@ -1169,19 +1201,6 @@ msgstr ""
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1314,66 +1333,6 @@ msgstr "Po"
msgid "No"
msgstr "Jo"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "e anuluar"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Purchase ticket"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Start time"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "End time"
msgstr ""
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2201,6 +2160,30 @@ msgstr ""
msgid "Position ID"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2592,6 +2575,12 @@ msgstr ""
msgid "Gift card code"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2705,7 +2694,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2871,7 +2860,7 @@ msgid "This combination of credentials is not known to our system."
msgstr ""
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -3794,7 +3783,6 @@ msgstr ""
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4414,8 +4402,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5712,6 +5700,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "e anuluar"
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6492,7 +6497,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6511,7 +6516,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -6980,12 +6985,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7544,6 +7543,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -8669,12 +8673,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10207,11 +10205,11 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py
#: 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 "
@@ -11692,7 +11690,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -12888,7 +12885,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -12912,7 +12909,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13087,22 +13084,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13140,6 +13121,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13367,36 +13355,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
msgid "All sources"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Device actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "User email"
msgstr ""
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14574,7 +14532,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -14688,53 +14645,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "The selected quota does not match the selected subevent."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "There is no sufficient quota available to perform this change."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16440,6 +16350,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -16708,7 +16622,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17126,8 +17039,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17138,6 +17051,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17272,7 +17186,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -17828,22 +17741,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -18004,94 +17901,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18206,6 +18015,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18380,6 +18252,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19278,20 +19188,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19302,10 +19198,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20320,7 +20212,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20407,7 +20298,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -20704,13 +20594,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21123,6 +21006,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22199,7 +22087,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24364,13 +24251,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24378,10 +24263,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgid "Change multiple vouchers"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -24723,8 +24604,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25327,30 +25207,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26408,7 +26264,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -27596,6 +27451,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28230,13 +28090,8 @@ msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
File diff suppressed because it is too large Load Diff
+222 -403
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2026-05-20 10:58+0000\n"
"Last-Translator: Phumraphee Sae-tang <phumraphee@gmail.com>\n"
"Language-Team: Thai <https://translate.pretix.eu/projects/pretix/pretix/th/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 2026.5\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr "อังกฤษ"
@@ -1188,19 +1220,6 @@ msgstr "บัญชีลูกค้า"
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr "ดาวน์โหลดสเปรดชีตของบัญชีลูกค้าที่ลงทะเบียนไว้ทั้งหมด"
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "ลูกค้า"
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1333,72 +1352,6 @@ msgstr "ใช่"
msgid "No"
msgstr "ไม่"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "โหมดทดสอบ"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "ยกเลิกแล้ว"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "ประเภทสมาชิกภาพ"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Purchase time"
msgid "Purchase ticket"
msgstr "เวลาที่สั่งซื้อ"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "วันที่เริ่มต้น"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Start date"
msgid "Start time"
msgstr "วันที่เริ่มต้น"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "วันที่สิ้นสุด"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End: %(time)s"
msgid "End time"
msgstr "สิ้นสุดเมื่อ: %(time)s"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2241,6 +2194,30 @@ msgstr "ยกเลิกแล้ว"
msgid "Position ID"
msgstr "รหัสรายการ"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "วันที่เริ่มต้น"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "วันที่สิ้นสุด"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2637,6 +2614,12 @@ msgstr "ดาวน์โหลดสเปรดชีตของธุรก
msgid "Gift card code"
msgstr "รหัสบัตรของขวัญ"
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "โหมดทดสอบ"
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2750,7 +2733,7 @@ msgstr "หมดอายุแต่มียอดเงินคงเหล
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2918,7 +2901,7 @@ msgid "This combination of credentials is not known to our system."
msgstr "ข้อมูลการเข้าสู่ระบบนี้ไม่ถูกต้อง หรือไม่พบในระบบของเรา"
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr "เพื่อความปลอดภัย โปรดรอ 5 นาทีก่อนลองใหม่อีกครั้ง"
@@ -3873,7 +3856,6 @@ msgstr "อนุญาตให้ข้ามการตรวจสอบโ
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4540,13 +4522,9 @@ msgid "This event is remote or partially remote."
msgstr "กิจกรรมนี้จัดขึ้นในรูปแบบออนไลน์หรือกึ่งออนไลน์"
#: pretix/base/models/event.py
#, fuzzy
#| msgid ""
#| "This will be used to let users know if the event is in a different "
#| "timezone and lets us calculate users local times."
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
"ข้อมูลนี้จะใช้เพื่อแจ้งให้ผู้ใช้ทราบหากกิจกรรมอยู่ในเขตเวลาที่แตกต่างกัน "
"และช่วยให้เราคำนวณเวลาท้องถิ่นของผู้ใช้ได้"
@@ -5959,6 +5937,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr "จำนวนครั้งที่สามารถใช้สมาชิกภาพนี้ในการสั่งซื้อได้"
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "ยกเลิกแล้ว"
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "ประเภทสมาชิกภาพ"
#: pretix/base/models/orders.py
msgid "pending"
msgstr "รอดำเนินการ"
@@ -6780,7 +6775,7 @@ msgstr "รูปแบบสินค้านี้ไม่ได้เป็
msgid "It is currently not possible to create vouchers for add-on products."
msgstr "ขณะนี้ยังไม่รองรับการสร้างเวาเชอร์สำหรับสินค้าเพิ่มเติม (Add-on)"
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6801,7 +6796,7 @@ msgid ""
"usages."
msgstr "จำนวนครั้งที่ใช้งานได้สูงสุดต้องไม่ต่ำกว่าจำนวนครั้งที่ใช้งานได้ต่ำสุด"
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr "หากต้องการให้เวาเชอร์นี้ทำการล็อกโควตา คุณต้องระบุวันที่ที่แน่นอน"
@@ -7306,12 +7301,6 @@ msgstr "บัตรของขวัญนี้ไม่รองรับโ
msgid "This gift card was used in the meantime. Please try again."
msgstr "บัตรของขวัญนี้ถูกใช้งานไปแล้วในระหว่างที่ท่านทำรายการ โปรดลองอีกครั้ง"
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr "รหัสตั๋ว (ข้อมูลบาร์โค้ด)"
@@ -7890,6 +7879,11 @@ msgid ""
"permissions."
msgstr "รวมถึงสิทธิ์ในการมอบสิทธิ์เพิ่มเติมให้ผู้อื่น (รวมถึงตนเอง)"
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "ลูกค้า"
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr "อุปกรณ์"
@@ -9105,16 +9099,6 @@ msgid ""
"card."
msgstr "คุณไม่สามารถเปลี่ยนราคาของรายการที่ใช้ในการออกบัตรของขวัญไปแล้วได้"
#: pretix/base/services/orders.py
#, fuzzy
#| msgid ""
#| "You cannot change the price of a position that has been used to issue a "
#| "gift card."
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr "คุณไม่สามารถเปลี่ยนราคาของรายการที่ใช้ในการออกบัตรของขวัญไปแล้วได้"
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10860,13 +10844,13 @@ msgstr "ข้อมูลติดต่อ"
msgid "We'll show this publicly to allow attendees to contact you."
msgstr "เราจะแสดงข้อมูลนี้ต่อสาธารณะเพื่อให้ผู้เข้างานสามารถติดต่อคุณได้"
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact"
msgid "Contact URL"
msgstr "ติดต่อ"
#: pretix/base/settings.py
#: 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 "
@@ -12518,7 +12502,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -13716,7 +13699,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -13740,7 +13723,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13915,22 +13898,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13968,6 +13935,13 @@ msgstr "เปิดใช้งาน"
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -14197,42 +14171,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr "กำหนดให้ต้องระบุที่อยู่อีเมลแยกตามตั๋ว"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All invoices"
msgid "All sources"
msgstr "ใบแจ้งหนี้ทั้งหมด"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Devices"
msgid "Device actions"
msgstr "อุปกรณ์"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order email"
msgid "User email"
msgstr "อีเมลที่ใช้สั่งซื้อ"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -15414,7 +15352,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -15528,65 +15465,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "You cannot create a voucher that blocks quota as the selected product or "
#| "quota is currently sold out or completely reserved."
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
"คุณไม่สามารถสร้างเวาเชอร์ที่ล็อกโควตาได้ "
"เนื่องจากสินค้าหรือโควตาที่เลือกถูกขายหมดหรือถูกจองไว้เต็มแล้ว"
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The selected product does not allow to select a seat."
msgid "The selected quota does not match the selected subevent."
msgstr "สินค้าที่เลือกไม่สามารถระบุที่นั่งได้"
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr "โควตา \"{}\" มีไม่เพียงพอสำหรับการดำเนินการนี้"
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -17310,6 +17188,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -17578,7 +17460,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17995,8 +17876,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -18007,6 +17888,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -18141,7 +18023,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -18697,22 +18578,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -18875,94 +18740,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -19077,6 +18854,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -19251,6 +19091,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -20148,20 +20026,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -20172,12 +20036,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#, fuzzy
#| msgid "Specific seat"
msgid "Specific object selected"
msgstr "ระบุที่นั่งเฉพาะ"
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -21194,7 +21052,6 @@ msgstr "เลือกได้หลายรายการจากราย
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -21282,7 +21139,6 @@ msgstr "ลบรายการที่เลือก"
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -21579,13 +21435,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -22000,6 +21849,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -23074,7 +22928,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -25257,13 +25110,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -25271,12 +25122,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Choose multiple from a list"
msgid "Change multiple vouchers"
msgstr "เลือกได้หลายรายการจากรายการที่กำหนด"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -25618,8 +25463,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -26222,30 +26066,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -27309,7 +27129,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -28505,6 +28324,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -29139,13 +28963,8 @@ msgstr "URL พื้นฐานสำหรับการเปลี่ย
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
File diff suppressed because it is too large Load Diff
+224 -408
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2025-11-14 06:00+0000\n"
"Last-Translator: Andrii Andriiashyn <andr_andrey@ukr.net>\n"
"Language-Team: Ukrainian <https://translate.pretix.eu/projects/pretix/pretix/"
@@ -20,6 +20,38 @@ msgstr ""
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.14.3\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Магазин вимкнено"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Попередній продаж закінчено"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "Передпродаж не розпочато"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "Продається"
#: pretix/_base_settings.py
msgid "English"
msgstr "Англійська"
@@ -1303,19 +1335,6 @@ msgstr "Рахунки клієнтів"
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "Клієнти"
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr "Членство"
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1449,72 +1468,6 @@ msgstr "Так"
msgid "No"
msgstr "Ні"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Тестовий режим"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Скасовано"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Тип членства"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Purchased"
msgid "Purchase ticket"
msgstr "Придбано"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Дата початку"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Start time from"
msgid "Start time"
msgstr "Початок від"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Дата закінчення"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End: %(time)s"
msgid "End time"
msgstr "Кінець:%(time)s"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
#, fuzzy
#| msgid "Invoices"
@@ -2375,6 +2328,30 @@ msgstr "скасовано"
msgid "Position ID"
msgstr "ID позиції"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "Дата початку"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "Дата закінчення"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2800,6 +2777,12 @@ msgstr ""
msgid "Gift card code"
msgstr "Код подарункового сертифікату"
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "Тестовий режим"
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2913,7 +2896,7 @@ msgstr "Прострочений і з цінністю"
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -3092,7 +3075,7 @@ msgid "This combination of credentials is not known to our system."
msgstr "Ця комбінація облікових даних не відома нашій системі."
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr "З міркувань безпеки зачекайте 5 хвилин, перш ніж повторити спробу."
@@ -4100,7 +4083,6 @@ msgstr "Дозволити обійти квоту"
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4826,8 +4808,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -6372,6 +6354,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr "Кількість разів, коли це членство можна використати для покупки."
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "Скасовано"
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr "Тип членства"
#: pretix/base/models/orders.py
msgid "pending"
msgstr "в очікуванні"
@@ -7239,7 +7238,7 @@ msgstr "Цей варіант не належить до цього продук
msgid "It is currently not possible to create vouchers for add-on products."
msgstr "Наразі неможливо створити ваучери на додаткові продукти."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -7265,7 +7264,7 @@ msgstr ""
"Максимальна кількість на кожне замовлення не може бути нижчою за мінімальну "
"кількість для замовлення."
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -7801,12 +7800,6 @@ msgid "This gift card was used in the meantime. Please try again."
msgstr ""
"Цей подарунковий сертифікат було використано. Будь ласка спробуйте ще раз."
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr "Код квитка (вміст штрих-коду)"
@@ -8439,6 +8432,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr "Клієнти"
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr "Обладнання"
@@ -9841,18 +9839,6 @@ msgstr ""
"Ви не можете змінити ціну позиції, яка була використана для видачі "
"пподарункового сертифікату."
#: pretix/base/services/orders.py
#, fuzzy
#| msgid ""
#| "You cannot change the price of a position that has been used to issue a "
#| "gift card."
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
"Ви не можете змінити ціну позиції, яка була використана для видачі "
"пподарункового сертифікату."
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -11746,13 +11732,13 @@ msgstr ""
"Це буде відображатись для всіх для того, щоб учасники могли з вами "
"сконтактувати."
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Contact:"
msgid "Contact URL"
msgstr "Контакт:"
#: pretix/base/settings.py
#: 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 "
@@ -13833,7 +13819,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -15230,7 +15215,7 @@ msgstr "Всі замовлення"
msgid "Valid orders"
msgstr "Дійсні замовлення"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr "Оплачені (або оплачені скасовані)"
@@ -15257,7 +15242,7 @@ msgstr "Очікуються або оплачені"
msgid "Cancellations"
msgstr "Скасування"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr "Скасовані (повністю)"
@@ -15438,22 +15423,6 @@ msgstr "Купуйте в прямому ефірі та передпродаж
msgid "Inactive"
msgstr "Неактивний"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "Передпродаж не розпочато"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "Попередній продаж закінчено"
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -15491,6 +15460,13 @@ msgstr "Активний"
msgid "not yet activated"
msgstr "не активовано"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr "Членство"
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr "Не має членства"
@@ -15720,42 +15696,6 @@ msgstr "Відкликані пристрої"
msgid "Search email address or subject"
msgstr "Вимагати адреси електронної пошти для кожного квитка"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "Джерело"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All vouchers"
msgid "All sources"
msgstr "Усі сертифікати"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Device status"
msgid "Device actions"
msgstr "Стан пристрою"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order details"
msgid "User email"
msgstr "Деталі замовлення"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr "Усі користувачі"
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr "Додатковий текст нижнього колонтитула"
@@ -17133,7 +17073,6 @@ msgstr "Необов'язково"
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr "змінити"
@@ -17251,65 +17190,6 @@ msgstr ""
"Ваучер відповідає лише прихованим продуктам, але ви не вибрали, щоб він "
"показував їх."
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "You cannot create a voucher that blocks quota as the selected product or "
#| "quota is currently sold out or completely reserved."
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
"Ви не можете створити ваучер, який блокує квоту, оскільки вибраний продукт "
"або квота наразі розпродані або повністю зарезервовані."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The selected product does not allow to select a seat."
msgid "The selected quota does not match the selected subevent."
msgstr "Вибраний продукт не дозволяє вибрати місце."
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr "У квоті \"{}\" недостатньо доступної квоти для виконання операції."
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr "Коди"
@@ -19279,6 +19159,10 @@ msgstr ""
msgid "Account history"
msgstr "Історія аккаунту"
#: pretix/control/navigation.py
msgid "All users"
msgstr "Усі користувачі"
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -19560,7 +19444,6 @@ msgstr "Встановити новий пароль"
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -20012,8 +19895,8 @@ msgstr "Видалити"
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -20024,6 +19907,7 @@ msgstr "Видалити"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -20160,7 +20044,6 @@ msgstr "Позначка часу"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -20888,22 +20771,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr "Перевірка"
@@ -21073,96 +20940,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr "Показати відшкодування, що очікують на розгляд"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr "Показати замовлення із запитом на скасування"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
"Ця подія містить <strong>очікуючі підтвердження</strong>, про які вам слід "
"подбати."
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr "Показати замовлення, які очікують на затвердження"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -21279,6 +21056,71 @@ msgstr ""
msgid "Create QR code"
msgstr "Інший QR код"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr "Показати відшкодування, що очікують на розгляд"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr "Показати замовлення із запитом на скасування"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
"Ця подія містить <strong>очікуючі підтвердження</strong>, про які вам слід "
"подбати."
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr "Показати замовлення, які очікують на затвердження"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -21466,6 +21308,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -22439,20 +22319,6 @@ msgstr ""
msgid "More quotas"
msgstr "Більше квот"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "Магазин вимкнено"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "Продається"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -22463,12 +22329,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#, fuzzy
#| msgid "Specific seat"
msgid "Specific object selected"
msgstr "Конкретне місце"
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -23587,7 +23447,6 @@ msgstr "Змінити кілька пристроїв"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -23678,7 +23537,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -24012,13 +23870,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -24481,6 +24332,11 @@ msgstr "Підтвердити як оплачено"
msgid "Create a refund"
msgstr "Створити відшкодування"
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "Джерело"
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr "Скасувати передачу"
@@ -25685,7 +25541,6 @@ msgstr "Змінити кілька пристроїв"
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -28085,13 +27940,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -28099,12 +27952,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Change multiple devices"
msgid "Change multiple vouchers"
msgstr "Змінити кілька пристроїв"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -28462,8 +28309,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -29104,30 +28950,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -30259,7 +30081,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -31548,6 +31369,11 @@ msgstr ""
msgid "PayPal account"
msgstr "Рахунок PayPal"
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr "Натисніть тут, щоб отримати інструкцію, як отримати необхідні ключі"
@@ -32276,13 +32102,8 @@ msgstr "URL переадресації"
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
@@ -37403,11 +37224,6 @@ msgstr "Доступ до запису"
msgid "Kosovo"
msgstr "Косово"
#, python-brace-format
#~ msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#~ msgstr ""
#~ "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#, fuzzy
#~| msgid "Account information"
#~ msgid "Account invitation"
File diff suppressed because it is too large Load Diff
+222 -367
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -17,6 +17,38 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/_base_settings.py
msgid "English"
msgstr ""
@@ -1167,19 +1199,6 @@ msgstr ""
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1312,66 +1331,6 @@ msgstr ""
msgid "No"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Purchase ticket"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "Start time"
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/customers.py
msgid "End time"
msgstr ""
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
msgctxt "export_category"
msgid "Invoices"
@@ -2199,6 +2158,30 @@ msgstr ""
msgid "Position ID"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2590,6 +2573,12 @@ msgstr ""
msgid "Gift card code"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr ""
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -2703,7 +2692,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -2869,7 +2858,7 @@ msgid "This combination of credentials is not known to our system."
msgstr ""
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -3792,7 +3781,6 @@ msgstr ""
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4410,8 +4398,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -5706,6 +5694,23 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr ""
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr ""
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
msgid "Membership type"
msgstr ""
#: pretix/base/models/orders.py
msgid "pending"
msgstr ""
@@ -6484,7 +6489,7 @@ msgstr ""
msgid "It is currently not possible to create vouchers for add-on products."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"You need to select a specific product or quota if this voucher should "
"reserve tickets."
@@ -6503,7 +6508,7 @@ msgid ""
"usages."
msgstr ""
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr ""
@@ -6972,12 +6977,6 @@ msgstr ""
msgid "This gift card was used in the meantime. Please try again."
msgstr ""
#: pretix/base/payment.py
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr ""
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr ""
@@ -7534,6 +7533,11 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
msgid "Customers"
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr ""
@@ -8659,12 +8663,6 @@ msgid ""
"card."
msgstr ""
#: pretix/base/services/orders.py
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr ""
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -10197,11 +10195,11 @@ msgstr ""
msgid "We'll show this publicly to allow attendees to contact you."
msgstr ""
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
msgid "Contact URL"
msgstr ""
#: pretix/base/settings.py
#: 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 "
@@ -11682,7 +11680,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -12878,7 +12875,7 @@ msgstr ""
msgid "Valid orders"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr ""
@@ -12902,7 +12899,7 @@ msgstr ""
msgid "Cancellations"
msgstr ""
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Canceled (fully)"
msgstr ""
@@ -13077,22 +13074,6 @@ msgstr ""
msgid "Inactive"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
msgid "Date from"
@@ -13130,6 +13111,13 @@ msgstr ""
msgid "not yet activated"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
msgid "Memberships"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Has no memberships"
msgstr ""
@@ -13357,36 +13345,6 @@ msgstr ""
msgid "Search email address or subject"
msgstr ""
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/forms/filter.py
msgid "All sources"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "Device actions"
msgstr ""
#: pretix/control/forms/filter.py
msgid "User email"
msgstr ""
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr ""
@@ -14564,7 +14522,6 @@ msgstr ""
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgctxt "form_bulk"
msgid "change"
msgstr ""
@@ -14678,53 +14635,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "The selected quota does not match the selected subevent."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "There is no sufficient quota available to perform this change."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr ""
@@ -16430,6 +16340,10 @@ msgstr ""
msgid "Account history"
msgstr ""
#: pretix/control/navigation.py
msgid "All users"
msgstr ""
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -16698,7 +16612,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -17116,8 +17029,8 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -17128,6 +17041,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -17262,7 +17176,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -17818,22 +17731,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Verification"
msgstr ""
@@ -17994,94 +17891,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -18196,6 +18005,69 @@ msgstr ""
msgid "Create QR code"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders requesting cancellation"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -18370,6 +18242,44 @@ msgstr ""
msgid "Enable test mode"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -19268,20 +19178,6 @@ msgstr ""
msgid "More quotas"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr ""
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -19292,10 +19188,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
msgid "Specific object selected"
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -20310,7 +20202,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, python-format
msgid "%(number)s selected"
msgstr ""
@@ -20397,7 +20288,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
msgid "Edit selected"
msgstr ""
@@ -20694,13 +20584,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
msgid ""
"Removing or splitting this position will also remove or split all add-ons to "
@@ -21113,6 +20996,11 @@ msgstr ""
msgid "Create a refund"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr ""
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr ""
@@ -22189,7 +22077,6 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr ""
@@ -24346,13 +24233,11 @@ msgid "Copy codes"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -24360,10 +24245,6 @@ msgid ""
"voucher holder if another quota associated with the product is sold out!"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
msgid "Change multiple vouchers"
msgstr ""
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -24703,8 +24584,7 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
"team."
msgstr ""
#: pretix/control/views/auth.py
@@ -25307,30 +25187,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid "The verification code was incorrect, please try again."
msgstr ""
@@ -26388,7 +26244,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -27576,6 +27431,11 @@ msgstr ""
msgid "PayPal account"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr ""
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr ""
@@ -28210,13 +28070,8 @@ msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
-3
View File
@@ -34,7 +34,6 @@ Ceuta
chardet
chargebacks
checkboxes
CNAME
CONFIRM
cronjob
cryptographic
@@ -49,9 +48,7 @@ CZK
datetime
dekodi
deliverability
DKIM
DSS
DMARC
DNS
EEA
eInvoices
+240 -432
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-30 13:52+0000\n"
"POT-Creation-Date: 2026-07-07 09:30+0000\n"
"PO-Revision-Date: 2024-12-25 23:27+0000\n"
"Last-Translator: Aarni Heinonen <vamoosev@gmail.com>\n"
"Language-Team: Chinese (Simplified Han script) <https://translate.pretix.eu/"
@@ -19,6 +19,38 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.9.2\n"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "商城已禁用"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "预售结束"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "预售尚未开始"
#: htmlcov/d_daa1541d0cbf5e2b_dashboards_py.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "正在销售"
#: pretix/_base_settings.py
msgid "English"
msgstr "英语"
@@ -1338,24 +1370,6 @@ msgstr "客户的行为"
msgid "Download a spreadsheet of all currently registered customer accounts."
msgstr ""
#: pretix/base/exporters/customers.py pretix/base/permissions.py
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#, fuzzy
#| msgctxt "refund_source"
#| msgid "Customer"
msgid "Customers"
msgstr "客户"
#: pretix/base/exporters/customers.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
#, fuzzy
#| msgid "Members"
msgid "Memberships"
msgstr "成员"
#: pretix/base/exporters/customers.py pretix/base/models/customers.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
@@ -1503,74 +1517,6 @@ msgstr "是"
msgid "No"
msgstr "否"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "测试模式"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "已被取消"
#: pretix/base/exporters/customers.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#, fuzzy
#| msgid "Members"
msgid "Membership type"
msgstr "成员"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Purchased"
msgid "Purchase ticket"
msgstr "购买"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/forms/questions.py
#: pretix/base/models/memberships.py pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "开始日期"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "Date"
msgid "Start time"
msgstr "日期"
#: pretix/base/exporters/customers.py pretix/base/exporters/orderlist.py
#: pretix/base/exporters/waitinglist.py pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "结束日期"
#: pretix/base/exporters/customers.py
#, fuzzy
#| msgid "End: %(time)s"
msgid "End time"
msgstr "结束:%(time)s"
#: pretix/base/exporters/dekodi.py pretix/base/exporters/invoices.py
#, fuzzy
#| msgid "Invoices"
@@ -2440,6 +2386,30 @@ msgstr "取消的"
msgid "Position ID"
msgstr "位置ID"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/forms/questions.py pretix/base/models/memberships.py
#: pretix/control/forms/rrule.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/search/payments.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "Start date"
msgstr "开始日期"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
#: pretix/plugins/checkinlists/exporters.py
msgid "End date"
msgstr "结束日期"
#: pretix/base/exporters/orderlist.py pretix/base/exporters/waitinglist.py
#: pretix/base/modelimport_orders.py pretix/base/modelimport_vouchers.py
#: pretix/base/models/items.py pretix/base/models/vouchers.py
@@ -2898,6 +2868,12 @@ msgstr ""
msgid "Gift card code"
msgstr "礼品卡代码"
#: pretix/base/exporters/orderlist.py pretix/base/models/memberships.py
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/event/live.html
msgid "Test mode"
msgstr "测试模式"
#: pretix/base/exporters/orderlist.py pretix/base/models/organizer.py
#: pretix/control/forms/event.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/email_setup.html
@@ -3024,7 +3000,7 @@ msgstr ""
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/plugins/reports/exporters.py pretix/plugins/sendmail/forms.py
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html
msgid "Expired"
@@ -3214,7 +3190,7 @@ msgid "This combination of credentials is not known to our system."
msgstr "凭据的这种组合对于我们的系统是未知的。"
#: pretix/base/forms/auth.py pretix/base/forms/user.py
#: pretix/control/views/user.py pretix/presale/forms/customer.py
#: pretix/presale/forms/customer.py
msgid "For security reasons, please wait 5 minutes before you try again."
msgstr ""
@@ -4258,7 +4234,6 @@ msgstr "允许绕过配额"
#: pretix/base/modelimport_vouchers.py pretix/base/models/vouchers.py
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/views/vouchers.py
msgid "Price effect"
@@ -4990,8 +4965,8 @@ msgstr ""
#: pretix/base/models/event.py
msgid ""
"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."
"This will be used to let users know if the event is in a different timezone "
"and lets us calculate users local times."
msgstr ""
#: pretix/base/models/event.py pretix/base/models/organizer.py
@@ -6519,6 +6494,25 @@ msgstr ""
msgid "Number of times this membership can be used in a purchase."
msgstr "此优惠券可兑换的次数。"
#: pretix/base/models/memberships.py pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/orders/fragment_order_status.html
#: pretix/control/templates/pretixcontrol/orders/overview.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/plugins/reports/exporters.py
#: pretix/presale/templates/pretixpresale/event/fragment_order_status.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
msgid "Canceled"
msgstr "已被取消"
#: pretix/base/models/memberships.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_membership.html
#, fuzzy
#| msgid "Members"
msgid "Membership type"
msgstr "成员"
#: pretix/base/models/orders.py
msgid "pending"
msgstr "待处理的"
@@ -7356,7 +7350,7 @@ msgstr "此变量不属于此产品。"
msgid "It is currently not possible to create vouchers for add-on products."
msgstr "目前无法为附加产品创建优惠券。"
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
#, fuzzy
#| msgid "You cannot select a quota and a specific product at the same time."
msgid ""
@@ -7381,7 +7375,7 @@ msgid ""
"usages."
msgstr "每笔订单的最大数量不能低于每笔订单的最小数量。"
#: pretix/base/models/vouchers.py pretix/control/forms/vouchers.py
#: pretix/base/models/vouchers.py
msgid ""
"If you want this voucher to block quota, you need to select a specific date."
msgstr "如果您希望此优惠券阻止配额,则需要选择特定日期。"
@@ -7904,15 +7898,6 @@ msgstr "该活动组织者不接受此礼品卡。"
msgid "This gift card was used in the meantime. Please try again."
msgstr "在此期间,此礼品卡已被使用。请再试一次"
#: pretix/base/payment.py
#, fuzzy
#| msgid ""
#| "This payment provider does not exist or the respective plugin is disabled."
msgid ""
"This payment provider exists for historical purposes only and is no longer "
"usable."
msgstr "此付款提供程序不存在或相应的插件被禁用。"
#: pretix/base/pdf.py
msgid "Ticket code (barcode content)"
msgstr "门票号(条形码内容)"
@@ -8578,6 +8563,14 @@ msgid ""
"permissions."
msgstr ""
#: pretix/base/permissions.py pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#, fuzzy
#| msgctxt "refund_source"
#| msgid "Customer"
msgid "Customers"
msgstr "客户"
#: pretix/base/permissions.py pretix/control/navigation.py
msgid "Devices"
msgstr "设备"
@@ -9889,16 +9882,6 @@ msgid ""
"card."
msgstr "您不能更改已用于发行礼品卡的位置的价格。"
#: pretix/base/services/orders.py
#, fuzzy
#| msgid ""
#| "You cannot change the price of a position that has been used to issue a "
#| "gift card."
msgid ""
"You cannot change the ticket secret of a position that has been used to "
"issue a gift card."
msgstr "您不能更改已用于发行礼品卡的位置的价格。"
#: pretix/base/services/orders.py
#, python-brace-format
msgid ""
@@ -11717,13 +11700,13 @@ msgstr "联系地址"
msgid "We'll show this publicly to allow attendees to contact you."
msgstr "我们将公开展示此内容,以便观众与您联系。"
#: pretix/base/settings.py
#: pretix/base/settings.py pretix/control/forms/event.py
#, fuzzy
#| msgid "Bancontact"
msgid "Contact URL"
msgstr "Bancontact"
#: pretix/base/settings.py
#: 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 "
@@ -13678,7 +13661,6 @@ msgstr "您收到此电子邮件是因为您订购了{event}。"
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/control/templates/pretixcontrol/organizers/customer_membership.html
#: pretix/control/templates/pretixcontrol/organizers/customers.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcard.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
@@ -15097,7 +15079,7 @@ msgstr "所有订单"
msgid "Valid orders"
msgstr "已付款订单"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
msgid "Paid (or canceled with paid fee)"
msgstr "已付(或已付费用取消)"
@@ -15126,7 +15108,7 @@ msgstr "待定或已付款"
msgid "Cancellations"
msgstr "取消"
#: pretix/control/forms/filter.py pretix/plugins/sendmail/forms.py
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Canceled (paid fee)"
msgid "Canceled (fully)"
@@ -15340,22 +15322,6 @@ msgstr "实时购物和预售运行"
msgid "Inactive"
msgstr "待用"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale not started"
msgstr "预售尚未开始"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
msgid "Presale over"
msgstr "预售结束"
#: pretix/control/forms/filter.py
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html
#, fuzzy
@@ -15405,6 +15371,15 @@ msgstr "待用"
msgid "not yet activated"
msgstr "停用"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/organizers/customer.html
#: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html
#: pretix/presale/views/customer.py
#, fuzzy
#| msgid "Members"
msgid "Memberships"
msgstr "成员"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Team memberships"
@@ -15681,42 +15656,6 @@ msgstr "撤销设备访问权限:"
msgid "Search email address or subject"
msgstr "每张票需要电子邮件地址"
#: pretix/control/forms/filter.py
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "来源"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "All vouchers"
msgid "All sources"
msgstr "所有优惠券"
#: pretix/control/forms/filter.py
msgid "Team actions"
msgstr "团队行为"
#: pretix/control/forms/filter.py
msgid "Customer actions"
msgstr "客户的行为"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Devices"
msgid "Device actions"
msgstr "设备"
#: pretix/control/forms/filter.py
#, fuzzy
#| msgid "Order details"
msgid "User email"
msgstr "订单详细信息"
#: pretix/control/forms/filter.py pretix/control/navigation.py
msgid "All users"
msgstr "所有用户"
#: pretix/control/forms/global_settings.py
msgid "Additional footer text"
msgstr "附加页脚文本"
@@ -17116,7 +17055,6 @@ msgstr "可选的"
#: pretix/control/forms/renderers.py
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Change"
msgctxt "form_bulk"
@@ -17238,63 +17176,6 @@ msgid ""
"should show them."
msgstr ""
#: pretix/control/forms/vouchers.py
#, python-format
msgid ""
"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."
msgstr ""
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "You cannot create a voucher that blocks quota as the selected product or "
#| "quota is currently sold out or completely reserved."
msgid ""
"You cannot create a voucher that allows selection of a quota but has no date "
"selected."
msgstr "您无法创建阻止配额的优惠券,因为所选产品或配额当前已售罄或完全保留。"
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid "The selected product does not allow to select a seat."
msgid "The selected quota does not match the selected subevent."
msgstr "所选产品不允许选择座位。"
#: pretix/control/forms/vouchers.py
#, fuzzy
#| msgid ""
#| "There is not enough quota available on quota \"{}\" to perform the "
#| "operation."
msgid "There is no sufficient quota available to perform this change."
msgstr "配额“{}”上没有足够的配额可用来执行操作。"
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the maximum number of usages in bulk is not supported if any of the "
"selected vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgctxt "subevent"
msgid ""
"Changing the date in bulk is not supported if any of the selected vouchers "
"is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"Changing the product to a quota is not supported if any of the selected "
"vouchers is assigned a seat."
msgstr ""
#: pretix/control/forms/vouchers.py
msgid ""
"This change cannot be completed because not all assigned seats of the "
"vouchers are still available"
msgstr ""
#: pretix/control/forms/vouchers.py
msgid "Codes"
msgstr "准则"
@@ -19335,6 +19216,10 @@ msgstr "授权应用程序"
msgid "Account history"
msgstr "账户历史记录"
#: pretix/control/navigation.py
msgid "All users"
msgstr "所有用户"
#: pretix/control/navigation.py
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html
msgid "Admin sessions"
@@ -19631,7 +19516,6 @@ msgstr "设置新密码"
#: pretix/control/templates/pretixcontrol/users/create.html
#: pretix/control/templates/pretixcontrol/users/form.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
#: pretix/control/templates/pretixcontrol/waitinglist/edit.html
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html
@@ -20096,8 +19980,8 @@ msgstr "删除"
#: pretix/control/templates/pretixcontrol/checkin/checkins.html
#: pretix/control/templates/pretixcontrol/checkin/index.html
#: pretix/control/templates/pretixcontrol/checkin/lists.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#: pretix/control/templates/pretixcontrol/items/question.html
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/orders/index.html
@@ -20108,6 +19992,7 @@ msgstr "删除"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/giftcards.html
#: pretix/control/templates/pretixcontrol/organizers/index.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html
#: pretix/control/templates/pretixcontrol/organizers/teams.html
@@ -20262,7 +20147,6 @@ msgstr "时间戳"
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/organizers/outgoing_mails.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#: pretix/control/templates/pretixcontrol/waitinglist/index.html
msgid "Select all results on other pages as well"
msgstr ""
@@ -20947,22 +20831,6 @@ msgstr ""
msgid "We found an SPF record on your domain that includes this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DKIM record should be set up as a CNAME record like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DKIM record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "Your new DMARC record could look like this:"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
msgid "We found a DMARC record on your domain for this system. Great!"
msgstr ""
#: pretix/control/templates/pretixcontrol/email_setup_simple.html
#, fuzzy
#| msgid "Verification failed"
@@ -21139,104 +21007,6 @@ msgid ""
"undeletable data, such as orders not performed in test mode."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr "个人数据已从此日志记录中清除。"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr "此更改由pretix管理员执行。"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_logs.html
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr "检查"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
"此活动包含<strong>超额支付的订单</strong>,例如由于重复付款尝试。您应该检查这"
"些案例,并考虑将超额支付的金额退还给用户。"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show overpaid orders"
msgstr "显示超额支付的订单"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr "此活动包含您应该负责的<strong>待处理的退款</strong>。"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show pending refunds"
msgstr "显示待处理的退款"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
#, fuzzy
#| msgid ""
#| "This event contains <strong>pending refunds</strong> that you should take "
#| "care of."
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr "此活动包含您应该负责的<strong>待处理的退款</strong>。"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
#, fuzzy
#| msgid "Show orders pending approval"
msgid "Show orders requesting cancellation"
msgstr "显示待批准的订单"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr "此活动包含您应该负责的<strong>待批准</strong>。"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show orders pending approval"
msgstr "显示待批准的订单"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
"此活动包含未标记为已付款的<strong>已付款订单</strong>,可能是因为在付款完毕时"
"没有剩余配额。您应该检查这些案例,并考虑退还客户或创建更多空间。"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show affected orders"
msgstr "显示受影响的订单"
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/dashboard_partial_warnings.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/delete.html
msgid ""
"This operation will destroy your event including all configuration, "
@@ -21380,6 +21150,79 @@ msgstr "系统网址:"
msgid "Create QR code"
msgstr "订单代码"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>overpaid orders</strong>, for example due to "
"duplicate payment attempts. You should review the cases and consider "
"refunding the overpaid amount to the user."
msgstr ""
"此活动包含<strong>超额支付的订单</strong>,例如由于重复付款尝试。您应该检查这"
"些案例,并考虑将超额支付的金额退还给用户。"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show overpaid orders"
msgstr "显示超额支付的订单"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending refunds</strong> that you should take "
"care of."
msgstr "此活动包含您应该负责的<strong>待处理的退款</strong>。"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show pending refunds"
msgstr "显示待处理的退款"
#: pretix/control/templates/pretixcontrol/event/index.html
#, fuzzy
#| msgid ""
#| "This event contains <strong>pending refunds</strong> that you should take "
#| "care of."
msgid ""
"This event contains <strong>requested cancellations</strong> that you should "
"take care of."
msgstr "此活动包含您应该负责的<strong>待处理的退款</strong>。"
#: pretix/control/templates/pretixcontrol/event/index.html
#, fuzzy
#| msgid "Show orders pending approval"
msgid "Show orders requesting cancellation"
msgstr "显示待批准的订单"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>pending approvals</strong> that you should take "
"care of."
msgstr "此活动包含您应该负责的<strong>待批准</strong>。"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show orders pending approval"
msgstr "显示待批准的订单"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"This event contains <strong>fully paid orders</strong> that are not marked "
"as paid, probably because no quota was left at the time their payment "
"arrived. You should review the cases and consider either refunding the "
"customer or creating more space."
msgstr ""
"此活动包含未标记为已付款的<strong>已付款订单</strong>,可能是因为在付款完毕时"
"没有剩余配额。您应该检查这些案例,并考虑退还客户或创建更多空间。"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show affected orders"
msgstr "显示受影响的订单"
#: pretix/control/templates/pretixcontrol/event/index.html
msgid ""
"Orders in this event could not be <strong>synced to an external system</"
"strong> as configured."
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
msgid "Show sync problems"
msgstr ""
#: pretix/control/templates/pretixcontrol/event/index.html
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Update comment"
@@ -21582,6 +21425,44 @@ msgstr ""
msgid "Enable test mode"
msgstr "启用测试模式"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "All actions"
msgstr "所有行为"
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Team actions"
msgstr "团队行为"
#: pretix/control/templates/pretixcontrol/event/logs.html
msgid "Customer actions"
msgstr "客户的行为"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "Personal data was cleared from this log entry."
msgstr "个人数据已从此日志记录中清除。"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
msgid "This change was performed by a pretix administrator."
msgstr "此更改由pretix管理员执行。"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/event/logs_embed.html
#: pretix/control/templates/pretixcontrol/includes/logs.html
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
#: pretix/control/templates/pretixcontrol/search/payments.html
msgid "Inspect"
msgstr "检查"
#: pretix/control/templates/pretixcontrol/event/logs.html
#: pretix/control/templates/pretixcontrol/organizers/device_logs.html
#: pretix/control/templates/pretixcontrol/organizers/logs.html
@@ -22652,20 +22533,6 @@ msgstr "没有日期"
msgid "More quotas"
msgstr "更多配额"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/views/dashboards.py
msgid "Shop disabled"
msgstr "商城已禁用"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
#: pretix/control/templates/pretixcontrol/subevents/detail.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/views/dashboards.py
msgid "On sale"
msgstr "正在销售"
#: pretix/control/templates/pretixcontrol/events/index.html
#: pretix/control/templates/pretixcontrol/organizers/detail.html
msgid "Open event dashboard"
@@ -22676,12 +22543,6 @@ msgctxt "typography"
msgid "The quick brown fox jumps over the lazy dog."
msgstr ""
#: pretix/control/templates/pretixcontrol/fragment_log_filter_form.html
#, fuzzy
#| msgid "Specific seat"
msgid "Specific object selected"
msgstr "特殊占位"
#: pretix/control/templates/pretixcontrol/fragment_quota_box.html
#: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html
msgid "Quota:"
@@ -23859,7 +23720,6 @@ msgstr "创建多个日期"
#: pretix/control/templates/pretixcontrol/items/quota_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy, python-format
#| msgid "Enable selected"
msgid "%(number)s selected"
@@ -23957,7 +23817,6 @@ msgstr "删除所选"
#: pretix/control/templates/pretixcontrol/items/quotas.html
#: pretix/control/templates/pretixcontrol/organizers/devices.html
#: pretix/control/templates/pretixcontrol/subevents/index.html
#: pretix/control/templates/pretixcontrol/vouchers/index.html
#, fuzzy
#| msgctxt "subevent"
#| msgid "No date selected."
@@ -24279,13 +24138,6 @@ msgid ""
"the customer account."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#: pretix/control/views/orders.py
msgid ""
"Ticket secrets of order positions that have been used to issue a gift card "
"can not be changed. Only the link will be changed in this case."
msgstr ""
#: pretix/control/templates/pretixcontrol/order/change.html
#, fuzzy
#| msgid ""
@@ -24756,6 +24608,11 @@ msgstr "确认已付款"
msgid "Create a refund"
msgstr "创建退款"
#: pretix/control/templates/pretixcontrol/order/index.html
#: pretix/control/templates/pretixcontrol/orders/refunds.html
msgid "Source"
msgstr "来源"
#: pretix/control/templates/pretixcontrol/order/index.html
msgid "Cancel transfer"
msgstr "取消转移"
@@ -26016,7 +25873,6 @@ msgstr "创建多个日期"
#: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html
#: pretix/control/templates/pretixcontrol/organizers/device_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Advanced settings"
msgstr "高级设置"
@@ -28518,13 +28374,11 @@ msgid "Copy codes"
msgstr "复制代码"
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Voucher details"
msgstr "优惠券详情"
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid ""
"If you choose \"any product\" for a specific quota and choose to reserve "
@@ -28534,12 +28388,6 @@ msgstr ""
"如果您为特定配额选择“任何产品”并选择为上面的此优惠券保留配额,则如果与该产品"
"相关的另一个配额已售完,优惠券持有人仍然无法使用该产品!"
#: pretix/control/templates/pretixcontrol/vouchers/bulk_edit.html
#, fuzzy
#| msgid "Create multiple vouchers"
msgid "Change multiple vouchers"
msgstr "创建多个优惠券"
#: pretix/control/templates/pretixcontrol/vouchers/delete.html
#: pretix/control/templates/pretixcontrol/vouchers/detail.html
msgid "Delete voucher"
@@ -28952,9 +28800,8 @@ msgstr ""
#, python-brace-format
msgid ""
"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."
msgstr ""
"team."
msgstr "您已无法接受\"{}\"邀请,因为您已加入此团队。"
#: pretix/control/views/auth.py
#, python-brace-format
@@ -29624,30 +29471,6 @@ msgid ""
"record."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
msgid ""
"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."
msgstr ""
#: pretix/control/views/mailsetup.py
#, fuzzy
#| msgid "The registration could not be completed. Please try again."
@@ -30887,7 +30710,6 @@ msgid "Macao"
msgstr ""
#: pretix/helpers/daterange.py
#: pretix/presale/templates/pretixpresale/event/fragment_subevent_list.html
#: pretix/presale/templates/pretixpresale/fragment_calendar.html
#: pretix/presale/templates/pretixpresale/fragment_week_calendar.html
#: pretix/presale/templates/pretixpresale/organizers/index.html
@@ -32274,6 +32096,11 @@ msgstr ""
msgid "PayPal account"
msgstr "PayPal帐户"
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
#, python-brace-format
msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
msgstr "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#: pretix/plugins/paypal/payment.py pretix/plugins/paypal2/payment.py
msgid "Click here for a tutorial on how to obtain the required keys"
msgstr "单击此处获取有关如何获取所需密钥的教程"
@@ -33026,13 +32853,8 @@ msgstr "重定向 URIs"
#: pretix/plugins/returnurl/views.py
msgid ""
"Redirection will only be allowed to URLs that start with one of these "
"prefixes. Enter one allowed URL prefix per line. URL prefixes must include a "
"slash after the hostname."
msgstr ""
#: pretix/plugins/returnurl/views.py
msgid ""
"All values must be URLs that include at last one slash after the hostname."
"prefixes. Enter one or more allowed URL prefix per line. URL prefixes must "
"include a slash after the hostname."
msgstr ""
#: pretix/plugins/sendmail/apps.py
@@ -38378,20 +38200,6 @@ msgstr "录入权限"
msgid "Kosovo"
msgstr ""
#~ msgid "All actions"
#~ msgstr "所有行为"
#, python-brace-format
#~ msgid ""
#~ "You cannot accept the invitation for \"{}\" as you already are part of "
#~ "this team."
#~ msgstr "您已无法接受\"{}\"邀请,因为您已加入此团队。"
#, python-brace-format
#~ msgid "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#~ msgstr ""
#~ "<a target=\"_blank\" rel=\"noopener\" href=\"{docs_url}\">{text}</a>"
#, fuzzy
#~| msgid "Account information changed"
#~ msgid "Account invitation"
File diff suppressed because it is too large Load Diff
-2
View File
@@ -677,8 +677,6 @@ class PaypalMethod(BasePaymentProvider):
raise PaymentException(_('We had trouble communicating with PayPal'))
else:
pp_captured_order = response.result
payment.info = json.dumps(pp_captured_order.dict())
payment.save()
try:
ReferencedPayPalObject.objects.get_or_create(order=payment.order, payment=payment, reference=pp_captured_order.id)
+5 -6
View File
@@ -357,13 +357,14 @@ def webhook(request, *args, **kwargs):
if 'resource_type' not in event_json:
return HttpResponse("Invalid body, no resource_type given", status=400)
if event_json['resource_type'] not in ["checkout-order", "refund", "capture"]:
return HttpResponse("Not interested in this resource type", status=200)
# Retrieve the Charge ID of the refunded payment
if event_json['resource_type'] == 'checkout-order':
payloadid = event_json['resource']['id']
elif event_json['resource_type'] == 'refund' or event_json['resource_type'] == 'capture':
if event_json['resource_type'] == 'refund':
payloadid = get_link(event_json['resource']['links'], 'up')['href'].split('/')[-1]
else:
return HttpResponse("Not interested in this resource type", status=200)
payloadid = event_json['resource']['id']
refs = [payloadid]
if event_json['resource'].get('supplementary_data', {}).get('related_ids', {}).get('order_id'):
@@ -423,8 +424,6 @@ def webhook(request, *args, **kwargs):
**event_json,
'_order_state': sale.dict(),
})
payment.info = json.dumps(sale.dict())
payment.save()
if payment.state == OrderPayment.PAYMENT_STATE_CONFIRMED and sale['status'] in ('PARTIALLY_REFUNDED', 'REFUNDED', 'COMPLETED'):
if event_json['resource_type'] == 'refund':
-4
View File
@@ -20,7 +20,6 @@
# <https://www.gnu.org/licenses/>.
#
from django.core.exceptions import ValidationError
from django.db import transaction
from django_filters.rest_framework import DjangoFilterBackend, FilterSet
from django_scopes import scopes_disabled
from rest_framework import viewsets
@@ -119,7 +118,6 @@ class RuleViewSet(viewsets.ModelViewSet):
def get_queryset(self):
return Rule.objects.filter(event=self.request.event)
@transaction.atomic()
def perform_create(self, serializer):
super().perform_create(serializer)
serializer.instance.log_action(
@@ -130,7 +128,6 @@ class RuleViewSet(viewsets.ModelViewSet):
)
@transaction.atomic()
def perform_update(self, serializer):
super().perform_update(serializer)
serializer.instance.log_action(
@@ -140,7 +137,6 @@ class RuleViewSet(viewsets.ModelViewSet):
data=self.request.data
)
@transaction.atomic()
def perform_destroy(self, instance):
instance.log_action(
'pretix.plugins.sendmail.rule.deleted',
+1 -1
View File
@@ -147,7 +147,7 @@ def get_font_stylesheet(font_name, organizer: Organizer = None, event: Event = N
stylesheet = []
font = get_fonts(event)[font_name]
for sty, formats in font.items():
if sty in ['sample', 'pdf_only']:
if sty == 'sample':
continue
stylesheet.append('@font-face { ')
stylesheet.append('font-family: "{}";'.format(font_name))
-1
View File
@@ -795,7 +795,6 @@ class WidgetAPIProductList(EventListMixin, View):
'target_url': eventreverse_absolute(request.event, 'presale:event.index'),
'subevent': self.subevent.pk if self.subevent else None,
'currency': request.event.currency,
'currency_places': settings.CURRENCY_PLACES.get(request.event.currency, 2),
'display_net_prices': request.event.settings.display_net_prices,
'use_native_spinners': request.event.settings.widget_use_native_spinners,
'show_variations_expanded': request.event.settings.show_variations_expanded,
@@ -380,16 +380,16 @@ Vue.component('pricebox', {
},
display_price: function () {
if (this.$root.display_net_prices) {
return floatformat(this.price.net, this.$root.currency_places);
return floatformat(parseFloat(this.price.net), 2);
} else {
return floatformat(this.price.gross, this.$root.currency_places);
return floatformat(parseFloat(this.price.gross), 2);
}
},
display_price_nonlocalized: function () {
if (this.$root.display_net_prices) {
return parseFloat(this.price.net).toFixed(this.$root.currency_places);
return parseFloat(this.price.net).toFixed(2);
} else {
return parseFloat(this.price.gross).toFixed(this.$root.currency_places);
return parseFloat(this.price.gross).toFixed(2);
}
},
suggested_price_nonlocalized: function () {
@@ -398,9 +398,9 @@ Vue.component('pricebox', {
price = this.price;
}
if (this.$root.display_net_prices) {
return parseFloat(price.net).toFixed(this.$root.currency_places);
return parseFloat(price.net).toFixed(2);
} else {
return parseFloat(price.gross).toFixed(this.$root.currency_places);
return parseFloat(price.gross).toFixed(2);
}
},
original_price_aria_label: function () {
@@ -410,7 +410,7 @@ Vue.component('pricebox', {
return django.interpolate(strings.new_price, [this.stripHTML(this.priceline)]);
},
original_line: function () {
return '<span class="pretix-widget-pricebox-currency">' + this.$root.currency + "</span> " + floatformat(this.original_price, this.$root.currency_places);
return '<span class="pretix-widget-pricebox-currency">' + this.$root.currency + "</span> " + floatformat(parseFloat(this.original_price), 2);
},
priceline: function () {
if (this.price.gross === "0.00") {
@@ -645,19 +645,19 @@ Vue.component('item', {
if (this.item.free_price) {
return django.interpolate(strings.price_from, {
'currency': this.$root.currency,
'price': floatformat(this.item.min_price, this.$root.currency_places)
'price': floatformat(this.item.min_price, 2)
}, true).replace(this.$root.currency, '<span class="pretix-widget-pricebox-currency">' + this.$root.currency + '</span>');
} else if (this.item.min_price !== this.item.max_price) {
return '<span class="pretix-widget-pricebox-currency">' + this.$root.currency + "</span> "
+ floatformat(this.item.min_price, this.$root.currency_places) + " "
+ floatformat(this.item.max_price, this.$root.currency_places);
return '<span class="pretix-widget-pricebox-currency">' + this.$root.currency + "</span> "
+ floatformat(this.item.min_price, 2) + " "
+ floatformat(this.item.max_price, 2);
} else if (this.item.min_price === "0.00" && this.item.max_price === "0.00") {
if (this.item.mandatory_priced_addons) {
return "\xA0"; // nbsp, because an empty string would cause the HTML element to collapse
}
return strings.free;
} else {
return '<span class="pretix-widget-pricebox-currency">' + this.$root.currency + "</span> " + floatformat(this.item.min_price, this.$root.currency_places);
return '<span class="pretix-widget-pricebox-currency">' + this.$root.currency + "</span> " + floatformat(this.item.min_price, 2);
}
},
variationsToggleLabel: function () {
@@ -1949,7 +1949,6 @@ var shared_root_methods = {
root.location = data.location;
root.categories = data.items_by_category;
root.currency = data.currency;
root.currency_places = data.currency_places;
root.display_net_prices = data.display_net_prices;
root.voucher_explanation_text = data.voucher_explanation_text;
root.error = data.error;
@@ -1984,7 +1983,6 @@ var shared_root_methods = {
}, function (error) {
root.categories = [];
root.currency = '';
root.currency_places = 2;
if (error.status === 429) {
root.error = strings['loading_error_429'];
root.connection_error = true;
@@ -2341,7 +2339,6 @@ var create_widget = function (element, html_id=null) {
is_button: false,
categories: null,
currency: null,
currency_places: 2,
name: null,
date_range: null,
location: null,
@@ -22,7 +22,6 @@ export interface ProductListResponse {
location?: string
items_by_category?: Category[]
currency?: string
currency_places?: number
display_net_prices?: boolean
voucher_explanation_text?: string
error?: string
@@ -72,7 +72,7 @@ const pricerange = computed(() => {
STRINGS.price_from,
{
currency: store.currency,
price: floatformat(props.item.min_price || '0', store.currency_places),
price: floatformat(props.item.min_price || '0', 2),
},
true
).replace(
@@ -80,14 +80,14 @@ const pricerange = computed(() => {
`<span class="pretix-widget-pricebox-currency">${store.currency}</span>`
)
} else if (props.item.min_price !== props.item.max_price) {
return `<span class="pretix-widget-pricebox-currency">${store.currency}</span> ${floatformat(props.item.min_price || '0', store.currency_places)} ${floatformat(props.item.max_price || '0', store.currency_places)}`
return `<span class="pretix-widget-pricebox-currency">${store.currency}</span> ${floatformat(props.item.min_price || '0', 2)} ${floatformat(props.item.max_price || '0', 2)}`
} else if (props.item.min_price === '0.00' && props.item.max_price === '0.00') {
if (props.item.mandatory_priced_addons) {
return '\xA0' // nbsp, because an empty string would cause the HTML element to collapse
}
return STRINGS.free
} else {
return `<span class="pretix-widget-pricebox-currency">${store.currency}</span> ${floatformat(props.item.min_price || '0', store.currency_places)}`
return `<span class="pretix-widget-pricebox-currency">${store.currency}</span> ${floatformat(props.item.min_price || '0', 2)}`
}
})
@@ -25,9 +25,9 @@ const ariaLabelledby = computed(() => `${store.htmlId}-item-label-${props.itemId
const displayPrice = computed(() => {
if (store.displayNetPrices) {
return floatformat(props.price.net, store.currency_places)
return floatformat(parseFloat(props.price.net), 2)
}
return floatformat(props.price.gross, store.currency_places)
return floatformat(parseFloat(props.price.gross), 2)
})
const displayPriceNonlocalized = computed(() => {
@@ -40,15 +40,15 @@ const displayPriceNonlocalized = computed(() => {
const suggestedPriceNonlocalized = computed(() => {
const price = props.suggestedPrice ?? props.price
if (store.displayNetPrices) {
return parseFloat(price.net).toFixed(store.currency_places)
return parseFloat(price.net).toFixed(2)
}
return parseFloat(price.gross).toFixed(store.currency_places)
return parseFloat(price.gross).toFixed(2)
})
// TODO BAD
const originalLine = computed(() => {
if (!props.originalPrice) return ''
return `<span class="pretix-widget-pricebox-currency">${store.currency}</span> ${floatformat(props.originalPrice, store.currency_places)}`
return `<span class="pretix-widget-pricebox-currency">${store.currency}</span> ${floatformat(parseFloat(props.originalPrice), 2)}`
})
// TODO BAD
@@ -71,7 +71,6 @@ export function createWidgetStore (config: {
frontpageText: null as string | null,
categories: [] as Category[],
currency: '',
currency_places: 2,
displayNetPrices: false,
voucherExplanationText: null as string | null,
displayAddToCart: false,
@@ -300,7 +299,6 @@ export function createWidgetStore (config: {
this.location = data.location ?? null
this.categories = data.items_by_category ?? []
this.currency = data.currency ?? ''
this.currency_places = data.currency_places ?? 2
this.displayNetPrices = data.display_net_prices ?? false
this.voucherExplanationText = data.voucher_explanation_text ?? null
this.error = data.error ?? null
@@ -340,7 +338,6 @@ export function createWidgetStore (config: {
} catch (e) {
this.categories = []
this.currency = ''
this.currency_places = 2
if (e instanceof ApiError && e.status === 429) {
this.error = STRINGS.loading_error_429
} else {
-26
View File
@@ -20,16 +20,13 @@
# <https://www.gnu.org/licenses/>.
#
import base64
from datetime import datetime, timezone
import pytest
from cryptography.hazmat.primitives.asymmetric import padding
from cryptography.hazmat.primitives.serialization import load_pem_private_key
from django_scopes import scopes_disabled
from freezegun import freeze_time
from pretix.base.models import Device
from pretix.base.models.devices import DeviceLastSeen
@pytest.fixture
@@ -389,26 +386,3 @@ def test_device_info_key_sets(device_client, device: Device):
base64.b64decode(ks['diversification_key']),
padding.PKCS1v15()
)
@pytest.mark.django_db
def test_update_last_seen(device_client, device: Device):
assert not DeviceLastSeen.objects.exists()
with freeze_time("2020-01-10T14:30:00+00:00"):
resp = device_client.get('/api/v1/device/info')
assert resp.status_code == 200
assert device.last_seen.last_seen == datetime(2020, 1, 10, 14, 30, tzinfo=timezone.utc)
with freeze_time("2020-01-10T14:30:05+00:00"):
resp = device_client.get('/api/v1/device/info')
assert resp.status_code == 200
# No update, interal too short
device.last_seen.refresh_from_db()
assert device.last_seen.last_seen == datetime(2020, 1, 10, 14, 30, tzinfo=timezone.utc)
with freeze_time("2020-01-10T14:30:30+00:00"):
resp = device_client.get('/api/v1/device/info')
assert resp.status_code == 200
device.last_seen.refresh_from_db()
assert device.last_seen.last_seen == datetime(2020, 1, 10, 14, 30, 30, tzinfo=timezone.utc)
-24
View File
@@ -286,30 +286,6 @@ def test_expiry_dst(event):
assert (localex.hour, localex.minute) == (23, 59)
@pytest.mark.django_db
def test_expiry_per_channel(event):
today = now()
event.settings.set('payment_term_mode', 'minutes')
event.settings.set('payment_term_minutes', 30)
event.settings.set('payment_term_mode_baz', 'minutes')
event.settings.set('payment_term_minutes_baz', 15)
order = _create_order(event, email='dummy@example.org', positions=[],
now_dt=today,
sales_channel=event.organizer.sales_channels.get(identifier="baz"),
payment_requests=[{
"id": "test0",
"provider": "free",
"max_value": None,
"min_value": None,
"multi_use_supported": False,
"info_data": {},
"pprov": FreeOrderProvider(event),
}],
locale='de')[0]
assert (order.expires - today).days == 0
assert (order.expires - today).seconds == 15 * 60
@pytest.mark.django_db
def test_expiring(event):
o1 = Order.objects.create(

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