forked from CGM_Public/pretix_original
Compare commits
12 Commits
release/20
...
event-dash
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
75fd41d6f6 | ||
|
|
20b3f43891 | ||
|
|
0b41aeb7f1 | ||
|
|
8e71102ab2 | ||
|
|
5ebaa63f6f | ||
|
|
e68cea8542 | ||
|
|
db0af4e46f | ||
|
|
b701854127 | ||
|
|
dd5d614da2 | ||
|
|
1c1652e76b | ||
|
|
64838c53f1 | ||
|
|
b47f57cf8e |
@@ -42,6 +42,7 @@ Example::
|
||||
currency=EUR
|
||||
datadir=/data
|
||||
plugins_default=pretix.plugins.sendmail,pretix.plugins.statistics
|
||||
cookie_domain=.pretix.de
|
||||
|
||||
``instance_name``
|
||||
The name of this installation. Default: ``pretix.de``
|
||||
@@ -70,6 +71,9 @@ Example::
|
||||
``auth_backends``
|
||||
A comma-separated list of available auth backends. Defaults to ``pretix.base.auth.NativeAuthBackend``.
|
||||
|
||||
``cookie_domain``
|
||||
The cookie domain to be set. Defaults to ``None``.
|
||||
|
||||
``registration``
|
||||
Enables or disables the registration of new admin users. Defaults to ``off``.
|
||||
|
||||
|
||||
@@ -36,8 +36,6 @@ geo_lon float Longitude of th
|
||||
has_subevents boolean ``true`` if the event series feature is active for this
|
||||
event. Cannot change after event is created.
|
||||
meta_data object Values set for organizer-specific meta data parameters.
|
||||
The allowed keys need to be set up as meta properties
|
||||
in the organizer configuration.
|
||||
plugins list A list of package names of the enabled plugins for this
|
||||
event.
|
||||
seating_plan integer If reserved seating is in use, the ID of a seating
|
||||
|
||||
@@ -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__ = "2024.1.1"
|
||||
__version__ = "2023.11.0.dev0"
|
||||
|
||||
@@ -185,7 +185,6 @@ class PretixPosSecurityProfile(AllowListSecurityProfile):
|
||||
('GET', 'api-v1:order-detail'),
|
||||
('DELETE', 'api-v1:orderposition-detail'),
|
||||
('PATCH', 'api-v1:orderposition-detail'),
|
||||
('GET', 'api-v1:orderposition-list'),
|
||||
('GET', 'api-v1:orderposition-answer'),
|
||||
('GET', 'api-v1:orderposition-pdf_image'),
|
||||
('POST', 'api-v1:order-mark-canceled'),
|
||||
@@ -224,7 +223,6 @@ class PretixPosSecurityProfile(AllowListSecurityProfile):
|
||||
('POST', 'api-v1:checkinrpc.redeem'),
|
||||
('GET', 'api-v1:checkinrpc.search'),
|
||||
('POST', 'api-v1:reusablemedium-lookup'),
|
||||
('GET', 'api-v1:reusablemedium-list'),
|
||||
('POST', 'api-v1:reusablemedium-list'),
|
||||
)
|
||||
|
||||
|
||||
@@ -1,49 +0,0 @@
|
||||
#
|
||||
# This file is part of pretix (Community Edition).
|
||||
#
|
||||
# Copyright (C) 2014-2020 Raphael Michel and contributors
|
||||
# Copyright (C) 2020-2021 rami.io GmbH and contributors
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
|
||||
# Public License as published by the Free Software Foundation in version 3 of the License.
|
||||
#
|
||||
# ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are
|
||||
# applicable granting you additional permissions and placing additional restrictions on your usage of this software.
|
||||
# Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive
|
||||
# this file, see <https://pretix.eu/about/en/license>.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
# details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
from rest_framework import exceptions
|
||||
from rest_framework.authentication import (
|
||||
SessionAuthentication as BaseSessionAuthentication,
|
||||
)
|
||||
|
||||
from pretix.multidomain.middlewares import CsrfViewMiddleware
|
||||
|
||||
|
||||
class CustomCSRFCheck(CsrfViewMiddleware):
|
||||
def _reject(self, request, reason):
|
||||
# Return the failure reason instead of an HttpResponse
|
||||
return reason
|
||||
|
||||
|
||||
class SessionAuthentication(BaseSessionAuthentication):
|
||||
# Override from DRF to user our custom CSRF middleware
|
||||
|
||||
def enforce_csrf(self, request):
|
||||
def dummy_get_response(request): # pragma: no cover
|
||||
return None
|
||||
|
||||
check = CustomCSRFCheck(dummy_get_response)
|
||||
# populates request.META['CSRF_COOKIE'], which is used in process_view()
|
||||
check.process_request(request)
|
||||
reason = check.process_view(request, None, (), {})
|
||||
if reason:
|
||||
# CSRF failed, bail with explicit error message
|
||||
raise exceptions.PermissionDenied('CSRF Failed: %s' % reason)
|
||||
@@ -54,7 +54,7 @@ class IdempotencyMiddleware:
|
||||
|
||||
auth_hash_parts = '{}:{}'.format(
|
||||
request.headers.get('Authorization', ''),
|
||||
request.COOKIES.get('__Host-' + settings.SESSION_COOKIE_NAME, request.COOKIES.get(settings.SESSION_COOKIE_NAME, ''))
|
||||
request.COOKIES.get(settings.SESSION_COOKIE_NAME, '')
|
||||
)
|
||||
auth_hash = sha1(auth_hash_parts.encode()).hexdigest()
|
||||
idempotency_key = request.headers.get('X-Idempotency-Key', '')
|
||||
|
||||
@@ -42,7 +42,7 @@ class IdempotencyQueryView(APIView):
|
||||
idempotency_key = request.GET.get("key")
|
||||
auth_hash_parts = '{}:{}'.format(
|
||||
request.headers.get('Authorization', ''),
|
||||
request.COOKIES.get('__Host-' + settings.SESSION_COOKIE_NAME, request.COOKIES.get(settings.SESSION_COOKIE_NAME, ''))
|
||||
request.COOKIES.get(settings.SESSION_COOKIE_NAME, '')
|
||||
)
|
||||
auth_hash = sha1(auth_hash_parts.encode()).hexdigest()
|
||||
if not idempotency_key:
|
||||
|
||||
@@ -44,25 +44,6 @@ from pretix.multidomain.urlreverse import (
|
||||
_supported = None
|
||||
|
||||
|
||||
def get_supported_language(requested_language, allowed_languages, default_language):
|
||||
language = requested_language
|
||||
if language not in allowed_languages:
|
||||
firstpart = language.split('-')[0]
|
||||
if firstpart in allowed_languages:
|
||||
language = firstpart
|
||||
else:
|
||||
language = default_language
|
||||
for lang in allowed_languages:
|
||||
if lang.startswith(firstpart + '-'):
|
||||
language = lang
|
||||
break
|
||||
if language not in allowed_languages:
|
||||
# This seems redundant, but can happen in the rare edge case that settings.locale is (wrongfully)
|
||||
# not part of settings.locales
|
||||
language = allowed_languages[0]
|
||||
return language
|
||||
|
||||
|
||||
class LocaleMiddleware(MiddlewareMixin):
|
||||
|
||||
"""
|
||||
@@ -84,11 +65,20 @@ class LocaleMiddleware(MiddlewareMixin):
|
||||
settings_holder = None
|
||||
|
||||
if settings_holder:
|
||||
language = get_supported_language(
|
||||
language,
|
||||
settings_holder.settings.locales,
|
||||
settings_holder.settings.locale,
|
||||
)
|
||||
if language not in settings_holder.settings.locales:
|
||||
firstpart = language.split('-')[0]
|
||||
if firstpart in settings_holder.settings.locales:
|
||||
language = firstpart
|
||||
else:
|
||||
language = settings_holder.settings.locale
|
||||
for lang in settings_holder.settings.locales:
|
||||
if lang.startswith(firstpart + '-'):
|
||||
language = lang
|
||||
break
|
||||
if language not in settings_holder.settings.locales:
|
||||
# This seems redundant, but can happen in the rare edge case that settings.locale is (wrongfully)
|
||||
# not part of settings.locales
|
||||
language = settings_holder.settings.locales[0]
|
||||
if '-' not in language and settings_holder.settings.region:
|
||||
language += '-' + settings_holder.settings.region
|
||||
else:
|
||||
|
||||
@@ -1299,23 +1299,10 @@ class CartManager:
|
||||
|
||||
op.position.price_after_voucher = op.price_after_voucher
|
||||
op.position.voucher = op.voucher
|
||||
# op.position.price will be set in recompute_final_prices_and_taxes
|
||||
# op.posiiton.price will be set in recompute_final_prices_and_taxes
|
||||
op.position.save(update_fields=['price_after_voucher', 'voucher'])
|
||||
vouchers_ok[op.voucher] -= 1
|
||||
|
||||
if op.voucher.all_bundles_included or op.voucher.all_addons_included:
|
||||
for a in op.position.addons.all():
|
||||
if a.is_bundled and op.voucher.all_bundles_included and a.price:
|
||||
a.listed_price = Decimal("0.00")
|
||||
a.price_after_voucher = Decimal("0.00")
|
||||
# a.price will be set in recompute_final_prices_and_taxes
|
||||
a.save(update_fields=['listed_price', 'price_after_voucher'])
|
||||
elif not a.is_bundled and op.voucher.all_addons_included and a.price and not a.custom_price_input:
|
||||
a.listed_price = Decimal("0.00")
|
||||
a.price_after_voucher = Decimal("0.00")
|
||||
# op.positon.price will be set in recompute_final_prices_and_taxes
|
||||
a.save(update_fields=['listed_price', 'price_after_voucher'])
|
||||
|
||||
for p in new_cart_positions:
|
||||
if getattr(p, '_answers', None):
|
||||
if not p.pk: # We stored some to the database already before
|
||||
|
||||
@@ -3229,12 +3229,6 @@ Your {organizer} team""")) # noqa: W291
|
||||
label=_('Length of gift card codes'),
|
||||
help_text=_('The system generates by default {}-character long gift card codes. However, if a different length '
|
||||
'is required, it can be set here.'.format(settings.ENTROPY['giftcard_secret'])),
|
||||
min_value=6,
|
||||
max_value=64,
|
||||
),
|
||||
'serializer_kwargs': dict(
|
||||
min_value=6,
|
||||
max_value=64,
|
||||
)
|
||||
},
|
||||
'giftcard_expiry_years': {
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
#
|
||||
# This file is part of pretix (Community Edition).
|
||||
#
|
||||
# Copyright (C) 2014-2020 Raphael Michel and contributors
|
||||
# Copyright (C) 2020-2021 rami.io GmbH and contributors
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
|
||||
# Public License as published by the Free Software Foundation in version 3 of the License.
|
||||
#
|
||||
# ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are
|
||||
# applicable granting you additional permissions and placing additional restrictions on your usage of this software.
|
||||
# Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive
|
||||
# this file, see <https://pretix.eu/about/en/license>.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
# details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
from django import template
|
||||
|
||||
register = template.Library()
|
||||
|
||||
|
||||
@register.filter("iter_weekdays")
|
||||
def iter_weekdays(weeks):
|
||||
for i in range(7):
|
||||
for w in weeks:
|
||||
if i <= len(w) and w[i]:
|
||||
yield w[i]['date']
|
||||
break
|
||||
@@ -219,17 +219,15 @@ class ExtValidationMixin:
|
||||
|
||||
def clean(self, *args, **kwargs):
|
||||
data = super().clean(*args, **kwargs)
|
||||
|
||||
from ...base.models import CachedFile
|
||||
if isinstance(data, (UploadedFile, CachedFile)):
|
||||
filename = data.name if isinstance(data, UploadedFile) else data.filename
|
||||
if isinstance(data, UploadedFile):
|
||||
filename = data.name
|
||||
ext = os.path.splitext(filename)[1]
|
||||
ext = ext.lower()
|
||||
if ext not in self.ext_whitelist:
|
||||
raise forms.ValidationError(_("Filetype not allowed!"))
|
||||
|
||||
if ext in IMAGE_EXTS:
|
||||
validate_uploaded_file_for_valid_image(data if isinstance(data, UploadedFile) else data.file)
|
||||
validate_uploaded_file_for_valid_image(data)
|
||||
|
||||
return data
|
||||
|
||||
@@ -259,12 +257,6 @@ class CachedFileField(ExtFileField):
|
||||
if isinstance(data, File):
|
||||
if hasattr(data, '_uploaded_to'):
|
||||
return data._uploaded_to
|
||||
|
||||
try:
|
||||
self.clean(data)
|
||||
except ValidationError:
|
||||
return None
|
||||
|
||||
cf = CachedFile.objects.create(
|
||||
expires=now() + datetime.timedelta(days=1),
|
||||
date=now(),
|
||||
@@ -276,9 +268,6 @@ class CachedFileField(ExtFileField):
|
||||
cf.save()
|
||||
data._uploaded_to = cf
|
||||
return cf
|
||||
if isinstance(data, CachedFile):
|
||||
return data
|
||||
|
||||
return super().bound_data(data, initial)
|
||||
|
||||
def clean(self, *args, **kwargs):
|
||||
|
||||
@@ -151,6 +151,10 @@ class ForceQuotaConfirmationForm(forms.Form):
|
||||
del self.fields['force']
|
||||
|
||||
|
||||
class ConfirmPaymentForm(ForceQuotaConfirmationForm):
|
||||
pass
|
||||
|
||||
|
||||
class ReactivateOrderForm(ForceQuotaConfirmationForm):
|
||||
pass
|
||||
|
||||
@@ -216,11 +220,10 @@ class DenyForm(forms.Form):
|
||||
)
|
||||
|
||||
|
||||
class MarkPaidForm(ForceQuotaConfirmationForm):
|
||||
class MarkPaidForm(ConfirmPaymentForm):
|
||||
send_email = forms.BooleanField(
|
||||
required=False,
|
||||
label=_('Notify customer by email'),
|
||||
help_text=_('A mail will only be sent if the order is fully paid after this.'),
|
||||
initial=True
|
||||
)
|
||||
amount = forms.DecimalField(
|
||||
@@ -237,10 +240,9 @@ class MarkPaidForm(ForceQuotaConfirmationForm):
|
||||
)
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
payment = kwargs.pop('payment', None)
|
||||
super().__init__(*args, **kwargs)
|
||||
change_decimal_field(self.fields['amount'], self.instance.event.currency)
|
||||
self.fields['amount'].initial = max(Decimal('0.00'), payment.amount if payment else self.instance.pending_sum)
|
||||
self.fields['amount'].initial = max(Decimal('0.00'), self.instance.pending_sum)
|
||||
|
||||
|
||||
class ExporterForm(forms.Form):
|
||||
|
||||
393
src/pretix/control/templates/pretixcontrol/event/new_index.html
Normal file
393
src/pretix/control/templates/pretixcontrol/event/new_index.html
Normal file
@@ -0,0 +1,393 @@
|
||||
{% extends "pretixcontrol/event/base.html" %}
|
||||
{% load i18n %}
|
||||
{% load eventurl %}
|
||||
{% load bootstrap3 %}
|
||||
{% load static %}
|
||||
{% load escapejson %}
|
||||
{% load eventsignal %}
|
||||
{% block title %}{{ request.event.name }}{% endblock %}
|
||||
{% block content %}
|
||||
<div class="row">
|
||||
<div id="header-area" class="col-lg-8">
|
||||
<h1>
|
||||
{{ request.event.name }}
|
||||
<small>
|
||||
{% if request.event.has_subevents %}
|
||||
{% trans "Event series" %}
|
||||
{% else %}
|
||||
{{ request.event.get_date_range_display }}
|
||||
{% endif %}
|
||||
</small>
|
||||
</h1>
|
||||
|
||||
<div class="helper-space-below">
|
||||
{% trans "Shop URL:" %}
|
||||
<span id="shop_url" class="text-muted">{% abseventurl request.event "presale:event.index" %}</span>
|
||||
<button type="button" class="btn btn-default btn-xs btn-clipboard js-only" data-clipboard-target="#shop_url">
|
||||
<i class="fa fa-clipboard" aria-hidden="true"></i>
|
||||
<span class="sr-only">{% trans "Copy to clipboard" %}</span>
|
||||
</button>
|
||||
<div class="btn-group helper-display-inline-block">
|
||||
<button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown" title="{% trans "Create QR code" %}" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="fa fa-qrcode" aria-hidden="true"></i>
|
||||
</button>
|
||||
{% include "pretixcontrol/event/fragment_qr_dropdown.html" with url=0 %}
|
||||
</div>
|
||||
<br>
|
||||
<span id="shop_state" class="shop_state">
|
||||
{{ shop_state.content|safe }}
|
||||
<a href="{{ shop_state.url }}">
|
||||
<button type="button" class="btn btn-default btn-xs btn-wrench js-only" href="{{ shop_state.url }}">
|
||||
<i class="fa fa-wrench" aria-hidden="true"></i>
|
||||
<span class="sr-only">{% trans "Change shop state" %}</span>
|
||||
</button>
|
||||
</a>
|
||||
</span>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Comments ----------------------------------------------------------------------------------------------------->
|
||||
<div class="event-comment col-lg-4">
|
||||
{% trans "Internal comment" %}
|
||||
<form class="form" method="post"
|
||||
action="{% url "control:event.comment" event=request.event.slug organizer=request.event.organizer.slug %}">
|
||||
{% csrf_token %}
|
||||
<div class="row">
|
||||
{% bootstrap_field comment_form.comment layout="horizontal" show_help=True show_label=False horizontal_field_class="col-md-12" %}
|
||||
</div>
|
||||
{% if not comment_form.readonly %}
|
||||
<p class="text-right flip">
|
||||
<button class="btn btn-default">
|
||||
{% trans "Update comment" %}
|
||||
</button>
|
||||
</p>
|
||||
{% endif %}
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Comments ----------------------------------------------------------------------------------------------------->
|
||||
|
||||
<!-- Warnings ----------------------------------------------------------------------------------------------------->
|
||||
<div class="row-form-errors">
|
||||
{% if has_overpaid_orders %}
|
||||
<div class="alert alert-warning">
|
||||
{% blocktrans trimmed %}
|
||||
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.
|
||||
{% endblocktrans %}
|
||||
<a href="{% url "control:event.orders" event=request.event.slug organizer=request.event.organizer.slug %}?status=overpaid"
|
||||
class="btn btn-primary">{% trans "Show overpaid orders" %}</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if has_pending_refunds %}
|
||||
<div class="alert alert-warning">
|
||||
{% blocktrans trimmed %}
|
||||
This event contains <strong>pending refunds</strong> that you should take care of.
|
||||
{% endblocktrans %}
|
||||
<a href="{% url "control:event.orders.refunds" event=request.event.slug organizer=request.event.organizer.slug %}"
|
||||
class="btn btn-primary">{% trans "Show pending refunds" %}</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if has_cancellation_requests %}
|
||||
<div class="alert alert-warning">
|
||||
{% blocktrans trimmed %}
|
||||
This event contains <strong>requested cancellations</strong> that you should take care of.
|
||||
{% endblocktrans %}
|
||||
<a href="{% url "control:event.orders" event=request.event.slug organizer=request.event.organizer.slug %}?status=rc"
|
||||
class="btn btn-primary">{% trans "Show orders requesting cancellation" %}</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if has_pending_approvals %}
|
||||
<div class="alert alert-warning">
|
||||
{% blocktrans trimmed %}
|
||||
This event contains <strong>pending approvals</strong> that you should take care of.
|
||||
{% endblocktrans %}
|
||||
<a href="{% url "control:event.orders" event=request.event.slug organizer=request.event.organizer.slug %}?status=pa"
|
||||
class="btn btn-primary">{% trans "Show orders pending approval" %}</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if has_pending_orders_with_full_payment %}
|
||||
<div class="alert alert-warning">
|
||||
{% blocktrans trimmed %}
|
||||
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.
|
||||
{% endblocktrans %}
|
||||
<a href="{% url "control:event.orders" event=request.event.slug organizer=request.event.organizer.slug %}?status=pendingpaid"
|
||||
class="btn btn-primary">{% trans "Show affected orders" %}</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
<!-- Warnings ----------------------------------------------------------------------------------------------------->
|
||||
|
||||
{% eventsignal request.event "pretix.control.signals.event_dashboard_top" request=request %}
|
||||
<!-- Timeline ----------------------------------------------------------------------------------------------------->
|
||||
{% if request.event.has_subevents %}
|
||||
<form class="form-inline helper-display-inline" action="" method="get">
|
||||
{% include "pretixcontrol/event/fragment_subevent_choice_simple.html" %}
|
||||
</form>
|
||||
{% endif %}
|
||||
{% if not request.event.has_subevents or subevent %}
|
||||
{% include "pretixcontrol/event/fragment_timeline.html" %}
|
||||
{% endif %}
|
||||
<!-- Timeline ----------------------------------------------------------------------------------------------------->
|
||||
<!-- Big numbers ---------------------------------------------------------------------------------------------->
|
||||
<div class="dashboard">
|
||||
<div class="widget-container widget-small event-dashboard">
|
||||
<a href="{{ attendees_paid_ordered.url }}" class="widget">
|
||||
{{ attendees_paid_ordered.content|safe }}
|
||||
</a>
|
||||
</div>
|
||||
<div class="widget-container widget-small event-dashboard">
|
||||
<a href="{{ total_revenue.url }}" class="widget">
|
||||
{{ total_revenue.content|safe }}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Big numbers -------------------------------------------------------------------------------------------------->
|
||||
<!-- Diagram ------------------------------------------------------------------------------------------------------>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">{% trans "Revenue over time" %}</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div id="rev_chart" class="chart"></div>
|
||||
{% if request.GET.subevent %}
|
||||
<div class="alert alert-info">
|
||||
{% blocktrans trimmed context "subevent" %}
|
||||
If you select a single date, payment method fees will not be listed here as it might not be clear which
|
||||
date they belong to.
|
||||
{% endblocktrans %}
|
||||
</div>
|
||||
{% endif %}
|
||||
<p class="help-block">
|
||||
<small>
|
||||
{% blocktrans trimmed %}
|
||||
Only fully paid orders are counted.
|
||||
Orders paid in multiple payments are shown with the date of their last payment.
|
||||
{% endblocktrans %}
|
||||
</small>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Diagram ------------------------------------------------------------------------------------------------------>
|
||||
<!-- Check-Ins ---------------------------------------------------------------------------------------------------->
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">{% trans "Check-In" %}</h3>
|
||||
</div>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-hover table-quotas">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
{% trans "Name" %}
|
||||
</th>
|
||||
<th>{% trans "Checked in" %}</th>
|
||||
{% if request.event.has_subevents %}
|
||||
<th>
|
||||
{% trans "Date" context "subevent" %}
|
||||
</th>
|
||||
{% endif %}
|
||||
<th class="iconcol">{% trans "Automated check-in" %}</th>
|
||||
<th>{% trans "Products" %}</th>
|
||||
<th class="action-col-2"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for cl in checkinlists %}
|
||||
<tr>
|
||||
<td>
|
||||
<strong><a
|
||||
href="{% url "control:event.orders.checkinlists.show" organizer=request.event.organizer.slug event=request.event.slug list=cl.id %}">{{ cl.name }}</a></strong>
|
||||
</td>
|
||||
<td>
|
||||
<div class="quotabox availability">
|
||||
<div class="progress">
|
||||
<div class="progress-bar progress-bar-success progress-bar-{{ cl.percent }}">
|
||||
</div>
|
||||
</div>
|
||||
<div class="numbers">
|
||||
{{ cl.checkin_count|default_if_none:"0" }} /
|
||||
{{ cl.position_count|default_if_none:"0" }}
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
{% if request.event.has_subevents %}
|
||||
{% if cl.subevent %}
|
||||
<td>
|
||||
{{ cl.subevent.name }} – {{ cl.subevent.get_date_range_display }}
|
||||
{{ cl.subevent.date_from|date:"TIME_FORMAT" }}
|
||||
</td>
|
||||
{% else %}
|
||||
<td>
|
||||
<em>{% trans "All" %}</em>
|
||||
</td>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
<td>
|
||||
{% for channel in cl.auto_checkin_sales_channels %}
|
||||
<span class="fa fa-{{ channel.icon }} text-muted"
|
||||
data-toggle="tooltip" title="{% trans channel.verbose_name %}"></span>
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td>
|
||||
{% if cl.all_products %}
|
||||
<em>{% trans "All" %}</em>
|
||||
{% else %}
|
||||
<ul>
|
||||
{% for item in cl.limit_products.all %}
|
||||
<li>
|
||||
<a href="{% url "control:event.item" organizer=request.event.organizer.slug event=request.event.slug item=item.id %}">{{ item }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td class="text-right flip">
|
||||
<a href="{% url "control:event.orders.checkinlists.show" organizer=request.event.organizer.slug event=request.event.slug list=cl.id %}"
|
||||
class="btn btn-default btn-sm"><i class="fa fa-eye"></i></a>
|
||||
{% if "can_change_event_settings" in request.eventpermset %}
|
||||
<a href="{% url "control:event.orders.checkinlists.add" organizer=request.event.organizer.slug event=request.event.slug %}?copy_from={{ cl.id }}"
|
||||
class="btn btn-sm btn-default" title="{% trans "Clone" %}" data-toggle="tooltip">
|
||||
<span class="fa fa-copy"></span>
|
||||
</a>
|
||||
<a href="{% url "control:event.orders.checkinlists.simulator" organizer=request.event.organizer.slug event=request.event.slug list=cl.id %}"
|
||||
title="{% trans "Check-in simulator" %}" data-toggle="tooltip"
|
||||
class="btn btn-default btn-sm"><i class="fa fa-flask"></i></a>
|
||||
<a href="{% url "control:event.orders.checkinlists.edit" organizer=request.event.organizer.slug event=request.event.slug list=cl.id %}"
|
||||
class="btn btn-default btn-sm"><i class="fa fa-wrench"></i></a>
|
||||
<a href="{% url "control:event.orders.checkinlists.delete" organizer=request.event.organizer.slug event=request.event.slug list=cl.id %}"
|
||||
class="btn btn-danger btn-sm"><i class="fa fa-trash"></i></a>
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Check-Ins ---------------------------------------------------------------------------------------------------->
|
||||
<!-- Quotas ------------------------------------------------------------------------------------------------------->
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">{% trans "Quotas" %}</h3>
|
||||
</div>
|
||||
<div class="table-responsive table-quotas">
|
||||
<table class="table table-hover table-quotas">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
{% trans "Name" %}
|
||||
</th>
|
||||
<th>
|
||||
{% trans "Begin" %}
|
||||
<a href="? url_replace request 'filter-ordering' '-date_from' %}"><i class="fa fa-caret-down"></i></a>
|
||||
<a href="? url_replace request 'filter-ordering' 'date_from' %}"><i class="fa fa-caret-up"></i></a>
|
||||
</th>
|
||||
<th>
|
||||
{% trans "Paid tickets per quota" %}
|
||||
</th>
|
||||
<th>
|
||||
{% trans "Capacity left" %}
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% if request.event.has_subevents and not subevent %}
|
||||
{% for s in subevents %}
|
||||
<tr>
|
||||
<td>
|
||||
<strong><a href="{% url "control:event.subevent" organizer=request.event.organizer.slug event=request.event.slug subevent=s.id %}?returnto={{ request.GET.urlencode|urlencode }}">
|
||||
{{ s.name }}</a></strong><br>
|
||||
<small class="text-muted">
|
||||
#{{ s.pk }}
|
||||
</small>
|
||||
</td>
|
||||
<td>
|
||||
{{ s.get_date_from_display }}<br>
|
||||
<span class="text-muted">
|
||||
{{ s.date_from|date:"l" }}
|
||||
</span>
|
||||
</td>
|
||||
<td>
|
||||
{% for q in s.first_quotas|slice:":3" %}
|
||||
{% include "pretixcontrol/fragment_quota_box_paid.html" with quota=q %}
|
||||
{% endfor %}
|
||||
{% if s.first_quotas|length > 3 %}
|
||||
<a href="{% url "control:event.items.quotas" organizer=request.event.organizer.slug event=request.event.slug %}?subevent={{ s.id }}"
|
||||
class="quotabox-more" data-toggle="tooltip" title="{% trans "More quotas" %}"
|
||||
data-placement="top">
|
||||
···
|
||||
</a>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
{% for q in s.first_quotas %}
|
||||
{% include "pretixcontrol/items/fragment_quota_availability.html" with availability=q.cached_avail closed=q.closed %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% if subevent %}
|
||||
<tr>
|
||||
<td>
|
||||
<strong><a href="{% url "control:event.subevent" organizer=request.event.organizer.slug event=request.event.slug subevent=subevent.id %}?returnto={{ request.GET.urlencode|urlencode }}">
|
||||
{{ subevent.name }}</a></strong><br>
|
||||
<small class="text-muted">
|
||||
#{{ subevent.pk }}
|
||||
</small>
|
||||
</td>
|
||||
<td>
|
||||
{{ subevent.get_date_from_display }}<br>
|
||||
<span class="text-muted">
|
||||
{{ subevent.date_from|date:"l" }}
|
||||
</span>
|
||||
</td>
|
||||
<td>
|
||||
{% for q in subevent.first_quotas|slice:":3" %}
|
||||
{% include "pretixcontrol/fragment_quota_box_paid.html" with quota=q %}
|
||||
{% endfor %}
|
||||
{% if subevent.first_quotas|length > 3 %}
|
||||
<a href="{% url "control:event.items.quotas" organizer=request.event.organizer.slug event=request.event.slug %}?subevent={{ subevent.id }}"
|
||||
class="quotabox-more" data-toggle="tooltip" title="{% trans "More quotas" %}"
|
||||
data-placement="top">
|
||||
···
|
||||
</a>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
{% for q in subevent.first_quotas %}
|
||||
{% include "pretixcontrol/items/fragment_quota_availability.html" with availability=q.cached_avail closed=q.closed %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Quotas ------------------------------------------------------------------------------------------------------->
|
||||
<!-- Logs --------------------------------------------------------------------------------------------------------->
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">
|
||||
{% trans "Event logs" %}
|
||||
</h3>
|
||||
</div>
|
||||
<ul class="list-group" id="logs_target">
|
||||
<div class="logs-lazy-loading">
|
||||
<span class="fa fa-cog fa-4x"></span>
|
||||
</div>
|
||||
</ul>
|
||||
<div class="panel-footer">
|
||||
<a href="{% url "control:event.log" event=request.event.slug organizer=request.event.organizer.slug %}">
|
||||
{% trans "Show more logs" %}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Logs --------------------------------------------------------------------------------------------------------->
|
||||
<script type="application/json" id="rev-data">{{ rev_data|escapejson }}</script>
|
||||
<script type="application/text" id="currency">{{ request.event.currency }}</script>
|
||||
{% endblock %}
|
||||
@@ -238,7 +238,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
<fieldset id="tab-item-additional-settings">
|
||||
<fieldset>
|
||||
<legend>{% trans "Additional settings" %}</legend>
|
||||
{% bootstrap_field form.issue_giftcard layout="control" %}
|
||||
{% if form.grant_membership_type %}
|
||||
|
||||
@@ -21,13 +21,7 @@
|
||||
Do you really want to mark this payment as complete?
|
||||
{% endblocktrans %}</p>
|
||||
<input type="hidden" name="status" value="p" />
|
||||
{% bootstrap_form_errors form %}
|
||||
{% bootstrap_field form.amount layout='horizontal' %}
|
||||
{% bootstrap_field form.payment_date layout='horizontal' %}
|
||||
{% bootstrap_field form.send_email layout='horizontal' %}
|
||||
{% if form.force %}
|
||||
{% bootstrap_field form.force layout='horizontal' horizontal_label_class='sr-only' horizontal_field_class='col-md-12' %}
|
||||
{% endif %}
|
||||
{% bootstrap_form form layout='horizontal' horizontal_label_class='sr-only' horizontal_field_class='col-md-12' %}
|
||||
<div class="form-group submit-group">
|
||||
<a class="btn btn-default btn-lg"
|
||||
href="{% url "control:event.order" event=request.event.slug organizer=request.event.organizer.slug code=order.code %}">
|
||||
|
||||
@@ -157,7 +157,7 @@
|
||||
{% bootstrap_field sform.giftcard_expiry_years layout="control" %}
|
||||
{% bootstrap_field sform.giftcard_length layout="control" %}
|
||||
</fieldset>
|
||||
<fieldset id="tab-organizer-privacy">
|
||||
<fieldset>
|
||||
<legend>{% trans "Privacy" %}</legend>
|
||||
{% bootstrap_field sform.privacy_url layout="control" %}
|
||||
<div class="alert alert-legal">
|
||||
|
||||
@@ -26,11 +26,7 @@
|
||||
{% for u in team.members.all %}
|
||||
<tr>
|
||||
<td>
|
||||
{% if request.user.is_staff and staff_session %}
|
||||
<strong><a href="{% url "control:users.edit" id=u.pk %}">{{ u.email }}</a></strong>
|
||||
{% else %}
|
||||
{{ u.email }}
|
||||
{% endif %}
|
||||
{{ u.email }}
|
||||
{% if u.require_2fa %}
|
||||
<span class="fa fa-shield text-success" data-toggle="tooltip"
|
||||
title="{% trans "Two-factor authentication enabled" %}">
|
||||
|
||||
@@ -38,8 +38,8 @@ from django.views.generic.base import RedirectView
|
||||
|
||||
from pretix.control.views import (
|
||||
auth, checkin, dashboards, discounts, event, geo, global_settings, item,
|
||||
main, oauth, orderimport, orders, organizer, pdf, search, shredder,
|
||||
subevents, typeahead, user, users, vouchers, waitinglist,
|
||||
main, new_dashboard, oauth, orderimport, orders, organizer, pdf, search,
|
||||
shredder, subevents, typeahead, user, users, vouchers, waitinglist,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
@@ -239,7 +239,7 @@ urlpatterns = [
|
||||
re_path(r'^search/orders/$', search.OrderSearch.as_view(), name='search.orders'),
|
||||
re_path(r'^search/payments/$', search.PaymentSearch.as_view(), name='search.payments'),
|
||||
re_path(r'^event/(?P<organizer>[^/]+)/(?P<event>[^/]+)/', include([
|
||||
re_path(r'^$', dashboards.event_index, name='event.index'),
|
||||
re_path(r'^$', new_dashboard.IndexView.as_view(), name='event.index'),
|
||||
re_path(r'^qrcode.(?P<filetype>(png|jpeg|gif|svg))$', event.EventQRCode.as_view(), name='event.qrcode'),
|
||||
re_path(r'^widgets.json$', dashboards.event_index_widgets_lazy, name='event.index.widgets'),
|
||||
re_path(r'^logs/embed$', dashboards.event_index_log_lazy, name='event.index.logs'),
|
||||
|
||||
266
src/pretix/control/views/new_dashboard.py
Normal file
266
src/pretix/control/views/new_dashboard.py
Normal file
@@ -0,0 +1,266 @@
|
||||
import datetime
|
||||
import json
|
||||
from decimal import Decimal
|
||||
|
||||
import dateutil
|
||||
from django.db.models import (
|
||||
DateTimeField, F, Max, OuterRef, Prefetch, Q, Subquery, Sum,
|
||||
)
|
||||
from django.db.models.functions import Coalesce
|
||||
from django.urls import reverse
|
||||
from django.utils import formats, timezone
|
||||
from django.utils.timezone import now
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
from django.views.generic import TemplateView
|
||||
|
||||
from pretix.base.channels import get_all_sales_channels
|
||||
from pretix.base.decimal import round_decimal
|
||||
from pretix.base.models import SubEvent
|
||||
from pretix.base.models.orders import (
|
||||
CancellationRequest, Order, OrderPayment, OrderPosition, OrderRefund,
|
||||
)
|
||||
from pretix.base.services.quotas import QuotaAvailability
|
||||
from pretix.base.timeline import timeline_for_event
|
||||
from pretix.control.forms.event import CommentForm
|
||||
from pretix.control.permissions import EventPermissionRequiredMixin
|
||||
from pretix.control.views import ChartContainingView
|
||||
|
||||
NUM_WIDGET = str('<div class="numwidget">'
|
||||
'<span class="num">{num}</span>'
|
||||
'<span class="text"><span class="label-primary">{text}</span></span>'
|
||||
'<span class="text-add">{text_add}</span></div>')
|
||||
|
||||
|
||||
class IndexView(EventPermissionRequiredMixin, ChartContainingView, TemplateView):
|
||||
template_name = 'pretixcontrol/event/new_index.html'
|
||||
permission = 'can_view_orders'
|
||||
|
||||
def get_context_data(self, **kwargs):
|
||||
subevent = None
|
||||
if self.request.GET.get("subevent", "") != "" and self.request.event.has_subevents:
|
||||
i = self.request.GET.get("subevent", "")
|
||||
try:
|
||||
subevent = self.request.event.subevents.get(pk=i)
|
||||
except SubEvent.DoesNotExist:
|
||||
pass
|
||||
|
||||
can_view_orders = self.request.user.has_event_permission(self.request.organizer, self.request.event,
|
||||
'can_view_orders',
|
||||
request=self.request)
|
||||
# can_change_event_settings = self.request.user.has_event_permission(self.request.organizer, self.request.event,
|
||||
# 'can_change_event_settings',
|
||||
# request=self.request)
|
||||
|
||||
ctx = {
|
||||
'subevent': subevent,
|
||||
'comment_form': CommentForm(initial={'comment': self.request.event.comment},
|
||||
readonly=True), # not can_change_event_settings),
|
||||
}
|
||||
|
||||
if subevent:
|
||||
opqs = OrderPosition.objects.filter(subevent=subevent)
|
||||
else:
|
||||
opqs = OrderPosition.objects
|
||||
|
||||
ctx['shop_state'] = {
|
||||
'display_size': 'small',
|
||||
'priority': 1000,
|
||||
'content': '<span class="{cls}">{t1} {state} <span class="fa {icon}"></span></span>'.format(
|
||||
t1=_('Your ticket shop is'),
|
||||
state=_('live') if self.request.event.live and not self.request.event.testmode else (
|
||||
_('live and in test mode') if self.request.event.live else (
|
||||
_('not yet public') if not self.request.event.testmode else (
|
||||
_('in private test mode')
|
||||
)
|
||||
)
|
||||
),
|
||||
icon='fa-check-circle' if self.request.event.live and not self.request.event.testmode else (
|
||||
'fa-warning' if self.request.event.live else (
|
||||
'fa-times-circle' if not self.request.event.testmode else (
|
||||
'fa-lock'
|
||||
)
|
||||
)
|
||||
),
|
||||
cls='live' if self.request.event.live else 'off'
|
||||
),
|
||||
'url': reverse('control:event.live', kwargs={
|
||||
'event': self.request.event.slug,
|
||||
'organizer': self.request.event.organizer.slug
|
||||
})
|
||||
}
|
||||
|
||||
qs = self.request.event.checkin_lists.filter(subevent=subevent)
|
||||
sales_channels = get_all_sales_channels()
|
||||
for cl in qs:
|
||||
if cl.subevent:
|
||||
cl.subevent.event = self.request.event # re-use same event object to make sure settings are cached
|
||||
cl.auto_checkin_sales_channels = [sales_channels[channel] for channel in cl.auto_checkin_sales_channels]
|
||||
ctx['checkinlists'] = qs
|
||||
|
||||
qs = self.request.event.subevents
|
||||
if list:
|
||||
qs = qs.prefetch_related(
|
||||
Prefetch('quotas',
|
||||
queryset=self.request.event.quotas.annotate(s=Coalesce(F('size'), 0)).order_by('-s'),
|
||||
to_attr='first_quotas')
|
||||
)
|
||||
ctx['subevents'] = qs
|
||||
quotas = []
|
||||
for s in ctx['subevents']:
|
||||
s.first_quotas = s.first_quotas[:4]
|
||||
quotas += list(s.first_quotas)
|
||||
|
||||
qa = QuotaAvailability(early_out=False)
|
||||
for q in quotas:
|
||||
qa.queue(q)
|
||||
qa.compute()
|
||||
|
||||
for q in quotas:
|
||||
q.cached_avail = qa.results[q]
|
||||
q.cached_availability_paid_orders = qa.count_paid_orders.get(q, 0)
|
||||
if q.size is not None:
|
||||
q.percent_paid = min(
|
||||
100,
|
||||
round(q.cached_availability_paid_orders / q.size * 100) if q.size > 0 else 100
|
||||
)
|
||||
|
||||
tickc = opqs.filter(
|
||||
order__event=self.request.event, item__admission=True,
|
||||
order__status__in=(Order.STATUS_PAID, Order.STATUS_PENDING),
|
||||
).count()
|
||||
paidc = opqs.filter(
|
||||
order__event=self.request.event, item__admission=True,
|
||||
order__status=Order.STATUS_PAID,
|
||||
).count()
|
||||
ctx['attendees_paid_ordered'] = {
|
||||
'content': NUM_WIDGET.format(
|
||||
num=f'{tickc}',
|
||||
text=_('<span class="fa fa-user icon"></span> Attendees'),
|
||||
text_add=f'{paidc} paid, {tickc - paidc} pending'),
|
||||
'priority': 100,
|
||||
'url': reverse('control:event.orders.overview', kwargs={
|
||||
'event': self.request.event.slug,
|
||||
'organizer': self.request.event.organizer.slug
|
||||
}) + ('?subevent={}'.format(subevent.pk) if subevent else '')
|
||||
}
|
||||
|
||||
if subevent:
|
||||
rev = opqs.filter(
|
||||
order__event=self.request.event, order__status=Order.STATUS_PAID
|
||||
).aggregate(
|
||||
sum=Sum('price')
|
||||
)['sum'] or Decimal('0.00')
|
||||
else:
|
||||
rev = Order.objects.filter(
|
||||
event=self.request.event,
|
||||
status=Order.STATUS_PAID
|
||||
).aggregate(sum=Sum('total'))['sum'] or Decimal('0.00')
|
||||
|
||||
ctx['total_revenue'] = {
|
||||
'content': NUM_WIDGET.format(
|
||||
num='<span class="icon">{currency}</span> {amount}'.format(
|
||||
currency=self.request.event.currency,
|
||||
amount=formats.localize(round_decimal(rev, self.request.event.currency))
|
||||
),
|
||||
text=_('Total revenue'),
|
||||
text_add=''
|
||||
),
|
||||
'priority': 100,
|
||||
'url': reverse('control:event.orders.overview', kwargs={
|
||||
'event': self.request.event.slug,
|
||||
'organizer': self.request.event.organizer.slug
|
||||
}) + ('?subevent={}'.format(subevent.pk) if subevent else '')
|
||||
}
|
||||
|
||||
cache = self.request.event.cache
|
||||
ckey = str(subevent.pk) if subevent else 'all'
|
||||
tz = timezone.get_current_timezone()
|
||||
op_date = OrderPayment.objects.filter(
|
||||
order=OuterRef('order'),
|
||||
state__in=(OrderPayment.PAYMENT_STATE_CONFIRMED, OrderPayment.PAYMENT_STATE_REFUNDED),
|
||||
payment_date__isnull=False
|
||||
).values('order').annotate(
|
||||
m=Max('payment_date')
|
||||
).values(
|
||||
'm'
|
||||
).order_by()
|
||||
p_date = OrderPayment.objects.filter(
|
||||
order=OuterRef('pk'),
|
||||
state__in=(OrderPayment.PAYMENT_STATE_CONFIRMED, OrderPayment.PAYMENT_STATE_REFUNDED),
|
||||
payment_date__isnull=False
|
||||
).values('order').annotate(
|
||||
m=Max('payment_date')
|
||||
).values(
|
||||
'm'
|
||||
).order_by()
|
||||
ctx['rev_data'] = cache.get('statistics_rev_data' + ckey)
|
||||
if not ctx['rev_data']:
|
||||
rev_by_day = {}
|
||||
if subevent:
|
||||
for o in OrderPosition.objects.annotate(
|
||||
payment_date=Subquery(op_date, output_field=DateTimeField())
|
||||
).filter(order__event=self.request.event,
|
||||
subevent=subevent,
|
||||
order__status=Order.STATUS_PAID,
|
||||
payment_date__isnull=False).values('payment_date', 'price'):
|
||||
day = o['payment_date'].astimezone(tz).date()
|
||||
rev_by_day[day] = rev_by_day.get(day, 0) + o['price']
|
||||
else:
|
||||
for o in Order.objects.annotate(
|
||||
payment_date=Subquery(p_date, output_field=DateTimeField())
|
||||
).filter(event=self.request.event,
|
||||
status=Order.STATUS_PAID,
|
||||
payment_date__isnull=False).values('payment_date', 'total'):
|
||||
day = o['payment_date'].astimezone(tz).date()
|
||||
rev_by_day[day] = rev_by_day.get(day, 0) + o['total']
|
||||
|
||||
data = []
|
||||
total = 0
|
||||
for d in dateutil.rrule.rrule(
|
||||
dateutil.rrule.DAILY,
|
||||
dtstart=min(rev_by_day.keys() if rev_by_day else [datetime.date.today()]),
|
||||
until=max(rev_by_day.keys() if rev_by_day else [datetime.date.today()])):
|
||||
d = d.date()
|
||||
rev = float(rev_by_day.get(d, 0))
|
||||
if True: # rev != 0:
|
||||
total += rev
|
||||
data.append({
|
||||
'date': d.strftime('%Y-%m-%d'),
|
||||
'revenue': round(total, 2),
|
||||
})
|
||||
ctx['rev_data'] = json.dumps(data)
|
||||
cache.set('statistics_rev_data' + ckey, ctx['rev_data'])
|
||||
|
||||
ctx['has_overpaid_orders'] = can_view_orders and Order.annotate_overpayments(self.request.event.orders).filter(
|
||||
Q(~Q(status=Order.STATUS_CANCELED) & Q(pending_sum_t__lt=0))
|
||||
| Q(Q(status=Order.STATUS_CANCELED) & Q(pending_sum_rc__lt=0))
|
||||
).exists()
|
||||
ctx['has_pending_orders_with_full_payment'] = can_view_orders and Order.annotate_overpayments(
|
||||
self.request.event.orders).filter(
|
||||
Q(status__in=(Order.STATUS_EXPIRED, Order.STATUS_PENDING)) & Q(pending_sum_t__lte=0) & Q(
|
||||
require_approval=False)
|
||||
).exists()
|
||||
ctx['has_pending_refunds'] = can_view_orders and OrderRefund.objects.filter(
|
||||
order__event=self.request.event,
|
||||
state__in=(OrderRefund.REFUND_STATE_CREATED, OrderRefund.REFUND_STATE_EXTERNAL)
|
||||
).exists()
|
||||
ctx['has_pending_approvals'] = can_view_orders and self.request.event.orders.filter(
|
||||
status=Order.STATUS_PENDING,
|
||||
require_approval=True
|
||||
).exists()
|
||||
ctx['has_cancellation_requests'] = can_view_orders and CancellationRequest.objects.filter(
|
||||
order__event=self.request.event
|
||||
).exists()
|
||||
|
||||
ctx['timeline'] = [
|
||||
{
|
||||
'date': t.datetime.astimezone(self.request.event.timezone).date(),
|
||||
'entry': t,
|
||||
'time': t.datetime.astimezone(self.request.event.timezone)
|
||||
}
|
||||
for t in timeline_for_event(self.request.event, subevent)
|
||||
]
|
||||
ctx['today'] = now().astimezone(self.request.event.timezone).date()
|
||||
ctx['nearly_now'] = now().astimezone(self.request.event.timezone) - datetime.timedelta(seconds=20)
|
||||
# resp['Content-Security-Policy'] = "style-src 'unsafe-inline'"
|
||||
return ctx
|
||||
@@ -119,9 +119,9 @@ from pretix.control.forms.filter import (
|
||||
RefundFilterForm,
|
||||
)
|
||||
from pretix.control.forms.orders import (
|
||||
CancelForm, CommentForm, DenyForm, EventCancelForm, ExporterForm,
|
||||
ExtendForm, MarkPaidForm, OrderContactForm, OrderFeeChangeForm,
|
||||
OrderLocaleForm, OrderMailForm, OrderPositionAddForm,
|
||||
CancelForm, CommentForm, ConfirmPaymentForm, DenyForm, EventCancelForm,
|
||||
ExporterForm, ExtendForm, MarkPaidForm, OrderContactForm,
|
||||
OrderFeeChangeForm, OrderLocaleForm, OrderMailForm, OrderPositionAddForm,
|
||||
OrderPositionAddFormset, OrderPositionChangeForm, OrderPositionMailForm,
|
||||
OrderRefundForm, OtherOperationsForm, ReactivateOrderForm,
|
||||
)
|
||||
@@ -1014,10 +1014,9 @@ class OrderPaymentConfirm(OrderView):
|
||||
|
||||
@cached_property
|
||||
def mark_paid_form(self):
|
||||
return MarkPaidForm(
|
||||
return ConfirmPaymentForm(
|
||||
instance=self.order,
|
||||
data=self.request.POST if self.request.method == "POST" else None,
|
||||
payment=self.payment,
|
||||
)
|
||||
|
||||
def post(self, *args, **kwargs):
|
||||
@@ -1028,19 +1027,8 @@ class OrderPaymentConfirm(OrderView):
|
||||
'order': self.order,
|
||||
})
|
||||
try:
|
||||
payment_date = None
|
||||
if self.mark_paid_form.cleaned_data['payment_date'] != now().date():
|
||||
payment_date = make_aware(datetime.combine(
|
||||
self.mark_paid_form.cleaned_data['payment_date'],
|
||||
time(hour=0, minute=0, second=0)
|
||||
), self.order.event.timezone)
|
||||
|
||||
self.payment.amount = self.mark_paid_form.cleaned_data['amount']
|
||||
self.payment.save(update_fields=['amount'])
|
||||
self.payment.confirm(user=self.request.user,
|
||||
send_mail=self.mark_paid_form.cleaned_data['send_email'],
|
||||
count_waitinglist=False,
|
||||
payment_date=payment_date,
|
||||
force=self.mark_paid_form.cleaned_data.get('force', False))
|
||||
except Quota.QuotaExceededException as e:
|
||||
messages.error(self.request, str(e))
|
||||
|
||||
@@ -399,19 +399,6 @@ class SubEventEditorMixin(MetaDataEditorMixin):
|
||||
except SubEvent.DoesNotExist:
|
||||
pass
|
||||
|
||||
def _copy_from_date_to_relative(self, value):
|
||||
if not value:
|
||||
return value
|
||||
tz = self.request.event.timezone
|
||||
days = (self.copy_from.date_from.astimezone(tz).date() - value.astimezone(tz).date()).days
|
||||
return RelativeDateWrapper(RelativeDate(
|
||||
days=abs(days),
|
||||
base_date_name='date_from',
|
||||
time=value.astimezone(tz).time(),
|
||||
minutes=None,
|
||||
is_after=days < 0,
|
||||
))
|
||||
|
||||
@cached_property
|
||||
def itemvar_forms(self):
|
||||
se_item_instances = {
|
||||
@@ -424,21 +411,15 @@ class SubEventEditorMixin(MetaDataEditorMixin):
|
||||
if self.copy_from:
|
||||
se_item_instances = {
|
||||
sei.item_id: SubEventItem(
|
||||
item=sei.item,
|
||||
price=sei.price,
|
||||
disabled=sei.disabled,
|
||||
available_from=sei.available_from,
|
||||
available_until=sei.available_until
|
||||
item=sei.item, price=sei.price, disabled=sei.disabled,
|
||||
available_from=sei.available_from, available_until=sei.available_until
|
||||
)
|
||||
for sei in SubEventItem.objects.filter(subevent=self.copy_from).select_related('item')
|
||||
}
|
||||
se_var_instances = {
|
||||
sei.variation_id: SubEventItemVariation(
|
||||
variation=sei.variation,
|
||||
price=sei.price,
|
||||
disabled=sei.disabled,
|
||||
available_from=sei.available_from,
|
||||
available_until=sei.available_until
|
||||
variation=sei.variation, price=sei.price, disabled=sei.disabled,
|
||||
available_from=sei.available_from, available_until=sei.available_until
|
||||
)
|
||||
for sei in SubEventItemVariation.objects.filter(subevent=self.copy_from).select_related('variation')
|
||||
}
|
||||
@@ -448,34 +429,17 @@ class SubEventEditorMixin(MetaDataEditorMixin):
|
||||
if i.has_variations:
|
||||
for v in i.variations.all():
|
||||
inst = se_var_instances.get(v.pk) or SubEventItemVariation(subevent=self.object, variation=v)
|
||||
if self.copy_from:
|
||||
initial = {
|
||||
'rel_available_from': self._copy_from_date_to_relative(inst.available_from),
|
||||
'rel_available_until': self._copy_from_date_to_relative(inst.available_until)
|
||||
}
|
||||
else:
|
||||
initial = {}
|
||||
formlist.append(self.itemvarformclass(
|
||||
prefix='itemvar-{}'.format(v.pk),
|
||||
item=i,
|
||||
variation=v,
|
||||
initial=initial,
|
||||
item=i, variation=v,
|
||||
instance=inst,
|
||||
data=(self.request.POST if self.request.method == "POST" else None)
|
||||
))
|
||||
else:
|
||||
inst = se_item_instances.get(i.pk) or SubEventItem(subevent=self.object, item=i)
|
||||
if self.copy_from:
|
||||
initial = {
|
||||
'rel_available_from': self._copy_from_date_to_relative(inst.available_from),
|
||||
'rel_available_until': self._copy_from_date_to_relative(inst.available_until)
|
||||
}
|
||||
else:
|
||||
initial = {}
|
||||
formlist.append(self.itemformclass(
|
||||
prefix='item-{}'.format(i.pk),
|
||||
item=i,
|
||||
initial=initial,
|
||||
instance=inst,
|
||||
data=(self.request.POST if self.request.method == "POST" else None)
|
||||
))
|
||||
@@ -793,8 +757,18 @@ class SubEventBulkCreate(SubEventEditorMixin, EventPermissionRequiredMixin, Asyn
|
||||
initial['time_from'] = i.date_from.astimezone(tz).time()
|
||||
initial['time_to'] = i.date_to.astimezone(tz).time() if i.date_to else None
|
||||
initial['time_admission'] = i.date_admission.astimezone(tz).time() if i.date_admission else None
|
||||
initial['rel_presale_start'] = self._copy_from_date_to_relative(i.presale_start)
|
||||
initial['rel_presale_end'] = self._copy_from_date_to_relative(i.presale_end)
|
||||
initial['rel_presale_start'] = RelativeDateWrapper(RelativeDate(
|
||||
days=(i.date_from.astimezone(tz).date() - i.presale_start.astimezone(tz).date()).days,
|
||||
base_date_name='date_from',
|
||||
time=i.presale_start.astimezone(tz).time(),
|
||||
minutes=None
|
||||
)) if i.presale_start else None
|
||||
initial['rel_presale_end'] = RelativeDateWrapper(RelativeDate(
|
||||
days=(i.date_from.astimezone(tz).date() - i.presale_end.astimezone(tz).date()).days,
|
||||
base_date_name='date_from',
|
||||
time=i.presale_end.astimezone(tz).time(),
|
||||
minutes=None
|
||||
)) if i.presale_end else None
|
||||
else:
|
||||
kwargs['instance'] = SubEvent(event=self.request.event)
|
||||
initial['location'] = self.request.event.location
|
||||
|
||||
@@ -44,8 +44,6 @@ def set_cookie_without_samesite(request, response, key, *args, **kwargs):
|
||||
# This will only work on secure cookies as well
|
||||
# https://www.chromestatus.com/feature/5633521622188032
|
||||
response.cookies[key]['secure'] = is_secure
|
||||
# CHIPS
|
||||
response.cookies[key]['Partitioned'] = True
|
||||
|
||||
|
||||
# Based on https://www.chromium.org/updates/same-site/incompatible-clients
|
||||
|
||||
@@ -44,12 +44,11 @@ def validate_uploaded_file_for_valid_image(f):
|
||||
# have to read the data into memory.
|
||||
if hasattr(f, 'temporary_file_path'):
|
||||
file = f.temporary_file_path()
|
||||
elif hasattr(f, 'read'):
|
||||
if hasattr(f, 'seek') and callable(f.seek):
|
||||
f.seek(0)
|
||||
file = BytesIO(f.read())
|
||||
else:
|
||||
file = BytesIO(f['content'])
|
||||
if hasattr(f, 'read'):
|
||||
file = BytesIO(f.read())
|
||||
else:
|
||||
file = BytesIO(f['content'])
|
||||
|
||||
try:
|
||||
try:
|
||||
|
||||
@@ -21,7 +21,6 @@
|
||||
#
|
||||
import types
|
||||
from datetime import datetime
|
||||
from http import cookies
|
||||
|
||||
from PIL import Image
|
||||
from requests.adapters import HTTPAdapter
|
||||
@@ -89,14 +88,7 @@ def monkeypatch_requests_timeout():
|
||||
HTTPAdapter.send = httpadapter_send
|
||||
|
||||
|
||||
def monkeypatch_cookie_morsel():
|
||||
# See https://code.djangoproject.com/ticket/34613
|
||||
cookies.Morsel._flags.add("partitioned")
|
||||
cookies.Morsel._reserved.setdefault("partitioned", "Partitioned")
|
||||
|
||||
|
||||
def monkeypatch_all_at_ready():
|
||||
monkeypatch_vobject_performance()
|
||||
monkeypatch_pillow_safer()
|
||||
monkeypatch_requests_timeout()
|
||||
monkeypatch_cookie_morsel()
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+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"
|
||||
@@ -135,11 +135,9 @@ msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,7 +167,7 @@ msgstr ""
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr ""
|
||||
|
||||
@@ -458,62 +456,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2021-09-15 11:22+0000\n"
|
||||
"Last-Translator: Mohamed Tawfiq <mtawfiq@wafyapp.com>\n"
|
||||
"Language-Team: Arabic <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||
@@ -139,11 +139,9 @@ msgid "Continue"
|
||||
msgstr "المتابعة"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "جاري تأكيد الدفع الخاص بك …"
|
||||
|
||||
@@ -173,7 +171,7 @@ msgstr "جاري الاتصال بStripe …"
|
||||
msgid "Total"
|
||||
msgstr "المجموع"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "جاري الاتصال بالبنك الذي تتعامل معه …"
|
||||
|
||||
@@ -484,66 +482,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "عدد الأيام التي تحتوي على مدخل سابق"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "عدد الأيام التي تحتوي على مدخل سابق"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "عدد الأيام التي تحتوي على مدخل سابق"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "جميع الشروط في الأسفل"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "خيار واحد على الأقل"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "بداية الفعالية"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "نهاية الفعالية"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "تسجيل الفعالية"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "تحديد التاريخ والوقت"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "الوقت المحدد"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "القدرة على التحمل (الدقائق)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "أضف شرطا"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "الدقائق"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2020-12-19 07:00+0000\n"
|
||||
"Last-Translator: albert <albert.serra.monner@gmail.com>\n"
|
||||
"Language-Team: Catalan <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||
@@ -136,11 +136,9 @@ msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr ""
|
||||
|
||||
@@ -170,7 +168,7 @@ msgstr ""
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr ""
|
||||
|
||||
@@ -459,62 +457,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2023-09-15 06:00+0000\n"
|
||||
"Last-Translator: Michael <michael.happl@gmx.at>\n"
|
||||
"Language-Team: Czech <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||
@@ -136,11 +136,9 @@ msgid "Continue"
|
||||
msgstr "Pokračovat"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Potvrzuji vaši platbu …"
|
||||
|
||||
@@ -170,7 +168,7 @@ msgstr "Kontaktuji Stripe …"
|
||||
msgid "Total"
|
||||
msgstr "Celkem"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Kontaktuji vaši banku …"
|
||||
|
||||
@@ -475,66 +473,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "Počet dní bez úprav"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Počet dní bez úprav"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Počet dní bez úprav"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr "Minuty od předchozího vstupu (-1 pro první vstup)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr "Minuty od prvního vstupu (-1 pro první vstup)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "Všechny následující podmínky (AND)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "Alespoň jedna z následujících podmínek (OR)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Začátek akce"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Konec akce"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "Vstup na akci"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "Pevný termín"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "Pevná doba"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Tolerance (v minutách)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Přidat podmínku"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "minuty"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplikát"
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+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"
|
||||
@@ -136,11 +136,9 @@ msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr ""
|
||||
|
||||
@@ -170,7 +168,7 @@ msgstr ""
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr ""
|
||||
|
||||
@@ -459,62 +457,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2022-12-01 17:00+0000\n"
|
||||
"Last-Translator: Mie Frydensbjerg <mif@aarhus.dk>\n"
|
||||
"Language-Team: Danish <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||
@@ -140,11 +140,9 @@ msgid "Continue"
|
||||
msgstr "Fortsæt"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Bekræfter din betaling …"
|
||||
|
||||
@@ -174,7 +172,7 @@ msgstr "Kontakter Stripe …"
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Kontakter din bank …"
|
||||
|
||||
@@ -495,66 +493,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of previous entries"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Antal tidligere poster"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of previous entries"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Antal tidligere poster"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2023-11-28 15:36+0000\n"
|
||||
"Last-Translator: Raphael Michel <michel@rami.io>\n"
|
||||
"Language-Team: German <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||
@@ -136,11 +136,9 @@ msgid "Continue"
|
||||
msgstr "Fortfahren"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Zahlung wird bestätigt …"
|
||||
|
||||
@@ -170,7 +168,7 @@ msgstr "Kontaktiere Stripe …"
|
||||
msgid "Total"
|
||||
msgstr "Gesamt"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Kontaktiere Ihre Bank …"
|
||||
|
||||
@@ -474,66 +472,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "Anzahl an Tagen mit vorherigem Eintritt"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Anzahl an Tagen mit vorherigem Eintritt"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Anzahl an Tagen mit vorherigem Eintritt"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr "Minuten seit vorherigem Eintritt (-1 bei erstem Zutritt)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr "Minuten seit erstem Eintritt (-1 bei erstem Zutritt)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "Alle der folgenden Bedingungen (UND)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "Mindestens eine der folgenden Bedingungen (ODER)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Veranstaltungsbeginn"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Veranstaltungsende"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "Einlass"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "Fester Zeitpunkt"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "Feste Uhrzeit"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Toleranz (Minuten)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Bedingung hinzufügen"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "Minuten"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplizieren"
|
||||
|
||||
|
||||
@@ -176,7 +176,6 @@ landesspezifische
|
||||
Lead
|
||||
Leaflet
|
||||
Linktext
|
||||
Logindaten
|
||||
Lösch
|
||||
loszulegen
|
||||
Ltd
|
||||
@@ -205,7 +204,6 @@ number
|
||||
NXP
|
||||
OK
|
||||
On
|
||||
Onlinebanking
|
||||
Open
|
||||
OpenCage
|
||||
OpenID
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2023-11-28 15:36+0000\n"
|
||||
"Last-Translator: Raphael Michel <michel@rami.io>\n"
|
||||
"Language-Team: German (informal) <https://translate.pretix.eu/projects/"
|
||||
@@ -136,11 +136,9 @@ msgid "Continue"
|
||||
msgstr "Fortfahren"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Zahlung wird bestätigt …"
|
||||
|
||||
@@ -170,7 +168,7 @@ msgstr "Kontaktiere Stripe …"
|
||||
msgid "Total"
|
||||
msgstr "Gesamt"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Kontaktiere deine Bank …"
|
||||
|
||||
@@ -473,66 +471,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "Anzahl an Tagen mit vorherigem Eintritt"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Anzahl an Tagen mit vorherigem Eintritt"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Anzahl an Tagen mit vorherigem Eintritt"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr "Minuten seit vorherigem Zutritt (-1 beim erstem Zutritt)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr "Minuten seit erstem Zutritt (-1 bei erstem Zutritt)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "Alle der folgenden Bedingungen (UND)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "Mindestens eine der folgenden Bedingungen (ODER)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Veranstaltungsbeginn"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Veranstaltungsende"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "Einlass"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "Fester Zeitpunkt"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "Feste Uhrzeit"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Toleranz (Minuten)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Bedingung hinzufügen"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "Minuten"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplizieren"
|
||||
|
||||
|
||||
@@ -176,7 +176,6 @@ landesspezifische
|
||||
Lead
|
||||
Leaflet
|
||||
Linktext
|
||||
Logindaten
|
||||
Lösch
|
||||
loszulegen
|
||||
Ltd
|
||||
@@ -205,7 +204,6 @@ number
|
||||
NXP
|
||||
OK
|
||||
On
|
||||
Onlinebanking
|
||||
Open
|
||||
OpenCage
|
||||
OpenID
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 11:17+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+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"
|
||||
@@ -135,11 +135,9 @@ msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,7 +167,7 @@ msgstr ""
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr ""
|
||||
|
||||
@@ -458,62 +456,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2019-10-03 19:00+0000\n"
|
||||
"Last-Translator: Chris Spy <chrispiropoulou@hotmail.com>\n"
|
||||
"Language-Team: Greek <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||
@@ -141,11 +141,9 @@ msgid "Continue"
|
||||
msgstr "Συνέχεια"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr ""
|
||||
|
||||
@@ -175,7 +173,7 @@ msgstr "Επικοινωνία με το Stripe …"
|
||||
msgid "Total"
|
||||
msgstr "Σύνολο"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
#, fuzzy
|
||||
#| msgid "Contacting Stripe …"
|
||||
msgid "Contacting your bank …"
|
||||
@@ -508,62 +506,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+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"
|
||||
@@ -135,11 +135,9 @@ msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,7 +167,7 @@ msgstr ""
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr ""
|
||||
|
||||
@@ -458,62 +456,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2023-11-07 14:00+0000\n"
|
||||
"Last-Translator: Zona Vip <contacto@zonavip.mx>\n"
|
||||
"Language-Team: Spanish <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||
@@ -138,11 +138,9 @@ msgid "Continue"
|
||||
msgstr "Continuar"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Confirmando el pago…"
|
||||
|
||||
@@ -172,7 +170,7 @@ msgstr "Contactando con Stripe…"
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Contactando con el banco…"
|
||||
|
||||
@@ -477,66 +475,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "Número de días con una entrada previa"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Número de días con una entrada previa"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Número de días con una entrada previa"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "Todas las siguientes condiciones (Y)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "Al menos una de las siguientes condiciones (O)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Inicio del evento"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Fin del evento"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "Admisión al evento"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "seleccionar fecha y hora"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "seleccionar hora"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Tolerancia (en minutos)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Añadir condición"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "minutos"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2021-11-10 05:00+0000\n"
|
||||
"Last-Translator: Jaakko Rinta-Filppula <jaakko@r-f.fi>\n"
|
||||
"Language-Team: Finnish <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||
@@ -141,11 +141,9 @@ msgid "Continue"
|
||||
msgstr "Jatka"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Maksuasi vahvistetaan …"
|
||||
|
||||
@@ -175,7 +173,7 @@ msgstr ""
|
||||
msgid "Total"
|
||||
msgstr "Summa"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr ""
|
||||
|
||||
@@ -479,64 +477,56 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Tapahtuma alkaa"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Tapahtuma päättyy"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
#, fuzzy
|
||||
#| msgid "Current date and time"
|
||||
msgid "custom date and time"
|
||||
msgstr "Nykyinen päivämäärä ja aika"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "mukautettu aika"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Toleranssi (minuuttia)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Lisää ehto"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: French\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2023-09-11 10:00+0000\n"
|
||||
"Last-Translator: Ronan LE MEILLAT <ronan.le_meillat@highcanfly.club>\n"
|
||||
"Language-Team: French <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||
@@ -135,11 +135,9 @@ msgid "Continue"
|
||||
msgstr "Continuer"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Confirmation de votre paiement…"
|
||||
|
||||
@@ -169,7 +167,7 @@ msgstr "Communication avec Stripe …"
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Communication avec votre banque …"
|
||||
|
||||
@@ -476,66 +474,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "Nombre de jours avec entrée préalable"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Nombre de jours avec entrée préalable"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Nombre de jours avec entrée préalable"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr "Minutes depuis la dernière entrée (-1 à la première entrée)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr "Minutes depuis la première entrée (-1 à la première entrée)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "Toutes les conditions suivantes (ET)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "Au moins une des conditions suivantes (OU)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Début de l'événement"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Fin de l'événement"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "Admission à l'événement"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "date et heure personnalisée"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "heure personnalisée"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Tolérance (minutes)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Ajouter une condition"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "minutes"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr "Doublon"
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2022-02-22 22:00+0000\n"
|
||||
"Last-Translator: Ismael Menéndez Fernández <ismael.menendez@balidea.com>\n"
|
||||
"Language-Team: Galician <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||
@@ -138,11 +138,9 @@ msgid "Continue"
|
||||
msgstr "Continuar"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Confirmando o pagamento…"
|
||||
|
||||
@@ -172,7 +170,7 @@ msgstr "Contactando con Stripe…"
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Contactando co banco…"
|
||||
|
||||
@@ -481,66 +479,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "Número de días cunha entrada previa"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Número de días cunha entrada previa"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Número de días cunha entrada previa"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "Todas as condicións seguintes (E)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "Polo menos unha das seguintes condicións (OU)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Comezo do evento"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Fin do evento"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "Admisión ao evento"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "Seleccionar data e hora"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "Seleccionar hora"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Tolerancia (en minutos)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Engadir condición"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "minutos"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2021-09-24 13:54+0000\n"
|
||||
"Last-Translator: ofirtro <ofir.tro@gmail.com>\n"
|
||||
"Language-Team: Hebrew <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||
@@ -137,11 +137,9 @@ msgid "Continue"
|
||||
msgstr "המשך"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "מאמת את התשלום שלך…"
|
||||
|
||||
@@ -171,7 +169,7 @@ msgstr ""
|
||||
msgid "Total"
|
||||
msgstr "סה\"כ"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "יוצר קשר עם הבנק שלך…"
|
||||
|
||||
@@ -466,62 +464,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -135,11 +135,9 @@ msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,7 +167,7 @@ msgstr ""
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr ""
|
||||
|
||||
@@ -458,62 +456,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2020-01-24 08:00+0000\n"
|
||||
"Last-Translator: Prokaj Miklós <mixolid0@gmail.com>\n"
|
||||
"Language-Team: Hungarian <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||
@@ -141,11 +141,9 @@ msgid "Continue"
|
||||
msgstr "Folytatás"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "A fizetés megerősítése…"
|
||||
|
||||
@@ -175,7 +173,7 @@ msgstr "Kapcsolatfelvétel Stripe-pal…"
|
||||
msgid "Total"
|
||||
msgstr "Teljes"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Kapcsolatfelvétel a bankjával…"
|
||||
|
||||
@@ -501,62 +499,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2023-09-20 14:01+0000\n"
|
||||
"Last-Translator: Mahdia Aliyy <mahdlyy.k@gmail.com>\n"
|
||||
"Language-Team: Indonesian <https://translate.pretix.eu/projects/pretix/"
|
||||
@@ -140,11 +140,9 @@ msgid "Continue"
|
||||
msgstr "Lanjutkan"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Mengonfirmasi pembayaran Anda…"
|
||||
|
||||
@@ -174,7 +172,7 @@ msgstr "Menghubungi Stripe…"
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Menghubungi bank Anda…"
|
||||
|
||||
@@ -481,66 +479,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "Jumlah hari dengan entri sebelumnya"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Jumlah hari dengan entri sebelumnya"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Jumlah hari dengan entri sebelumnya"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr "Menit sejak entri terakhir (-1 pada entri pertama)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr "Menit sejak entri pertama (-1 pada entri pertama)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "Semua kondisi di bawah (DAN)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "Setidaknya salah satu kondisi di bawah ini (ATAU)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Acara dimulai"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Acara berakhir"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "Tiket masuk acara"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "tanggal dan waktu khusus"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "waktu khusus"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Toleransi (menit)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Tambahkan kondisi"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "menit"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplikat"
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2023-05-18 01:00+0000\n"
|
||||
"Last-Translator: M C <micasadmail@gmail.com>\n"
|
||||
"Language-Team: Italian <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||
@@ -138,11 +138,9 @@ msgid "Continue"
|
||||
msgstr "Continua"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Stiamo processando il tuo pagamento …"
|
||||
|
||||
@@ -172,7 +170,7 @@ msgstr "Sto contattando Stripe …"
|
||||
msgid "Total"
|
||||
msgstr "Totale"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Sto contattando la tua banca …"
|
||||
|
||||
@@ -478,66 +476,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "Nunmero di giorni con un inserimento precedente"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Nunmero di giorni con un inserimento precedente"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Nunmero di giorni con un inserimento precedente"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "Tutte le condizioni sottostanti (e)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "Almeno una delle condizioni sottostanti (oppure)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Evento inizia"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Evento termina"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "Ammissione all'evento"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "data e ora personalizzate"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "Orario personalizzato"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Tolleranza (minuti)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Aggiungi condizione"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "minuti"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2022-03-15 00:00+0000\n"
|
||||
"Last-Translator: Yuriko Matsunami <y.matsunami@enobyte.com>\n"
|
||||
"Language-Team: Japanese <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||
@@ -138,11 +138,9 @@ msgid "Continue"
|
||||
msgstr "次へ"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "お支払い内容の確認"
|
||||
|
||||
@@ -172,7 +170,7 @@ msgstr "お問い合わせはこちら"
|
||||
msgid "Total"
|
||||
msgstr "合計"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "銀行へ問い合わせ中…"
|
||||
|
||||
@@ -480,66 +478,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "これまでの入力日数"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "これまでの入力日数"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "これまでの入力日数"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "以下全ての条件(と)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "以下の条件のうち、最低1つ(または)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "イベント開始"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "イベント終了"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "イベントの入場"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "日時確定"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "時刻確定"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "許容誤差(分)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "条件を追加"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "分"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+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"
|
||||
@@ -135,11 +135,9 @@ msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,7 +167,7 @@ msgstr ""
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr ""
|
||||
|
||||
@@ -458,62 +456,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+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"
|
||||
@@ -137,11 +137,9 @@ msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr ""
|
||||
|
||||
@@ -171,7 +169,7 @@ msgstr ""
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr ""
|
||||
|
||||
@@ -460,62 +458,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2022-04-06 03:00+0000\n"
|
||||
"Last-Translator: Liga V <lerning_by_dreaming@gmx.de>\n"
|
||||
"Language-Team: Latvian <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||
@@ -139,11 +139,9 @@ msgid "Continue"
|
||||
msgstr "Turpināt"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Jūsu maksājums tiek apstrādāts …"
|
||||
|
||||
@@ -173,7 +171,7 @@ msgstr "Savienojas ar Stripe …"
|
||||
msgid "Total"
|
||||
msgstr "Kopā"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Tiek veidots savienojums ar jūsu banku …"
|
||||
|
||||
@@ -482,66 +480,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "Dienu skaits ar iepriekšējo ierakstu"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Dienu skaits ar iepriekšējo ierakstu"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Dienu skaits ar iepriekšējo ierakstu"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "Visi nosacījumi, kas zemāk (AND)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "Vismaz viens nosacījums, kas zemāk (OR)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Pasākums sākas"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Pasākums beidzas"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "Ieeja pasākumā"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "pielāgots datums un laiks"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "pielāgots laiks"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Pielaide (minūtes)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Pievienot nosacījumu"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "minūtes"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+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"
|
||||
@@ -135,11 +135,9 @@ msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,7 +167,7 @@ msgstr ""
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr ""
|
||||
|
||||
@@ -458,62 +456,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2023-11-02 13:02+0000\n"
|
||||
"Last-Translator: fyksen <fredrik@fyksen.me>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.pretix.eu/projects/pretix/"
|
||||
@@ -136,11 +136,9 @@ msgid "Continue"
|
||||
msgstr "Fortsett"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Bekrefter betalingen din…"
|
||||
|
||||
@@ -170,7 +168,7 @@ msgstr "Kontakter Stripe…"
|
||||
msgid "Total"
|
||||
msgstr "Totalt"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Kontakter banken din…"
|
||||
|
||||
@@ -469,66 +467,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "Antall dager med en tidligere oppføring"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Antall dager med en tidligere oppføring"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Antall dager med en tidligere oppføring"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr "Minutter siden siste oppføring (-1 på første oppføring)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr "Minutter siden første oppføring (-1 på første oppføring)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "Alle betingelsene nedenfor (AND)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "Minst en av betingelsene nedenfor (OR)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Event start"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Event slutt"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "Event inngang"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "egendefinert dato og klokkeslett"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "egendefinert tid"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Toleranse (minutter)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Legg til betingelse"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "minutter"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplikat"
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2023-11-14 23:00+0000\n"
|
||||
"Last-Translator: Thomas Vranken <thvranken@gmail.com>\n"
|
||||
"Language-Team: Dutch <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||
@@ -137,11 +137,9 @@ msgid "Continue"
|
||||
msgstr "Doorgaan"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Betaling bevestigen …"
|
||||
|
||||
@@ -171,7 +169,7 @@ msgstr "Verbinding maken met Stripe …"
|
||||
msgid "Total"
|
||||
msgstr "Totaal"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Verbinding maken met uw bank …"
|
||||
|
||||
@@ -479,66 +477,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "Aantal dagen met een eerdere binnenkomst"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Aantal dagen met een eerdere binnenkomst"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Aantal dagen met een eerdere binnenkomst"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "Alle volgende voorwaarden (EN)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "Ten minste één van de volgende voorwaarden (OF)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Start van het evenement"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Einde van het evenement"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "Toegangstijd evenement"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "Aangepaste datum en tijd"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "aangepaste tijd"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Speling (minuten)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Voorwaarde toevoegen"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "minuten"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -3,20 +3,19 @@
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-29 11:17+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+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"
|
||||
"Language: \n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: nl_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
|
||||
#: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:56
|
||||
#: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:62
|
||||
@@ -135,11 +134,9 @@ msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,7 +166,7 @@ msgstr ""
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr ""
|
||||
|
||||
@@ -458,62 +455,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2021-08-05 04:00+0000\n"
|
||||
"Last-Translator: Maarten van den Berg <maartenberg1@gmail.com>\n"
|
||||
"Language-Team: Dutch (informal) <https://translate.pretix.eu/projects/pretix/"
|
||||
@@ -138,11 +138,9 @@ msgid "Continue"
|
||||
msgstr "Doorgaan"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Betaling bevestigen …"
|
||||
|
||||
@@ -172,7 +170,7 @@ msgstr "Verbinding maken met Stripe …"
|
||||
msgid "Total"
|
||||
msgstr "Totaal"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Verbinding maken met je bank …"
|
||||
|
||||
@@ -483,66 +481,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "Aantal dagen met een eerdere binnenkomst"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Aantal dagen met een eerdere binnenkomst"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Aantal dagen met een eerdere binnenkomst"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "Alle volgende voorwaarden (EN)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "Ten minste één van de volgende voorwaarden (OF)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Start van het evenement"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Einde van het evenement"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "Toegangstijd evenement"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "Aangepaste datum en tijd"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "aangepaste tijd"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Speling (minuten)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Voorwaarde toevoegen"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "minuten"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2023-11-25 22:12+0000\n"
|
||||
"Last-Translator: c0de-bender <code-bender@mailbox.org>\n"
|
||||
"Language-Team: Polish <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||
@@ -137,11 +137,9 @@ msgid "Continue"
|
||||
msgstr "Kontynuuj"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Potwierdzanie płatności…"
|
||||
|
||||
@@ -171,7 +169,7 @@ msgstr "Kontaktowanie Stripe…"
|
||||
msgid "Total"
|
||||
msgstr "Razem"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Łączenie z bankiem…"
|
||||
|
||||
@@ -474,66 +472,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "Liczba dni z poprzednimi wejściami"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Liczba dni z poprzednimi wejściami"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Liczba dni z poprzednimi wejściami"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr "Minuty od ostatniego wejścia (-1 przy pierwszym wejściu)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr "Minuty od pierwszego wejścia (-1 przy pierwszym wejściu)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "Wszystkie poniższe warunki (AND)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "Co najmniej jeden z poniższych warunków (OR)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Rozpoczęcie wydarzenia"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Koniec wydarzenia"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "Wstęp na wydarzenie"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "Niestandardowa data i godzina"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "czas niestandardowy"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Tolerancja (minuty)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Dodaj warunek"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "minut"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplikuj"
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -135,11 +135,9 @@ msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,7 +167,7 @@ msgstr ""
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr ""
|
||||
|
||||
@@ -458,62 +456,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+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"
|
||||
@@ -135,11 +135,9 @@ msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,7 +167,7 @@ msgstr ""
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr ""
|
||||
|
||||
@@ -458,62 +456,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2019-03-19 09:00+0000\n"
|
||||
"Last-Translator: Vitor Reis <vitor.reis7@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.pretix.eu/projects/"
|
||||
@@ -139,11 +139,9 @@ msgid "Continue"
|
||||
msgstr "Continuar"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr ""
|
||||
|
||||
@@ -173,7 +171,7 @@ msgstr "Contatando Stripe…"
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
#, fuzzy
|
||||
#| msgid "Contacting Stripe …"
|
||||
msgid "Contacting your bank …"
|
||||
@@ -511,62 +509,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2022-11-16 16:12+0000\n"
|
||||
"Last-Translator: David Vaz <davidmgvaz@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Portugal) <https://translate.pretix.eu/projects/"
|
||||
@@ -141,11 +141,9 @@ msgid "Continue"
|
||||
msgstr "Continuar"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "A confirmar o seu pagamento…"
|
||||
|
||||
@@ -175,7 +173,7 @@ msgstr "A contactar o Stripe…"
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "A contactar o seu banco…"
|
||||
|
||||
@@ -493,68 +491,56 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "Número de dias com entrada prévia"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Número de dias com entrada prévia"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Número de dias com entrada prévia"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "Todas as condições abaixo (E)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "Pelo menos uma das condições abaixo (Ou)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Início do evento"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Fim do evento"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "Admissão ao evento"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
#, fuzzy
|
||||
#| msgid "Current date and time"
|
||||
msgid "custom date and time"
|
||||
msgstr "Data e hora atual"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "Hora personalisada"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Tolerância (minutos)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Adicionar condição"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "minutos"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2022-04-29 04:00+0000\n"
|
||||
"Last-Translator: Edd28 <chitu_edy@yahoo.com>\n"
|
||||
"Language-Team: Romanian <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||
@@ -137,11 +137,9 @@ msgid "Continue"
|
||||
msgstr "Continuă"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Se confirmă plata…"
|
||||
|
||||
@@ -171,7 +169,7 @@ msgstr "Se conectează Stripe…"
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Se contactează banca …"
|
||||
|
||||
@@ -481,66 +479,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr "Numărul de zile cu o intrare anterioară"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Numărul de zile cu o intrare anterioară"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Numărul de zile cu o intrare anterioară"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr "Minute de la ultima intrare (-1 la prima intrare)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr "Minute de la prima intrare (-1 la prima intrare)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr "Toate condițiile de mai jos (ȘI)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr "Cel puțin una dintre condițiile de mai jos (SAU)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr "Evenimentul începe"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr "Evenimentul se termină"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr "Participarea la eveniment"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr "dată și timp personalizate"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr "timp personalizat"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr "Toleranță (minute)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr "Adaugă condiție"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr "minute"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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: 2024-01-24 13:03+0000\n"
|
||||
"POT-Creation-Date: 2024-01-11 10:07+0000\n"
|
||||
"PO-Revision-Date: 2021-08-09 13:10+0000\n"
|
||||
"Last-Translator: Svyatoslav <slava@digitalarthouse.eu>\n"
|
||||
"Language-Team: Russian <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||
@@ -142,11 +142,9 @@ msgid "Continue"
|
||||
msgstr "Продолжить"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:267
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:284
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:229
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:262
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:280
|
||||
msgid "Confirming your payment …"
|
||||
msgstr "Подтверждается ваш платёж…"
|
||||
|
||||
@@ -176,7 +174,7 @@ msgstr "Идёт обращение к Stripe…"
|
||||
msgid "Total"
|
||||
msgstr "Итого"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:236
|
||||
msgid "Contacting your bank …"
|
||||
msgstr "Идёт обращение к вашему банку…"
|
||||
|
||||
@@ -504,62 +502,54 @@ msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:133
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:141
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:145
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:137
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:164
|
||||
msgid "All of the conditions below (AND)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:165
|
||||
msgid "At least one of the conditions below (OR)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:166
|
||||
msgid "Event start"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:175
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:167
|
||||
msgid "Event end"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:176
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:168
|
||||
msgid "Event admission"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:177
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:169
|
||||
msgid "custom date and time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:178
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:170
|
||||
msgid "custom time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:179
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:171
|
||||
msgid "Tolerance (minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:180
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:172
|
||||
msgid "Add condition"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:181
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:173
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:174
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user