From 15ea7c65e4923da0abce07a9da5d96ebb9e248d8 Mon Sep 17 00:00:00 2001 From: jasle <6173613+jasle@users.noreply.github.com> Date: Tue, 21 Oct 2025 10:54:39 +0200 Subject: [PATCH 01/33] Bank transfer: Allow markdown in accoutn details --- src/pretix/plugins/banktransfer/payment.py | 3 ++- .../templates/pretixplugins/banktransfer/checkout_confirm.html | 3 ++- .../pretixplugins/banktransfer/checkout_payment_form.html | 3 ++- .../templates/pretixplugins/banktransfer/pending.html | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/pretix/plugins/banktransfer/payment.py b/src/pretix/plugins/banktransfer/payment.py index 22c37f8a69..380c31a12d 100644 --- a/src/pretix/plugins/banktransfer/payment.py +++ b/src/pretix/plugins/banktransfer/payment.py @@ -48,6 +48,7 @@ from localflavor.generic.forms import BICFormField, IBANFormField from localflavor.generic.validators import IBANValidator from text_unidecode import unidecode +from pretix.base.forms import I18nMarkdownTextarea from pretix.base.models import InvoiceAddress, Order, OrderPayment, OrderRefund from pretix.base.payment import BasePaymentProvider from pretix.base.templatetags.money import money_filter @@ -124,7 +125,7 @@ class BankTransfer(BasePaymentProvider): )), ('bank_details', I18nFormField( label=_('Bank account details'), - widget=I18nTextarea, + widget=I18nMarkdownTextarea, help_text=_( 'Include everything else that your customers might need to send you a bank transfer payment. ' 'If you have lots of international customers, they might need your full address and your ' diff --git a/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html b/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html index edc99b41d3..761c1bf11d 100644 --- a/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html +++ b/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html @@ -1,6 +1,7 @@ {% load i18n %} {% load ibanformat %} {% load bootstrap3 %} +{% load rich_text %} {% if details or code %}

{% blocktrans trimmed %} @@ -18,7 +19,7 @@ {% endif %} - {{ details|linebreaks }} + {{ details | rich_text }} {% if not code %}{% endif %} {% if code %} diff --git a/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html b/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html index 62a58dd469..3ad5e526ec 100644 --- a/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html +++ b/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html @@ -1,5 +1,6 @@ {% load i18n %} {% load ibanformat %} +{% load rich_text %} {% if details or code %}

{% blocktrans trimmed %} @@ -17,7 +18,7 @@ {% endif %} - {{ details|linebreaks }} + {{ details | rich_text }} {% if not code %}{% endif %} {% if code %} diff --git a/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html b/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html index d1788f8545..a594b3163e 100644 --- a/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html +++ b/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html @@ -29,7 +29,7 @@ {% endif %} {% endif %} {% if details %} - {{ details|linebreaks }} + {{ details | rich_text }}

{% endif %} {% if not settings.bank_details_type == "sepa" and not details %} From dfd52f05ffe9fc5d587770a6e6f75088da16c5e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Oct 2025 10:54:46 +0200 Subject: [PATCH 02/33] Update sepaxml requirement from ==2.6.* to ==2.7.* (#5431) Updates the requirements on [sepaxml](https://github.com/raphaelm/python-sepaxml) to permit the latest version. - [Commits](https://github.com/raphaelm/python-sepaxml/compare/2.6.0...2.7.0) --- updated-dependencies: - dependency-name: sepaxml dependency-version: 2.7.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Raphael Michel --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a5ab8c5461..c1a12ddf82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -92,7 +92,7 @@ dependencies = [ "reportlab==4.4.*", "requests==2.32.*", "sentry-sdk==2.42.*", - "sepaxml==2.6.*", + "sepaxml==2.7.*", "stripe==7.9.*", "text-unidecode==1.*", "tlds>=2020041600", From 556318325522393154d98b408c7044c283263425 Mon Sep 17 00:00:00 2001 From: Martin Gross Date: Tue, 21 Oct 2025 17:28:33 +0200 Subject: [PATCH 03/33] Allow to unlock a payment method and redeem a voucher at the same time (#5564) --- src/pretix/presale/views/user.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pretix/presale/views/user.py b/src/pretix/presale/views/user.py index 4fda0d32ff..a95118408e 100644 --- a/src/pretix/presale/views/user.py +++ b/src/pretix/presale/views/user.py @@ -107,4 +107,10 @@ class UnlockHashView(EventViewMixin, View): hashes = request.session.get('pretix_unlock_hashes', []) hashes.append(kwargs.get('hash')) request.session['pretix_unlock_hashes'] = hashes + + if 'voucher' in request.GET: + return redirect_to_url( + eventreverse(self.request.event, 'presale:event.redeem') + f'?{request.META["QUERY_STRING"]}' + ) + return redirect_to_url(eventreverse(self.request.event, 'presale:event.index')) From 40db7d939f5b1f0251b5bf4a2c720dc103435927 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 21 Oct 2025 18:35:06 +0200 Subject: [PATCH 04/33] API: Trust discounts assigned by pretixPOS, do not assign differently (#5531) --- doc/api/resources/orders.rst | 1 + src/pretix/api/serializers/order.py | 36 ++++---- src/tests/api/test_order_create.py | 125 ++++++++++++++++++++++++++++ 3 files changed, 148 insertions(+), 14 deletions(-) diff --git a/doc/api/resources/orders.rst b/doc/api/resources/orders.rst index 5073c3a408..210212569f 100644 --- a/doc/api/resources/orders.rst +++ b/doc/api/resources/orders.rst @@ -1058,6 +1058,7 @@ Creating orders * ``valid_until`` (optional, if both ``valid_from`` and ``valid_until`` are **missing** (not ``null``) the availability will be computed from the given product) * ``requested_valid_from`` (optional, can be set **instead** of ``valid_from`` and ``valid_until`` to signal a user choice for the start time that may or may not be respected) * ``use_reusable_medium`` (optional, causes the new ticket to take over the given reusable medium, identified by its ID) + * ``discount`` (optional, only possible if ``price`` is set; attention: if this is set to not-``null`` on any position, automatic calculation of discounts will not run) * ``answers`` * ``question`` diff --git a/src/pretix/api/serializers/order.py b/src/pretix/api/serializers/order.py index e2499c35fd..b58754ed97 100644 --- a/src/pretix/api/serializers/order.py +++ b/src/pretix/api/serializers/order.py @@ -1005,7 +1005,7 @@ class OrderPositionCreateSerializer(I18nAwareModelSerializer): fields = ('positionid', 'item', 'variation', 'price', 'attendee_name', 'attendee_name_parts', 'attendee_email', 'company', 'street', 'zipcode', 'city', 'country', 'state', 'is_bundled', 'secret', 'addon_to', 'subevent', 'answers', 'seat', 'voucher', 'valid_from', 'valid_until', - 'requested_valid_from', 'use_reusable_medium') + 'requested_valid_from', 'use_reusable_medium', 'discount') def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) @@ -1101,6 +1101,10 @@ class OrderPositionCreateSerializer(I18nAwareModelSerializer): {'state': ['"{}" is not a known subdivision of the country "{}".'.format(data.get('state'), cc)]} ) + if data.get('price') is None and data.get('discount'): + raise ValidationError( + {'discount': ['You can only specify a discount if you do the price computation, but price is not set.']} + ) return data @@ -1160,6 +1164,7 @@ class OrderCreateSerializer(I18nAwareModelSerializer): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.fields['positions'].child.fields['voucher'].queryset = self.context['event'].vouchers.all() + self.fields['positions'].child.fields['discount'].queryset = self.context['event'].discounts.all() self.fields['customer'].queryset = self.context['event'].organizer.customers.all() self.fields['expires'].required = False self.fields["sales_channel"].queryset = self.context["event"].organizer.sales_channels.all() @@ -1567,19 +1572,22 @@ class OrderCreateSerializer(I18nAwareModelSerializer): pos.voucher_budget_use = max(listed_price - price_after_voucher, Decimal('0.00')) order_positions = [pos_data['__instance'] for pos_data in positions_data] - discount_results = apply_discounts( - self.context['event'], - order.sales_channel, - [ - (cp.item_id, cp.subevent_id, cp.subevent.date_from if cp.subevent_id else None, cp.price, - bool(cp.addon_to), cp.is_bundled, pos._voucher_discount) - for cp in order_positions - ] - ) - for cp, (new_price, discount) in zip(order_positions, discount_results): - if new_price != pos.price and pos._auto_generated_price: - pos.price = new_price - pos.discount = discount + if not any([p.get("discount") for p in positions_data]): + # If any discount is set by the client (i.e. pretixPOS), we do not recalculate but believe the client + # to avoid differences in end results. + discount_results = apply_discounts( + self.context['event'], + order.sales_channel, + [ + (cp.item_id, cp.subevent_id, cp.subevent.date_from if cp.subevent_id else None, cp.price, + bool(cp.addon_to), cp.is_bundled, pos._voucher_discount) + for cp in order_positions + ] + ) + for cp, (new_price, discount) in zip(order_positions, discount_results): + if new_price != pos.price and pos._auto_generated_price: + pos.price = new_price + pos.discount = discount # Save instances for pos_data in positions_data: diff --git a/src/tests/api/test_order_create.py b/src/tests/api/test_order_create.py index 06083965d6..e954da0477 100644 --- a/src/tests/api/test_order_create.py +++ b/src/tests/api/test_order_create.py @@ -3134,3 +3134,128 @@ def test_order_create_create_medium(token_client, organizer, event, item, quota, m = organizer.reusable_media.get(identifier=i) assert m.linked_orderposition == o.positions.first() assert m.type == "barcode" + + +@pytest.mark.django_db +def test_order_create_auto_pricing_discount(token_client, organizer, event, item, quota, question, taxrule): + with scopes_disabled(): + event.discounts.create( + condition_min_count=2, + benefit_discount_matching_percent=50, + benefit_only_apply_to_cheapest_n_matches=1, + ) + + res = copy.deepcopy(ORDER_CREATE_PAYLOAD) + res['positions'][0]['item'] = item.pk + res['positions'][0]['answers'][0]['question'] = question.pk + del res['positions'][0]['positionid'] + del res['positions'][0]['price'] + res['positions'].append(dict(res['positions'][0])) + resp = token_client.post( + '/api/v1/organizers/{}/events/{}/orders/'.format( + organizer.slug, event.slug + ), format='json', data=res + ) + assert resp.status_code == 201 + with scopes_disabled(): + o = Order.objects.get(code=resp.data['code']) + p1 = o.positions.first() + p2 = o.positions.last() + assert p1.price == Decimal('23') + assert p2.price == Decimal('11.50') + assert o.total == Decimal('34.75') + + +@pytest.mark.django_db +def test_order_create_auto_pricing_do_not_discount_if_price_explcitly_set(token_client, organizer, event, item, quota, question, taxrule): + with scopes_disabled(): + event.discounts.create( + condition_min_count=2, + benefit_discount_matching_percent=50, + benefit_only_apply_to_cheapest_n_matches=1, + ) + + res = copy.deepcopy(ORDER_CREATE_PAYLOAD) + res['positions'][0]['item'] = item.pk + res['positions'][0]['answers'][0]['question'] = question.pk + del res['positions'][0]['positionid'] + res['positions'].append(dict(res['positions'][0])) + resp = token_client.post( + '/api/v1/organizers/{}/events/{}/orders/'.format( + organizer.slug, event.slug + ), format='json', data=res + ) + assert resp.status_code == 201 + with scopes_disabled(): + o = Order.objects.get(code=resp.data['code']) + p1 = o.positions.first() + p2 = o.positions.last() + assert p1.price == Decimal('23.00') + assert p2.price == Decimal('23.00') + assert o.total == Decimal('46.25') + + +@pytest.mark.django_db +def test_order_create_auto_pricing_believe_wrong_discounts_by_client(token_client, organizer, event, item, quota, question, taxrule): + with scopes_disabled(): + discount = event.discounts.create( + condition_min_count=2, + benefit_discount_matching_percent=50, + benefit_only_apply_to_cheapest_n_matches=1, + ) + + res = copy.deepcopy(ORDER_CREATE_PAYLOAD) + res['positions'][0]['item'] = item.pk + res['positions'][0]['answers'][0]['question'] = question.pk + del res['positions'][0]['positionid'] + res['positions'].append(dict(res['positions'][0])) + res['positions'][0]['price'] = Decimal("10.00") + res['positions'][1]['price'] = Decimal("7.00") + res['positions'][1]['discount'] = discount.pk + resp = token_client.post( + '/api/v1/organizers/{}/events/{}/orders/'.format( + organizer.slug, event.slug + ), format='json', data=res + ) + assert resp.status_code == 201 + with scopes_disabled(): + o = Order.objects.get(code=resp.data['code']) + p1 = o.positions.first() + p2 = o.positions.last() + assert p1.price == Decimal('10.00') + assert p1.discount is None + assert p2.price == Decimal('7.00') + assert p2.discount == discount + assert o.total == Decimal('17.25') + + +@pytest.mark.django_db +def test_order_create_auto_pricing_explicit_discount_not_allowed(token_client, organizer, event, item, quota, question, taxrule): + with scopes_disabled(): + discount = event.discounts.create( + condition_min_count=2, + benefit_discount_matching_percent=50, + benefit_only_apply_to_cheapest_n_matches=1, + ) + + res = copy.deepcopy(ORDER_CREATE_PAYLOAD) + res['positions'][0]['item'] = item.pk + res['positions'][0]['answers'][0]['question'] = question.pk + del res['positions'][0]['positionid'] + del res['positions'][0]['price'] + res['positions'].append(dict(res['positions'][0])) + res['positions'][1]['discount'] = discount.pk + resp = token_client.post( + '/api/v1/organizers/{}/events/{}/orders/'.format( + organizer.slug, event.slug + ), format='json', data=res + ) + assert resp.status_code == 400 + assert resp.data == { + "positions": [ + {}, + { + "discount": ["You can only specify a discount if you do the price computation, but price is not set."] + } + ] + } From 11acd4ca53d8ce5a81d844f301eec6f3c5a96f12 Mon Sep 17 00:00:00 2001 From: Mira Weller Date: Fri, 24 Oct 2025 12:04:03 +0200 Subject: [PATCH 05/33] allow custom headers in error base template --- src/pretix/base/templates/error.html | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pretix/base/templates/error.html b/src/pretix/base/templates/error.html index ad1e120a77..790f80d152 100644 --- a/src/pretix/base/templates/error.html +++ b/src/pretix/base/templates/error.html @@ -11,6 +11,7 @@ + {% block custom_header %}{% endblock %}
From 5882a728bfc4c74896194d0a020097ccb08f8c83 Mon Sep 17 00:00:00 2001 From: Sven Muhlen Date: Tue, 21 Oct 2025 15:26:21 +0200 Subject: [PATCH 06/33] Translations: Update Luxembourgish Currently translated at 100.0% (254 of 254 strings) Translation: pretix/pretix (JavaScript parts) Translate-URL: https://translate.pretix.eu/projects/pretix/pretix-js/lb/ powered by weblate --- src/pretix/locale/lb/LC_MESSAGES/djangojs.po | 425 ++++++++++--------- 1 file changed, 228 insertions(+), 197 deletions(-) diff --git a/src/pretix/locale/lb/LC_MESSAGES/djangojs.po b/src/pretix/locale/lb/LC_MESSAGES/djangojs.po index e957f9a796..5b1e3a5619 100644 --- a/src/pretix/locale/lb/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/lb/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-21 07:27+0000\n" -"PO-Revision-Date: 2025-10-21 08:03+0000\n" +"PO-Revision-Date: 2025-10-21 17:00+0000\n" "Last-Translator: Sven Muhlen \n" "Language-Team: Luxembourgish \n" @@ -44,97 +44,97 @@ msgstr "Apple Pay" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:37 msgid "Itaú" -msgstr "" +msgstr "Itaú" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:38 msgid "PayPal Credit" -msgstr "" +msgstr "PayPal Credit" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:39 msgid "Credit Card" -msgstr "" +msgstr "Kreditkaart" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:40 msgid "PayPal Pay Later" -msgstr "" +msgstr "PayPal Pay Later" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:41 msgid "iDEAL" -msgstr "" +msgstr "iDEAL" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:42 msgid "SEPA Direct Debit" -msgstr "" +msgstr "SEPA Direct Debit" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:43 msgid "Bancontact" -msgstr "" +msgstr "Bancontact" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:44 msgid "giropay" -msgstr "" +msgstr "giropay" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:45 msgid "SOFORT" -msgstr "" +msgstr "SOFORT" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:46 msgid "eps" -msgstr "" +msgstr "eps" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:47 msgid "MyBank" -msgstr "" +msgstr "MyBank" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:48 msgid "Przelewy24" -msgstr "" +msgstr "Przelewy24" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:49 msgid "Verkkopankki" -msgstr "" +msgstr "Verkkopankki" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:50 msgid "PayU" -msgstr "" +msgstr "PayU" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:51 msgid "BLIK" -msgstr "" +msgstr "BLIK" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:52 msgid "Trustly" -msgstr "" +msgstr "Trustly" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:53 msgid "Zimpler" -msgstr "" +msgstr "Zimpler" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:54 msgid "Maxima" -msgstr "" +msgstr "Maxima" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:55 msgid "OXXO" -msgstr "" +msgstr "OXXO" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:56 msgid "Boleto" -msgstr "" +msgstr "Boleto" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:57 msgid "WeChat Pay" -msgstr "" +msgstr "WeChat Pay" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:58 msgid "Mercado Pago" -msgstr "" +msgstr "Mercado Pago" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:167 #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:50 #: pretix/static/pretixpresale/js/ui/cart.js:89 msgid "Continue" -msgstr "" +msgstr "Weider" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225 #: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244 @@ -143,37 +143,37 @@ msgstr "" #: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317 #: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341 msgid "Confirming your payment …" -msgstr "" +msgstr "Bezuelung gëtt confirméiert…" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:254 msgid "Payment method unavailable" -msgstr "" +msgstr "Bezuelungsmethod net disponibel" #: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:15 #: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:39 msgid "Placed orders" -msgstr "" +msgstr "Placéiert Bestellungen" #: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:15 #: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:39 msgid "Paid orders" -msgstr "" +msgstr "Bezuelte Bestellungen" #: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:27 msgid "Total revenue" -msgstr "" +msgstr "Gesamten Akommes" #: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:15 msgid "Contacting Stripe …" -msgstr "" +msgstr "Stripe gëtt kontaktéiert…" #: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:72 msgid "Total" -msgstr "" +msgstr "Total" #: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291 msgid "Contacting your bank …" -msgstr "" +msgstr "Är Bank gëtt kontaktéiert…" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:30 msgid "Select a check-in list" @@ -217,7 +217,7 @@ msgstr "Sortie" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:40 msgid "Scan a ticket or search and press return…" -msgstr "" +msgstr "En Ticket scannen oder sichen a mat Enter bestätegen…" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:41 msgid "Load more" @@ -343,22 +343,25 @@ msgstr "Nee" #: pretix/static/lightbox/js/lightbox.js:96 msgid "close" -msgstr "" +msgstr "Zoumaachen" #: pretix/static/pretixbase/js/addressform.js:90 #: pretix/static/pretixpresale/js/ui/main.js:525 msgid "required" -msgstr "" +msgstr "obligatoresch" #: pretix/static/pretixbase/js/asynctask.js:13 msgid "" "Your request is currently being processed. Depending on the size of your " "event, this might take up to a few minutes." msgstr "" +"Är Ufro gëtt beaarbecht. Jee no Envergure vum Evenement kann dëst bis zu e " +"puer Minutten daueren." #: pretix/static/pretixbase/js/asynctask.js:17 msgid "Your request has been queued on the server and will soon be processed." msgstr "" +"Är Ufro gouf op d'Waardelëscht um Server placéiert a gëtt geschwë beaarbecht." #: pretix/static/pretixbase/js/asynctask.js:21 msgid "" @@ -366,34 +369,41 @@ msgid "" "If this takes longer than two minutes, please contact us or go back in your " "browser and try again." msgstr "" +"Är Ufro waart um Server fir beaarbecht ze ginn. Wann dëst méi wéi zwou " +"Minutten dauert, kontaktéiert eis wgl. oder gitt zréck an Äre Browser a " +"probéiert nach eemol." #: pretix/static/pretixbase/js/asynctask.js:125 #: pretix/static/pretixbase/js/asynctask.js:182 #: pretix/static/pretixbase/js/asynctask.js:186 #: pretix/static/pretixcontrol/js/ui/mail.js:24 msgid "An error of type {code} occurred." -msgstr "" +msgstr "E Feeler ass opgetrueden. Feelercode: {code}." #: pretix/static/pretixbase/js/asynctask.js:128 msgid "" "We currently cannot reach the server, but we keep trying. Last error code: " "{code}" msgstr "" +"Mir kënnen den Ament de Server net erreechen, mee probéiere weider. Leschte " +"Feelercode: {code}" #: pretix/static/pretixbase/js/asynctask.js:162 #: pretix/static/pretixcontrol/js/ui/mail.js:21 msgid "The request took too long. Please try again." -msgstr "" +msgstr "D'Ufro huet ze laang gedauert. Probéiert nach eemol wgl." #: pretix/static/pretixbase/js/asynctask.js:188 #: pretix/static/pretixcontrol/js/ui/mail.js:26 msgid "" "We currently cannot reach the server. Please try again. Error code: {code}" msgstr "" +"Mir kënnen den Ament de Server net erreechen. Probéiert nach eemol wgl. " +"Feelercode: {code}" #: pretix/static/pretixbase/js/asynctask.js:216 msgid "We are processing your request …" -msgstr "" +msgstr "Mir verschaffen Är Ufro…" #: pretix/static/pretixbase/js/asynctask.js:219 msgid "" @@ -401,519 +411,531 @@ msgid "" "than one minute, please check your internet connection and then reload this " "page and try again." msgstr "" +"Mir schécken Är Ufro bei de Server. Wann dëst méi wéi eng Minutt dauert, " +"kontrolléiert Är Internet-Connexioun a lued dann dës Säit nei a probéiert " +"nach eemol." #: pretix/static/pretixbase/js/asynctask.js:276 msgid "If this takes longer than a few minutes, please contact us." -msgstr "" +msgstr "Wann dëst méi laang wéi e puer Minutten dauert, kontaktéiert eis wgl." #: pretix/static/pretixbase/js/asynctask.js:331 msgid "Close message" -msgstr "" +msgstr "Message zoumaachen" #: pretix/static/pretixcontrol/js/clipboard.js:23 msgid "Copied!" -msgstr "" +msgstr "Kopéiert!" #: pretix/static/pretixcontrol/js/clipboard.js:29 msgid "Press Ctrl-C to copy!" -msgstr "" +msgstr "Dréckt Ctrl-C fir ze kopéieren!" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:12 #: pretix/static/pretixcontrol/js/ui/checkinrules.js:18 #: pretix/static/pretixcontrol/js/ui/checkinrules.js:24 msgid "is one of" -msgstr "" +msgstr "ass ee vun" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:30 msgid "is before" -msgstr "" +msgstr "ass virun" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:34 msgid "is after" -msgstr "" +msgstr "ass no" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:40 msgid "=" -msgstr "" +msgstr "=" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:99 msgid "Product" -msgstr "" +msgstr "Produit" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:103 msgid "Product variation" -msgstr "" +msgstr "Variant vum Produit" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:107 msgid "Gate" -msgstr "" +msgstr "Statioun" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:111 msgid "Current date and time" -msgstr "" +msgstr "Aktuellen Datum an Auerzäit" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:115 msgid "Current day of the week (1 = Monday, 7 = Sunday)" -msgstr "" +msgstr "Aktuellen Wochendag (1 = Méindeg, 7 = Sonndeg)" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:119 msgid "Current entry status" -msgstr "" +msgstr "Aktuellen Status vun der Entrée" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:123 msgid "Number of previous entries" -msgstr "" +msgstr "Unzuel vu viregten Entréeën" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:127 msgid "Number of previous entries since midnight" -msgstr "" +msgstr "Unzuel vu viregten Entréeën säit Mëtternuecht" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:131 msgid "Number of previous entries since" -msgstr "" +msgstr "Unzuel vu viregten Entréeën säit" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:135 msgid "Number of previous entries before" -msgstr "" +msgstr "Unzuel vu viregten Entréeën virun" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:139 msgid "Number of days with a previous entry" -msgstr "" +msgstr "Unzuel un Deeg mat enger viregter Entrée" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:143 msgid "Number of days with a previous entry since" -msgstr "" +msgstr "Unzuel un Deeg mat enger viregter Entrée säit" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:147 msgid "Number of days with a previous entry before" -msgstr "" +msgstr "Unzuel un Deeg mat enger viregter Entrée virun" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:151 msgid "Minutes since last entry (-1 on first entry)" -msgstr "" +msgstr "Minutten säit der leschter Entrée (-1 bei der éischter Entrée)" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:155 msgid "Minutes since first entry (-1 on first entry)" -msgstr "" +msgstr "Minutten säit der éischter Entrée (-1 bei der éischter Entrée)" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:182 msgid "All of the conditions below (AND)" -msgstr "" +msgstr "All follgend Konditiounen (AN)" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:183 msgid "At least one of the conditions below (OR)" -msgstr "" +msgstr "Op mannst eng vu follengde Konditiounen (ODER)" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:184 msgid "Event start" -msgstr "" +msgstr "Start vum Evenement" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:185 msgid "Event end" -msgstr "" +msgstr "Schluss vum Evenement" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:186 msgid "Event admission" -msgstr "" +msgstr "Zougang" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:187 msgid "custom date and time" -msgstr "" +msgstr "Festen Zäitpunkt" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:188 msgid "custom time" -msgstr "" +msgstr "Fest Auerzäit" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:189 msgid "Tolerance (minutes)" -msgstr "" +msgstr "Toleranz (Minutten)" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:190 msgid "Add condition" -msgstr "" +msgstr "Eng Konditioun bäisetzen" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:191 msgid "minutes" -msgstr "" +msgstr "Minutten" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:192 msgid "Duplicate" -msgstr "" +msgstr "Duplizéieren" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:193 msgctxt "entry_status" msgid "present" -msgstr "" +msgstr "present" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:194 msgctxt "entry_status" msgid "absent" -msgstr "" +msgstr "absent" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:289 msgid "Error: Product not found!" -msgstr "" +msgstr "Feeler: Produit gouf net fonnt!" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:296 msgid "Error: Variation not found!" -msgstr "" +msgstr "Feeler: Variant gouf net fonnt!" #: pretix/static/pretixcontrol/js/ui/editor.js:171 msgid "Check-in QR" -msgstr "" +msgstr "Check-in-QR-Code" #: pretix/static/pretixcontrol/js/ui/editor.js:549 msgid "The PDF background file could not be loaded for the following reason:" -msgstr "" +msgstr "Den Hannergrond-PDF-Fichier konnt net geluede gi wëll:" #: pretix/static/pretixcontrol/js/ui/editor.js:904 msgid "Group of objects" -msgstr "" +msgstr "Grupp un Objeten" #: pretix/static/pretixcontrol/js/ui/editor.js:909 msgid "Text object (deprecated)" -msgstr "" +msgstr "Textobjet (veraalt)" #: pretix/static/pretixcontrol/js/ui/editor.js:911 msgid "Text box" -msgstr "" +msgstr "Textbox" #: pretix/static/pretixcontrol/js/ui/editor.js:913 msgid "Barcode area" -msgstr "" +msgstr "Barcode" #: pretix/static/pretixcontrol/js/ui/editor.js:915 msgid "Image area" -msgstr "" +msgstr "Bild" #: pretix/static/pretixcontrol/js/ui/editor.js:917 msgid "Powered by pretix" -msgstr "" +msgstr "Powered vu pretix" #: pretix/static/pretixcontrol/js/ui/editor.js:919 msgid "Object" -msgstr "" +msgstr "Objet" #: pretix/static/pretixcontrol/js/ui/editor.js:923 msgid "Ticket design" -msgstr "" +msgstr "Design vum Ticket" #: pretix/static/pretixcontrol/js/ui/editor.js:1292 msgid "Saving failed." -msgstr "" +msgstr "Konnt net gespäichert ginn." #: pretix/static/pretixcontrol/js/ui/editor.js:1361 #: pretix/static/pretixcontrol/js/ui/editor.js:1412 msgid "Error while uploading your PDF file, please try again." -msgstr "" +msgstr "Feeler beim ropluede vun Ärem PDF-Fichier. Probéiert nach eemol wgl." #: pretix/static/pretixcontrol/js/ui/editor.js:1395 msgid "Do you really want to leave the editor without saving your changes?" msgstr "" +"Wëllt Dir wierklech den Editeur verloossen ouni Är Ännerungen ze späicheren?" #: pretix/static/pretixcontrol/js/ui/mail.js:19 msgid "An error has occurred." -msgstr "" +msgstr "E Feeler ass opgetrueden." #: pretix/static/pretixcontrol/js/ui/mail.js:52 msgid "Generating messages …" -msgstr "" +msgstr "Messagen ginn generéiert…" #: pretix/static/pretixcontrol/js/ui/main.js:69 msgid "Unknown error." -msgstr "" +msgstr "Onbekannte Feeler." #: pretix/static/pretixcontrol/js/ui/main.js:292 msgid "Your color has great contrast and will provide excellent accessibility." -msgstr "" +msgstr "Är Faarf huet e gudde Kontrast an ass einfach ze liesen." #: pretix/static/pretixcontrol/js/ui/main.js:296 msgid "" "Your color has decent contrast and is sufficient for minimum accessibility " "requirements." -msgstr "" +msgstr "Är Faarf huet e genuch Kontrast an ass gutt genuch ze liesen." #: pretix/static/pretixcontrol/js/ui/main.js:300 msgid "" "Your color has insufficient contrast to white. Accessibility of your site " "will be impacted." msgstr "" +"Är Faarf huet net genuch Kontrast. D'Accessibilitéit vun Ärer Säit wäert " +"beanträchtegt sinn." #: pretix/static/pretixcontrol/js/ui/main.js:417 #: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "Search query" -msgstr "" +msgstr "Sich" #: pretix/static/pretixcontrol/js/ui/main.js:435 msgid "All" -msgstr "" +msgstr "All" #: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "None" -msgstr "" +msgstr "Keen" #: pretix/static/pretixcontrol/js/ui/main.js:440 msgid "Selected only" -msgstr "" +msgstr "Nëmmen ausgewielten" #: pretix/static/pretixcontrol/js/ui/main.js:813 msgid "Enter page number between 1 and %(max)s." -msgstr "" +msgstr "Gitt eng Säitenzuel tëscht 1 an %(max)s un." #: pretix/static/pretixcontrol/js/ui/main.js:816 msgid "Invalid page number." -msgstr "" +msgstr "Ongülteg Säitenzuel." #: pretix/static/pretixcontrol/js/ui/main.js:974 msgid "Use a different name internally" -msgstr "" +msgstr "Intern en aneren Numm benotzen" #: pretix/static/pretixcontrol/js/ui/main.js:1014 msgid "Click to close" -msgstr "" +msgstr "Klickt fir zouzemaachen" #: pretix/static/pretixcontrol/js/ui/main.js:1095 msgid "You have unsaved changes!" -msgstr "" +msgstr "Dir hutt net gespäichert Ännerungen!" #: pretix/static/pretixcontrol/js/ui/orderchange.js:25 msgid "Calculating default price…" -msgstr "" +msgstr "Standardpräis gëtt gerechent…" #: pretix/static/pretixcontrol/js/ui/plugins.js:69 msgid "No results" -msgstr "" +msgstr "Keng Resultater" #: pretix/static/pretixcontrol/js/ui/question.js:41 msgid "Others" -msgstr "" +msgstr "Aner" #: pretix/static/pretixcontrol/js/ui/question.js:81 msgid "Count" -msgstr "" +msgstr "Unzuel" #: pretix/static/pretixcontrol/js/ui/subevent.js:112 msgid "(one more date)" msgid_plural "({num} more dates)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "(ee weideren Datum)" +msgstr[1] "({num} weider Datumer)" #: pretix/static/pretixpresale/js/ui/cart.js:47 msgid "" "The items in your cart are no longer reserved for you. You can still " "complete your order as long as they’re available." msgstr "" +"D'Produiten an Ärem Weenche sinn net méi fir Iech reservéiert. Dir kënnt " +"d'Bestellung nach ëmmer ofschléissen esou laang wéi si disponibel sinn." #: pretix/static/pretixpresale/js/ui/cart.js:49 msgid "Cart expired" -msgstr "" +msgstr "Weenchen ofgelaf" #: pretix/static/pretixpresale/js/ui/cart.js:58 #: pretix/static/pretixpresale/js/ui/cart.js:84 msgid "Your cart is about to expire." -msgstr "" +msgstr "Äre Weenche leeft geschwënn of." #: pretix/static/pretixpresale/js/ui/cart.js:62 msgid "The items in your cart are reserved for you for one minute." msgid_plural "The items in your cart are reserved for you for {num} minutes." msgstr[0] "" +"D'Produiten an Ärem Weenche si wärend enger Minutt fir Iech reservéiert." msgstr[1] "" +"D'Produiten an Ärem Weenche si wärend {num} Minutten fir Iech reservéiert." #: pretix/static/pretixpresale/js/ui/cart.js:83 msgid "Your cart has expired." -msgstr "" +msgstr "Äre Weenchen ass ofgelaf." #: pretix/static/pretixpresale/js/ui/cart.js:86 msgid "" "The items in your cart are no longer reserved for you. You can still " "complete your order as long as they're available." msgstr "" +"D'Produiten an Ärem Weenche sinn net méi fir Iech reservéiert. Dir kënnt " +"d'Bestellung nach ëmmer ofschléissen esou laang wéi si disponibel sinn." #: pretix/static/pretixpresale/js/ui/cart.js:87 msgid "Do you want to renew the reservation period?" -msgstr "" +msgstr "Wëllt Dir d'Reservéierung verlängeren?" #: pretix/static/pretixpresale/js/ui/cart.js:90 msgid "Renew reservation" -msgstr "" +msgstr "D'Reservéierung verlängeren" #: pretix/static/pretixpresale/js/ui/main.js:194 msgid "The organizer keeps %(currency)s %(amount)s" -msgstr "" +msgstr "Den Organisateur hält %(currency)s %(amount)s" #: pretix/static/pretixpresale/js/ui/main.js:202 msgid "You get %(currency)s %(amount)s back" -msgstr "" +msgstr "Dir kritt %(currency)s %(amount)s zréck" #: pretix/static/pretixpresale/js/ui/main.js:218 msgid "Please enter the amount the organizer can keep." -msgstr "" +msgstr "Gitt wgl. e Montant an, deen den Organisateur hale kann." #: pretix/static/pretixpresale/js/ui/main.js:570 msgid "Your local time:" -msgstr "" +msgstr "Är lokal Auerzäit:" #: pretix/static/pretixpresale/js/walletdetection.js:39 msgid "Google Pay" -msgstr "" +msgstr "Google Pay" #: pretix/static/pretixpresale/js/widget/widget.js:16 msgctxt "widget" msgid "Quantity" -msgstr "" +msgstr "Quantitéit" #: pretix/static/pretixpresale/js/widget/widget.js:17 msgctxt "widget" msgid "Decrease quantity" -msgstr "" +msgstr "Quantitéit reduzéieren" #: pretix/static/pretixpresale/js/widget/widget.js:18 msgctxt "widget" msgid "Increase quantity" -msgstr "" +msgstr "Quantitéit vergréisseren" #: pretix/static/pretixpresale/js/widget/widget.js:19 msgctxt "widget" msgid "Filter events by" -msgstr "" +msgstr "Evenementer filteren no" #: pretix/static/pretixpresale/js/widget/widget.js:20 msgctxt "widget" msgid "Filter" -msgstr "" +msgstr "Filteren" #: pretix/static/pretixpresale/js/widget/widget.js:21 msgctxt "widget" msgid "Price" -msgstr "" +msgstr "Präis" #: pretix/static/pretixpresale/js/widget/widget.js:22 #, javascript-format msgctxt "widget" msgid "Original price: %s" -msgstr "" +msgstr "Originalpräis: %s" #: pretix/static/pretixpresale/js/widget/widget.js:23 #, javascript-format msgctxt "widget" msgid "New price: %s" -msgstr "" +msgstr "Neie Präis: %s" #: pretix/static/pretixpresale/js/widget/widget.js:24 msgctxt "widget" msgid "Select" -msgstr "" +msgstr "Auswielen" #: pretix/static/pretixpresale/js/widget/widget.js:25 #, javascript-format msgctxt "widget" msgid "Select %s" -msgstr "" +msgstr "%s auswielen" #: pretix/static/pretixpresale/js/widget/widget.js:26 #, javascript-format msgctxt "widget" msgid "Select variant %s" -msgstr "" +msgstr "Variant %s ausiwelen" #: pretix/static/pretixpresale/js/widget/widget.js:27 msgctxt "widget" msgid "Sold out" -msgstr "" +msgstr "Ausverkaf" #: pretix/static/pretixpresale/js/widget/widget.js:28 msgctxt "widget" msgid "Buy" -msgstr "" +msgstr "Kafen" #: pretix/static/pretixpresale/js/widget/widget.js:29 msgctxt "widget" msgid "Register" -msgstr "" +msgstr "Registréieren" #: pretix/static/pretixpresale/js/widget/widget.js:30 msgctxt "widget" msgid "Reserved" -msgstr "" +msgstr "Reservéiert" #: pretix/static/pretixpresale/js/widget/widget.js:31 msgctxt "widget" msgid "FREE" -msgstr "" +msgstr "GRATIS" #: pretix/static/pretixpresale/js/widget/widget.js:32 msgctxt "widget" msgid "from %(currency)s %(price)s" -msgstr "" +msgstr "vun %(currency)s %(price)s un" #: pretix/static/pretixpresale/js/widget/widget.js:33 #, javascript-format msgctxt "widget" msgid "Image of %s" -msgstr "" +msgstr "Bild vun %s" #: pretix/static/pretixpresale/js/widget/widget.js:34 msgctxt "widget" msgid "incl. %(rate)s% %(taxname)s" -msgstr "" +msgstr "inkl. %(rate)s% %(taxname)s" #: pretix/static/pretixpresale/js/widget/widget.js:35 msgctxt "widget" msgid "plus %(rate)s% %(taxname)s" -msgstr "" +msgstr "plus %(rate)s% %(taxname)s" #: pretix/static/pretixpresale/js/widget/widget.js:36 msgctxt "widget" msgid "incl. taxes" -msgstr "" +msgstr "inkl. Steieren" #: pretix/static/pretixpresale/js/widget/widget.js:37 msgctxt "widget" msgid "plus taxes" -msgstr "" +msgstr "plus Steieren" #: pretix/static/pretixpresale/js/widget/widget.js:38 #, javascript-format msgctxt "widget" msgid "currently available: %s" -msgstr "" +msgstr "aktuell disponibel: %s" #: pretix/static/pretixpresale/js/widget/widget.js:39 msgctxt "widget" msgid "Only available with a voucher" -msgstr "" +msgstr "Nëmme mat engem Bong disponibel" #: pretix/static/pretixpresale/js/widget/widget.js:40 #: pretix/static/pretixpresale/js/widget/widget.js:43 msgctxt "widget" msgid "Not yet available" -msgstr "" +msgstr "Nach net disponibel" #: pretix/static/pretixpresale/js/widget/widget.js:41 msgctxt "widget" msgid "Not available anymore" -msgstr "" +msgstr "Net méi disponibel" #: pretix/static/pretixpresale/js/widget/widget.js:42 msgctxt "widget" msgid "Currently not available" -msgstr "" +msgstr "Aktuell net disponibel" #: pretix/static/pretixpresale/js/widget/widget.js:44 #, javascript-format msgctxt "widget" msgid "minimum amount to order: %s" -msgstr "" +msgstr "minimal Quantitéit pro Bestellung: %s" #: pretix/static/pretixpresale/js/widget/widget.js:45 msgctxt "widget" msgid "Close ticket shop" -msgstr "" +msgstr "Ticket-Shop zoumaachen" #: pretix/static/pretixpresale/js/widget/widget.js:46 msgctxt "widget" msgid "The ticket shop could not be loaded." -msgstr "" +msgstr "Den Ticket-Shop konnt net geluede ginn." #: pretix/static/pretixpresale/js/widget/widget.js:47 msgctxt "widget" @@ -921,21 +943,23 @@ msgid "" "There are currently a lot of users in this ticket shop. Please open the shop " "in a new tab to continue." msgstr "" +"Aktuell si vill Benotzer an dësem Ticket-Shop. Maacht d'Säit wgl. an engem " +"neien Tab op fir weiderzefueren." #: pretix/static/pretixpresale/js/widget/widget.js:49 msgctxt "widget" msgid "Open ticket shop" -msgstr "" +msgstr "Ticket-Shop opmaachen" #: pretix/static/pretixpresale/js/widget/widget.js:50 msgctxt "widget" msgid "Checkout" -msgstr "" +msgstr "Bestellung ofschléissen" #: pretix/static/pretixpresale/js/widget/widget.js:51 msgctxt "widget" msgid "The cart could not be created. Please try again later" -msgstr "" +msgstr "De Weenche konnt net erstallt ginn. Probéiert méi spéit nach eemol wgl." #: pretix/static/pretixpresale/js/widget/widget.js:52 msgctxt "widget" @@ -943,11 +967,13 @@ msgid "" "We could not create your cart, since there are currently too many users in " "this ticket shop. Please click \"Continue\" to retry in a new tab." msgstr "" +"Mir konnten Äre Weenchen net erstelle wëll ze vill Benotzer am Ticket-Shop " +"sinn. Klickt op \"Weider\" a probéiert an engem neien Tab." #: pretix/static/pretixpresale/js/widget/widget.js:54 msgctxt "widget" msgid "Waiting list" -msgstr "" +msgstr "Waardelëscht" #: pretix/static/pretixpresale/js/widget/widget.js:55 msgctxt "widget" @@ -955,96 +981,98 @@ msgid "" "You currently have an active cart for this event. If you select more " "products, they will be added to your existing cart." msgstr "" +"Dir hutt den Ament en aktive Weenche fir dësen Evenement. Wann Dir méi " +"Produiten auswielt, ginn dës an Ären aktuelle Weenche geluecht." #: pretix/static/pretixpresale/js/widget/widget.js:57 msgctxt "widget" msgid "Resume checkout" -msgstr "" +msgstr "Mat der Bestellung weiderfueren" #: pretix/static/pretixpresale/js/widget/widget.js:58 msgctxt "widget" msgid "Redeem a voucher" -msgstr "" +msgstr "E Bong aléisen" #: pretix/static/pretixpresale/js/widget/widget.js:59 msgctxt "widget" msgid "Redeem" -msgstr "" +msgstr "Aléisen" #: pretix/static/pretixpresale/js/widget/widget.js:60 msgctxt "widget" msgid "Voucher code" -msgstr "" +msgstr "Code vum Bong" #: pretix/static/pretixpresale/js/widget/widget.js:61 msgctxt "widget" msgid "Close" -msgstr "" +msgstr "Zoumaachen" #: pretix/static/pretixpresale/js/widget/widget.js:62 msgctxt "widget" msgid "Close checkout" -msgstr "" +msgstr "Bestellung zoumaachen" #: pretix/static/pretixpresale/js/widget/widget.js:63 msgctxt "widget" msgid "You cannot cancel this operation. Please wait for loading to finish." -msgstr "" +msgstr "Dir kënnt dës Aktioun net ofbriechen. Waart wgl. bis se fäerdeg ass." #: pretix/static/pretixpresale/js/widget/widget.js:64 msgctxt "widget" msgid "Continue" -msgstr "" +msgstr "Weider" #: pretix/static/pretixpresale/js/widget/widget.js:65 msgctxt "widget" msgid "Show variants" -msgstr "" +msgstr "Varianten uweisen" #: pretix/static/pretixpresale/js/widget/widget.js:66 msgctxt "widget" msgid "Hide variants" -msgstr "" +msgstr "Variante verstoppen" #: pretix/static/pretixpresale/js/widget/widget.js:67 msgctxt "widget" msgid "Choose a different event" -msgstr "" +msgstr "En aneren Evenement wielen" #: pretix/static/pretixpresale/js/widget/widget.js:68 msgctxt "widget" msgid "Choose a different date" -msgstr "" +msgstr "En aneren Datum wielen" #: pretix/static/pretixpresale/js/widget/widget.js:69 msgctxt "widget" msgid "Back" -msgstr "" +msgstr "Zréck" #: pretix/static/pretixpresale/js/widget/widget.js:70 msgctxt "widget" msgid "Next month" -msgstr "" +msgstr "Nächste Mount" #: pretix/static/pretixpresale/js/widget/widget.js:71 msgctxt "widget" msgid "Previous month" -msgstr "" +msgstr "Viregte Mount" #: pretix/static/pretixpresale/js/widget/widget.js:72 msgctxt "widget" msgid "Next week" -msgstr "" +msgstr "Nächst Woch" #: pretix/static/pretixpresale/js/widget/widget.js:73 msgctxt "widget" msgid "Previous week" -msgstr "" +msgstr "Viregt Woch" #: pretix/static/pretixpresale/js/widget/widget.js:74 msgctxt "widget" msgid "Open seat selection" -msgstr "" +msgstr "D'Auswiel vun de Sëtzplazen opmaachen" #: pretix/static/pretixpresale/js/widget/widget.js:75 msgctxt "widget" @@ -1053,112 +1081,115 @@ msgid "" "add yourself to the waiting list. We will then notify if seats are available " "again." msgstr "" +"Verschidden oder all Kategorië vun Tickete sinn ausverkaf. Wann Dir wëllt " +"kënnt Dir Iech op d'Waardelëscht aschreiwen. Mir deelen Iech da mat, wann " +"nees Plaze fräiginn." #: pretix/static/pretixpresale/js/widget/widget.js:76 msgctxt "widget" msgid "Load more" -msgstr "" +msgstr "Méi lueden" #: pretix/static/pretixpresale/js/widget/widget.js:78 msgid "Mo" -msgstr "" +msgstr "Mé" #: pretix/static/pretixpresale/js/widget/widget.js:79 msgid "Tu" -msgstr "" +msgstr "Dë" #: pretix/static/pretixpresale/js/widget/widget.js:80 msgid "We" -msgstr "" +msgstr "Më" #: pretix/static/pretixpresale/js/widget/widget.js:81 msgid "Th" -msgstr "" +msgstr "Do" #: pretix/static/pretixpresale/js/widget/widget.js:82 msgid "Fr" -msgstr "" +msgstr "Fr" #: pretix/static/pretixpresale/js/widget/widget.js:83 msgid "Sa" -msgstr "" +msgstr "Sa" #: pretix/static/pretixpresale/js/widget/widget.js:84 msgid "Su" -msgstr "" +msgstr "So" #: pretix/static/pretixpresale/js/widget/widget.js:85 msgid "Monday" -msgstr "" +msgstr "Méindeg" #: pretix/static/pretixpresale/js/widget/widget.js:86 msgid "Tuesday" -msgstr "" +msgstr "Dënschdeg" #: pretix/static/pretixpresale/js/widget/widget.js:87 msgid "Wednesday" -msgstr "" +msgstr "Mëttwoch" #: pretix/static/pretixpresale/js/widget/widget.js:88 msgid "Thursday" -msgstr "" +msgstr "Donneschdeg" #: pretix/static/pretixpresale/js/widget/widget.js:89 msgid "Friday" -msgstr "" +msgstr "Freideg" #: pretix/static/pretixpresale/js/widget/widget.js:90 msgid "Saturday" -msgstr "" +msgstr "Samschdeg" #: pretix/static/pretixpresale/js/widget/widget.js:91 msgid "Sunday" -msgstr "" +msgstr "Sonndeg" #: pretix/static/pretixpresale/js/widget/widget.js:94 msgid "January" -msgstr "" +msgstr "Januar" #: pretix/static/pretixpresale/js/widget/widget.js:95 msgid "February" -msgstr "" +msgstr "Februar" #: pretix/static/pretixpresale/js/widget/widget.js:96 msgid "March" -msgstr "" +msgstr "Mäerz" #: pretix/static/pretixpresale/js/widget/widget.js:97 msgid "April" -msgstr "" +msgstr "Abrëll" #: pretix/static/pretixpresale/js/widget/widget.js:98 msgid "May" -msgstr "" +msgstr "Mee" #: pretix/static/pretixpresale/js/widget/widget.js:99 msgid "June" -msgstr "" +msgstr "Juni" #: pretix/static/pretixpresale/js/widget/widget.js:100 msgid "July" -msgstr "" +msgstr "Juli" #: pretix/static/pretixpresale/js/widget/widget.js:101 msgid "August" -msgstr "" +msgstr "August" #: pretix/static/pretixpresale/js/widget/widget.js:102 msgid "September" -msgstr "" +msgstr "September" #: pretix/static/pretixpresale/js/widget/widget.js:103 msgid "October" -msgstr "" +msgstr "Oktober" #: pretix/static/pretixpresale/js/widget/widget.js:104 msgid "November" -msgstr "" +msgstr "November" #: pretix/static/pretixpresale/js/widget/widget.js:105 msgid "December" -msgstr "" +msgstr "Dezember" From f6aa17a0ff6580423f20505c1377127d5db70b2c Mon Sep 17 00:00:00 2001 From: Sven Muhlen Date: Tue, 21 Oct 2025 17:14:37 +0200 Subject: [PATCH 07/33] Translations: Update Luxembourgish Currently translated at 16.5% (1007 of 6094 strings) Translation: pretix/pretix Translate-URL: https://translate.pretix.eu/projects/pretix/pretix/lb/ powered by weblate --- src/pretix/locale/lb/LC_MESSAGES/django.po | 1999 ++++++++++---------- 1 file changed, 1043 insertions(+), 956 deletions(-) diff --git a/src/pretix/locale/lb/LC_MESSAGES/django.po b/src/pretix/locale/lb/LC_MESSAGES/django.po index b3598a7e81..57ec709c26 100644 --- a/src/pretix/locale/lb/LC_MESSAGES/django.po +++ b/src/pretix/locale/lb/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-21 07:26+0000\n" -"PO-Revision-Date: 2025-10-21 08:08+0000\n" +"PO-Revision-Date: 2025-10-21 17:00+0000\n" "Last-Translator: Sven Muhlen \n" "Language-Team: Luxembourgish \n" @@ -25,197 +25,200 @@ msgstr "Englesch" #: pretix/_base_settings.py:88 msgid "German" -msgstr "" +msgstr "Däitsch" #: pretix/_base_settings.py:89 msgid "German (informal)" -msgstr "" +msgstr "Däitsch (Du)" #: pretix/_base_settings.py:90 msgid "Arabic" -msgstr "" +msgstr "Arabesch" #: pretix/_base_settings.py:91 msgid "Basque" -msgstr "" +msgstr "Basque" #: pretix/_base_settings.py:92 msgid "Catalan" -msgstr "" +msgstr "Katalanesch" #: pretix/_base_settings.py:93 msgid "Chinese (simplified)" -msgstr "" +msgstr "Chineesesch (vereinfacht)" #: pretix/_base_settings.py:94 msgid "Chinese (traditional)" -msgstr "" +msgstr "Chineesesch (traditionell)" #: pretix/_base_settings.py:95 msgid "Czech" -msgstr "" +msgstr "Tschechesch" #: pretix/_base_settings.py:96 msgid "Croatian" -msgstr "" +msgstr "Kroatesch" #: pretix/_base_settings.py:97 msgid "Danish" -msgstr "" +msgstr "Dänesch" #: pretix/_base_settings.py:98 msgid "Dutch" -msgstr "" +msgstr "Hollännesch" #: pretix/_base_settings.py:99 msgid "Dutch (informal)" -msgstr "" +msgstr "Hollännesch (informell)" #: pretix/_base_settings.py:100 msgid "French" -msgstr "" +msgstr "Franséisch" #: pretix/_base_settings.py:101 msgid "Finnish" -msgstr "" +msgstr "Finnesch" #: pretix/_base_settings.py:102 msgid "Galician" -msgstr "" +msgstr "Galicesch" #: pretix/_base_settings.py:103 msgid "Greek" -msgstr "" +msgstr "Griichesch" #: pretix/_base_settings.py:104 msgid "Hebrew" -msgstr "" +msgstr "Hebräesch" #: pretix/_base_settings.py:105 msgid "Indonesian" -msgstr "" +msgstr "Indoneesesch" #: pretix/_base_settings.py:106 msgid "Italian" -msgstr "" +msgstr "Italieenesch" #: pretix/_base_settings.py:107 msgid "Japanese" -msgstr "" +msgstr "Japanesch" #: pretix/_base_settings.py:108 msgid "Latvian" -msgstr "" +msgstr "Lettesch" #: pretix/_base_settings.py:109 msgid "Norwegian Bokmål" -msgstr "" +msgstr "Norwegesch (Bokmål)" #: pretix/_base_settings.py:110 msgid "Polish" -msgstr "" +msgstr "Polnesch" #: pretix/_base_settings.py:111 msgid "Portuguese (Portugal)" -msgstr "" +msgstr "Portugisesch (Portugal)" #: pretix/_base_settings.py:112 msgid "Portuguese (Brazil)" -msgstr "" +msgstr "Portugisesch (Brasilien)" #: pretix/_base_settings.py:113 msgid "Romanian" -msgstr "" +msgstr "Rumänesch" #: pretix/_base_settings.py:114 msgid "Russian" -msgstr "" +msgstr "Russesch" #: pretix/_base_settings.py:115 msgid "Slovak" -msgstr "" +msgstr "Slowakesch" #: pretix/_base_settings.py:116 msgid "Swedish" -msgstr "" +msgstr "Schweedesch" #: pretix/_base_settings.py:117 msgid "Spanish" -msgstr "" +msgstr "Spuenesch" #: pretix/_base_settings.py:118 msgid "Spanish (Latin America)" -msgstr "" +msgstr "Spuenesch (Latäinamerika)" #: pretix/_base_settings.py:119 msgid "Turkish" -msgstr "" +msgstr "Tierkesch" #: pretix/_base_settings.py:120 msgid "Ukrainian" -msgstr "" +msgstr "Ukrainesch" #: pretix/api/auth/devicesecurity.py:58 msgid "" "Full device access (reading and changing orders and gift cards, reading of " "products and settings)" msgstr "" +"Kompletten Accès fir den Apparat (Liesen a Verännere vu Bestellungen a " +"Bongen, Liese vu Produiten an Astellungen)" #: pretix/api/auth/devicesecurity.py:80 msgid "pretixSCAN" -msgstr "" +msgstr "pretixSCAN" #: pretix/api/auth/devicesecurity.py:118 msgid "pretixSCAN (kiosk mode, no order sync, no search)" msgstr "" +"pretixSCAN (Kiosk-Modus, keng Synchronisatioun vu Bestellungen, keng Sich)" #: pretix/api/auth/devicesecurity.py:153 msgid "pretixSCAN (online only, no order sync)" -msgstr "" +msgstr "pretixSCAN (nëmmen online, keng Synchronisatioun vu Bestellungen)" #: pretix/api/models.py:39 pretix/base/models/customers.py:422 msgid "Application name" -msgstr "" +msgstr "Numm vun der Applikatioun" #: pretix/api/models.py:42 pretix/base/models/customers.py:445 msgid "Redirection URIs" -msgstr "" +msgstr "Weiderleedung-URIen" #: pretix/api/models.py:43 pretix/base/models/customers.py:446 msgid "Allowed URIs list, space separated" -msgstr "" +msgstr "Lëscht vun autoriséierten URIen, mat Espace getrennt" #: pretix/api/models.py:47 msgid "Allowed Post Logout URIs list, space separated" -msgstr "" +msgstr "Lëscht vun autoriséierten URIen no Ofmeldung, mat Espace getrennt" #: pretix/api/models.py:51 pretix/base/models/customers.py:426 #: pretix/plugins/paypal/payment.py:114 pretix/plugins/paypal2/payment.py:111 msgid "Client ID" -msgstr "" +msgstr "Clientsnummer" #: pretix/api/models.py:55 msgid "Client secret" -msgstr "" +msgstr "Geheime Schlëssel" #: pretix/api/models.py:116 msgid "Enable webhook" -msgstr "" +msgstr "Webhook aktivéieren" #: pretix/api/models.py:117 #: pretix/control/templates/pretixcontrol/organizers/webhooks.html:36 msgid "Target URL" -msgstr "" +msgstr "Zil-URL" #: pretix/api/models.py:118 pretix/base/models/devices.py:122 #: pretix/base/models/organizer.py:352 msgid "All events (including newly created ones)" -msgstr "" +msgstr "All Evenementer (och zukünfteg erstallten)" #: pretix/api/models.py:119 pretix/base/models/devices.py:123 #: pretix/base/models/organizer.py:353 msgid "Limit to events" -msgstr "" +msgstr "Op Evenementer aschränken" #: pretix/api/models.py:120 pretix/base/exporters/orderlist.py:286 #: pretix/base/exporters/orderlist.py:1098 @@ -228,138 +231,150 @@ msgstr "" #: pretix/plugins/banktransfer/refund_export.py:46 #: pretix/plugins/checkinlists/exporters.py:525 msgid "Comment" -msgstr "" +msgstr "Kommentar" #: pretix/api/serializers/cart.py:168 pretix/api/serializers/order.py:1466 #, python-brace-format msgid "The product \"{}\" is not assigned to a quota." -msgstr "" +msgstr "De Produit \"{}\" ass kengem Contingent zougeuerdent." #: pretix/api/serializers/checkin.py:65 pretix/base/models/event.py:1718 #: pretix/base/models/items.py:1917 pretix/base/models/items.py:2203 msgid "One or more items do not belong to this event." -msgstr "" +msgstr "Een oder méi Produite gehéieren net zu dësem Evenement." #: pretix/api/serializers/checkin.py:69 pretix/api/serializers/checkin.py:72 #: pretix/base/models/items.py:2214 pretix/base/models/items.py:2217 #: pretix/base/models/waitinglist.py:310 pretix/base/models/waitinglist.py:313 msgid "The subevent does not belong to this event." -msgstr "" +msgstr "Den Termin gehéiert net zu dësem Evenement." #: pretix/api/serializers/event.py:219 msgid "" "Events cannot be created as 'live'. Quotas and payment must be added to the " "event before sales can go live." msgstr "" +"Evenementer kënnen net als 'verëffentlecht' erstallt gi, wëll virdru " +"Contingenten a Bezuelungsastellungen ugeluecht musse ginn." #: pretix/api/serializers/event.py:234 pretix/api/serializers/event.py:554 #, python-brace-format msgid "Meta data property '{name}' does not exist." -msgstr "" +msgstr "D'Metadonnée-Eegenschaft '{name}' existéiert net." #: pretix/api/serializers/event.py:237 pretix/api/serializers/event.py:557 #, python-brace-format msgid "Meta data property '{name}' does not allow value '{value}'." -msgstr "" +msgstr "D'Metadonnée-Eegenschaft '{name}' erlaabt de Wäert '{value}' net." #: pretix/api/serializers/event.py:283 pretix/api/serializers/organizer.py:85 #, python-brace-format msgid "Unknown plugin: '{name}'." -msgstr "" +msgstr "Onbekannte Plugin: '{name}'." #: pretix/api/serializers/event.py:286 pretix/api/serializers/organizer.py:88 #, python-brace-format msgid "Restricted plugin: '{name}'." -msgstr "" +msgstr "Ageschränkte Plugin: '{name}'." #: pretix/api/serializers/item.py:86 pretix/api/serializers/item.py:148 #: pretix/api/serializers/item.py:359 #, python-brace-format msgid "Item meta data property '{name}' does not exist." -msgstr "" +msgstr "D'Metadonnée-Eegenschaft '{name}' existéiert net." #: pretix/api/serializers/item.py:207 pretix/control/forms/item.py:1274 msgid "The bundled item must not be the same item as the bundling one." -msgstr "" +msgstr "E gruppéierte Produit dierf sech net selwer enthalen." #: pretix/api/serializers/item.py:210 pretix/control/forms/item.py:1276 msgid "The bundled item must not have bundles on its own." -msgstr "" +msgstr "E gruppéierte Produit dierf keng gruppéiert Produiten enthalen." #: pretix/api/serializers/item.py:298 msgid "" "Updating add-ons, bundles, or variations via PATCH/PUT is not supported. " "Please use the dedicated nested endpoint." msgstr "" +"Varianten, Zousazproduite a gruppéiert Produite kënnen net per PATCH/PUT " +"verännert ginn, benotzt wgl. eng separate Ressource." #: pretix/api/serializers/item.py:306 msgid "Only admission products can currently be personalized." -msgstr "" +msgstr "Den Amen kënnen nëmmen Zougangsproduiten personaliséiert ginn." #: pretix/api/serializers/item.py:317 msgid "" "Gift card products should not be associated with non-zero tax rates since " "sales tax will be applied when the gift card is redeemed." msgstr "" +"Bonge mussen engem 0%-Steiersaz zougeuerdent sinn, wëll d’Ëmsazsteier " +"berechent gëtt, wann de Bong ageléist gëtt." #: pretix/api/serializers/item.py:322 pretix/control/forms/item.py:781 msgid "Gift card products should not be admission products at the same time." -msgstr "" +msgstr "Bonge kënne keng Zougangsproduiten sinn." #: pretix/api/serializers/item.py:524 msgid "" "Updating options via PATCH/PUT is not supported. Please use the dedicated " "nested endpoint." msgstr "" +"Varianten kënnen net per PATCH/PUT verännert ginn, benotzt wgl. eng separate " +"Ressource." #: pretix/api/serializers/item.py:538 pretix/control/forms/item.py:176 msgid "Question cannot depend on a question asked during check-in." msgstr "" +"D'Fro dierf net vun enger Fro ofhänken, déi réischt beim Check-in gestallt " +"gëtt." #: pretix/api/serializers/item.py:543 pretix/control/forms/item.py:181 msgid "Circular dependency between questions detected." -msgstr "" +msgstr "Et gouf eng géigesäiteg Dependance tëscht Froen erkannt." #: pretix/api/serializers/item.py:548 pretix/control/forms/item.py:190 msgid "This type of question cannot be asked during check-in." -msgstr "" +msgstr "Dësen Typ u Fro kann net beim Check-in gestallt ginn." #: pretix/api/serializers/item.py:551 pretix/control/forms/item.py:198 msgid "This type of question cannot be shown during check-in." -msgstr "" +msgstr "Dësen Typ u Fro kann net beim Check-in ugewise ginn." #: pretix/api/serializers/media.py:108 msgid "" "A medium with the same identifier and type already exists in your organizer " "account." msgstr "" +"E Medium mat der nämmlechter Nummer an dem nämmlechten Typ existéiert schonn " +"an Ärem Organisateurskont." #: pretix/api/serializers/order.py:81 #, python-brace-format msgid "\"{input}\" is not a valid choice." -msgstr "" +msgstr "\"{input}\" ass kee gültege Choix." #: pretix/api/serializers/order.py:1427 pretix/api/views/cart.py:224 #: pretix/base/services/orders.py:1619 #, python-brace-format msgid "The selected seat \"{seat}\" is not available." -msgstr "" +msgstr "Déi ausgewielte Sëtzplaz \"{seat}\" ass net disponibel." #: pretix/api/serializers/order.py:1453 pretix/api/serializers/order.py:1460 #, python-brace-format msgid "The product \"{}\" is not available on this date." -msgstr "" +msgstr "De Produit \"{}\" ass op dësem Datum net disponibel." #: pretix/api/serializers/order.py:1475 pretix/api/views/cart.py:200 #, python-brace-format msgid "" "There is not enough quota available on quota \"{}\" to perform the operation." -msgstr "" +msgstr "De Contingent \"{}\" huet net genuch Kapazitéit fir dës Ännerung." #: pretix/api/serializers/organizer.py:145 #: pretix/control/forms/organizer.py:925 pretix/presale/forms/customer.py:458 msgid "An account with this email address is already registered." -msgstr "" +msgstr "E Kont mat dëser E-Mail-Adress ass scho registréiert." #: pretix/api/serializers/organizer.py:278 #: pretix/control/forms/organizer.py:761 @@ -367,30 +382,33 @@ msgid "" "A gift card with the same secret already exists in your or an affiliated " "organizer account." msgstr "" +"E Bong mat dem nämmlechte Code existéiert schonn an dësem oder engem " +"verbonnenen Organisteurskont." #: pretix/api/serializers/organizer.py:369 #: pretix/control/views/organizer.py:1042 msgid "pretix account invitation" -msgstr "" +msgstr "pretix Team-Invitatioun" #: pretix/api/serializers/organizer.py:391 #: pretix/control/views/organizer.py:1141 msgid "This user already has been invited for this team." -msgstr "" +msgstr "Dëse Benotzer huet schonn eng Invitatioun fir dësen Team kritt." #: pretix/api/serializers/organizer.py:407 #: pretix/control/views/organizer.py:1158 msgid "This user already has permissions for this team." -msgstr "" +msgstr "Dëse Benotzer huet schonn Zougrëffsrechter fir dësen Team." #: pretix/api/views/cart.py:209 msgid "" "The specified voucher has already been used the maximum number of times." msgstr "" +"Dëse Bong kann net méi benotzt ginn, wëll e schonn ze oft ageléist gouf." #: pretix/api/views/checkin.py:616 pretix/api/views/checkin.py:623 msgid "Medium connected to other event" -msgstr "" +msgstr "Medium ass mat engem aneren Evenement verbonnen" #: pretix/api/views/oauth.py:107 pretix/control/logdisplay.py:755 #, python-brace-format @@ -398,217 +416,225 @@ msgid "" "The application \"{application_name}\" has been authorized to access your " "account." msgstr "" +"D'Applikatioun \"{application_name}\" krut Zougrëffsrechter op Äre Kont." #: pretix/api/views/order.py:608 pretix/control/views/orders.py:1602 #: pretix/presale/views/order.py:736 pretix/presale/views/order.py:816 msgid "You cannot generate an invoice for this order." -msgstr "" +msgstr "Dir kënnt keng Rechnung fir dës Bestellung erstellen." #: pretix/api/views/order.py:613 pretix/control/views/orders.py:1604 #: pretix/presale/views/order.py:738 pretix/presale/views/order.py:818 msgid "An invoice for this order already exists." -msgstr "" +msgstr "Eng Rechnung fir dës Bestellung existéiert schonn." #: pretix/api/views/order.py:639 pretix/control/views/orders.py:1763 #: pretix/control/views/users.py:145 msgid "There was an error sending the mail. Please try again later." msgstr "" +"Et gouf e Feeler beim Verschécke vun der E-Mail. Probéiert méi spéit nach " +"eemol." #: pretix/api/views/order.py:719 pretix/base/services/cart.py:216 #: pretix/base/services/orders.py:191 pretix/presale/views/order.py:800 msgid "One of the selected products is not available in the selected country." msgstr "" +"Ee vun den ausgewielte Produiten ass net am ausgewielte Land disponibel." #: pretix/api/webhooks.py:262 pretix/base/notifications.py:233 msgid "New order placed" -msgstr "" +msgstr "Nei Bestellung agaang" #: pretix/api/webhooks.py:266 pretix/base/notifications.py:239 msgid "New order requires approval" -msgstr "" +msgstr "Nei Bestellung muss autoriséiert ginn" #: pretix/api/webhooks.py:270 pretix/base/notifications.py:245 msgid "Order marked as paid" -msgstr "" +msgstr "Nei Bestellung als bezuelt markéiert" #: pretix/api/webhooks.py:274 pretix/base/models/checkin.py:355 #: pretix/base/notifications.py:251 #: pretix/control/templates/pretixcontrol/event/mail.html:114 #: pretix/control/views/orders.py:1563 msgid "Order canceled" -msgstr "" +msgstr "Bestellung annuléiert" #: pretix/api/webhooks.py:278 pretix/base/notifications.py:257 msgid "Order reactivated" -msgstr "" +msgstr "Bestellung reaktivéiert" #: pretix/api/webhooks.py:282 pretix/base/notifications.py:263 msgid "Order expired" -msgstr "" +msgstr "Bestellung ofgelaf" #: pretix/api/webhooks.py:286 msgid "Order expiry date changed" -msgstr "" +msgstr "Bezuelfrist vun der Bestellung gouf geännert" #: pretix/api/webhooks.py:290 pretix/base/notifications.py:269 msgid "Order information changed" -msgstr "" +msgstr "Informatiounen vun der Bestellung goufen geännert" #: pretix/api/webhooks.py:294 pretix/base/notifications.py:275 msgid "Order contact address changed" -msgstr "" +msgstr "Kontakt-Adress vun der Bestellung gouf geännert" #: pretix/api/webhooks.py:298 pretix/base/notifications.py:281 #: pretix/control/templates/pretixcontrol/event/mail.html:102 msgid "Order changed" -msgstr "" +msgstr "Bestellung gouf geännert" #: pretix/api/webhooks.py:302 msgid "Refund of payment created" -msgstr "" +msgstr "Remboursement vun der Bezuelung gouf erstallt" #: pretix/api/webhooks.py:306 pretix/base/notifications.py:293 msgid "External refund of payment" -msgstr "" +msgstr "Externen Remboursement vun der Bezuelung" #: pretix/api/webhooks.py:310 msgid "Refund of payment requested by customer" -msgstr "" +msgstr "Remboursement vun der Bezuelung gouf vum Client ugefrot" #: pretix/api/webhooks.py:314 msgid "Refund of payment completed" -msgstr "" +msgstr "Remboursement vun der Bezuelung ofgeschloss" #: pretix/api/webhooks.py:318 msgid "Refund of payment canceled" -msgstr "" +msgstr "Remboursement vun der Bezuelung annuléiert" #: pretix/api/webhooks.py:322 msgid "Refund of payment failed" -msgstr "" +msgstr "Remboursement vun der Bezuelung feelgeschloen" #: pretix/api/webhooks.py:326 msgid "Payment confirmed" -msgstr "" +msgstr "Bezuelung confirméiert" #: pretix/api/webhooks.py:330 msgid "Order approved" -msgstr "" +msgstr "Bestellung confirméiert" #: pretix/api/webhooks.py:334 msgid "Order denied" -msgstr "" +msgstr "Bestellung refuséiert" #: pretix/api/webhooks.py:338 msgid "Order deleted" -msgstr "" +msgstr "Bestellung geläscht" #: pretix/api/webhooks.py:342 msgid "Ticket checked in" -msgstr "" +msgstr "Ticket agecheckt" #: pretix/api/webhooks.py:346 msgid "Ticket check-in reverted" -msgstr "" +msgstr "Check-in vum Ticket réckgängeg gemaach" #: pretix/api/webhooks.py:350 msgid "Event created" -msgstr "" +msgstr "Evenement erstallt" #: pretix/api/webhooks.py:354 msgid "Event details changed" -msgstr "" +msgstr "Detailer vum Evenement goufe geännert" #: pretix/api/webhooks.py:358 msgid "Event deleted" -msgstr "" +msgstr "Evenement geläscht" #: pretix/api/webhooks.py:362 msgctxt "subevent" msgid "Event series date added" -msgstr "" +msgstr "En neien Datum gouf bäigesat" #: pretix/api/webhooks.py:366 msgctxt "subevent" msgid "Event series date changed" -msgstr "" +msgstr "En Datum gouf geännert" #: pretix/api/webhooks.py:370 msgctxt "subevent" msgid "Event series date deleted" -msgstr "" +msgstr "En Datum gouf geläscht" #: pretix/api/webhooks.py:374 msgid "Product changed" -msgstr "" +msgstr "Produit gouf geännert" #: pretix/api/webhooks.py:375 msgid "" "This includes product added or deleted and changes to nested objects like " "variations or bundles." msgstr "" +"Dës beinhalt all bäigesaten oder geläschte Produiten an Ännerungen zu " +"Ënnerobjeten, wéi Varianten a gruppéiert Produiten." #: pretix/api/webhooks.py:380 msgid "Shop taken live" -msgstr "" +msgstr "Shop gouf verëffentlecht" #: pretix/api/webhooks.py:384 msgid "Shop taken offline" -msgstr "" +msgstr "Shop gouf offline geholl" #: pretix/api/webhooks.py:388 msgid "Test-Mode of shop has been activated" -msgstr "" +msgstr "Test-Modus vum Shop gouf aktivéiert" #: pretix/api/webhooks.py:392 msgid "Test-Mode of shop has been deactivated" -msgstr "" +msgstr "Test-Modus vum Shop gouf deaktivéiert" #: pretix/api/webhooks.py:396 msgid "Waiting list entry added" -msgstr "" +msgstr "Eng Aschreiwung op der Waardelëscht gouf bäigesat" #: pretix/api/webhooks.py:400 msgid "Waiting list entry changed" -msgstr "" +msgstr "Eng Aschreiwung op der Waardelëscht gouf geännert" #: pretix/api/webhooks.py:404 msgid "Waiting list entry deleted" -msgstr "" +msgstr "Eng Aschreiwung op der Waardelëscht gouf geläscht" #: pretix/api/webhooks.py:408 msgid "Waiting list entry received voucher" -msgstr "" +msgstr "Eng Aschreiwung op der Waardelëscht krut e Bong" #: pretix/api/webhooks.py:412 msgid "Voucher added" -msgstr "" +msgstr "Bong bäigesat" #: pretix/api/webhooks.py:416 msgid "Voucher changed" -msgstr "" +msgstr "Bong gouf geännert" #: pretix/api/webhooks.py:417 msgid "" "Only includes explicit changes to the voucher, not e.g. an increase of the " "number of redemptions." msgstr "" +"Nëmmen explizit Ännerungen um Bong, an net, zum Beispill, eng Erhéijung vun " +"der Unzuel vun Aléisungen." #: pretix/api/webhooks.py:421 msgid "Voucher deleted" -msgstr "" +msgstr "Bong gouf geläscht" #: pretix/api/webhooks.py:425 msgid "Customer account created" -msgstr "" +msgstr "Clientskont erstallt" #: pretix/api/webhooks.py:429 msgid "Customer account changed" -msgstr "" +msgstr "Clientskont gouf geännert" #: pretix/api/webhooks.py:433 msgid "Customer account anonymized" -msgstr "" +msgstr "Clientskont gouf anonymiséiert" #: pretix/base/addressvalidation.py:100 pretix/base/addressvalidation.py:103 #: pretix/base/addressvalidation.py:108 pretix/base/forms/questions.py:1048 @@ -621,20 +647,20 @@ msgstr "" #: pretix/plugins/banktransfer/payment.py:512 #: pretix/presale/forms/customer.py:152 msgid "This field is required." -msgstr "" +msgstr "Dës Feld ass obligatoresch." #: pretix/base/addressvalidation.py:213 msgid "Enter a postal code in the format XXX." -msgstr "" +msgstr "Gitt eng Postleitzuel am Format XXX un." #: pretix/base/addressvalidation.py:222 pretix/base/addressvalidation.py:224 msgid "Enter a postal code in the format XXXX." -msgstr "" +msgstr "Gitt eng Postleitzuel am Format XXXX un." #: pretix/base/auth.py:146 #, python-brace-format msgid "{system} User" -msgstr "" +msgstr "{system}-Benotzer" #: pretix/base/auth.py:155 pretix/base/exporters/customers.py:67 #: pretix/base/exporters/orderlist.py:263 @@ -659,18 +685,20 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_customer.html:31 #: pretix/presale/templates/pretixpresale/event/order.html:300 msgid "Email" -msgstr "" +msgstr "E-Mail" #: pretix/base/auth.py:157 pretix/base/forms/auth.py:164 #: pretix/base/forms/auth.py:218 pretix/base/models/auth.py:675 #: pretix/base/models/customers.py:103 pretix/control/forms/mailsetup.py:57 #: pretix/presale/forms/customer.py:61 pretix/presale/forms/customer.py:302 msgid "Password" -msgstr "" +msgstr "Passwuert" #: pretix/base/auth.py:176 pretix/base/auth.py:183 msgid "Your password must contain both numeric and alphabetic characters." msgstr "" +"Äert Passwuert muss esou wuel numeresch wéi alphabetesch Charakteren " +"enthalen." #: pretix/base/auth.py:202 pretix/base/auth.py:212 #, python-format @@ -678,64 +706,71 @@ msgid "Your password may not be the same as your previous password." msgid_plural "" "Your password may not be the same as one of your %(history_length)s previous " "passwords." -msgstr[0] "" +msgstr[0] "Äert Passwuert kann net d'nämmlecht sinn, wéi Äert viregt Passwuert." msgstr[1] "" +"Äert Passwuert kann net d'nämmlecht sinn, wéi Är %(history_length)s viregt " +"Passwierder." #: pretix/base/channels.py:168 msgid "Online shop" -msgstr "" +msgstr "Online-Shop" #: pretix/base/channels.py:174 msgid "API" -msgstr "" +msgstr "API" #: pretix/base/channels.py:175 msgid "" "API sales channels come with no built-in functionality, but may be used for " "custom integrations." msgstr "" +"API-Verkafskanäl hu keng integréiert Funktionalitéiten, mee kënne fir " +"personaliséiert Integratioune benotzt ginn." #: pretix/base/context.py:38 #, python-brace-format msgid "powered by {name} based on pretix" msgstr "" +"powered vun {name} baséierend op pretix" #: pretix/base/context.py:48 #, python-brace-format msgid "powered by {name} based on pretix" -msgstr "" +msgstr "powered vun {name} baséierend op pretix" #: pretix/base/context.py:55 #, python-format msgid "ticketing powered by pretix" -msgstr "" +msgstr "Ticketing powered vu pretix" #: pretix/base/context.py:64 msgid "source code" -msgstr "" +msgstr "Source-Code" #: pretix/base/customersso/oidc.py:61 #, python-brace-format msgid "Configuration option \"{name}\" is missing." -msgstr "" +msgstr "D'Optioun vun der Konfiguratioun \"{name}\" feelt." #: pretix/base/customersso/oidc.py:69 pretix/base/customersso/oidc.py:74 #, python-brace-format msgid "" "Unable to retrieve configuration from \"{url}\". Error message: \"{error}\"." msgstr "" +"D'Konfiguratioun vun \"{url}\" konnt net geluede ginn. Feelermeldung: " +"\"{error}\"." #: pretix/base/customersso/oidc.py:80 pretix/base/customersso/oidc.py:85 #: pretix/base/customersso/oidc.py:90 pretix/base/customersso/oidc.py:95 #: pretix/base/customersso/oidc.py:100 pretix/base/customersso/oidc.py:105 #, python-brace-format msgid "Incompatible SSO provider: \"{error}\"." -msgstr "" +msgstr "SSO-Provider ass net kompatibel: \"{error}\"." #: pretix/base/customersso/oidc.py:111 #, python-brace-format msgid "You are not requesting \"{scope}\"." -msgstr "" +msgstr "Dir frot \"{scope}\" net mat un." #: pretix/base/customersso/oidc.py:117 #, python-brace-format @@ -743,6 +778,7 @@ msgid "" "You are requesting scope \"{scope}\" but provider only supports these: " "{scopes}." msgstr "" +"Dir frot \"{scope}\" un, mee de Provider ënnerstëtzt nëmmen dës: {scopes}." #: pretix/base/customersso/oidc.py:127 #, python-brace-format @@ -750,6 +786,7 @@ msgid "" "You are requesting field \"{field}\" but provider only supports these: " "{fields}." msgstr "" +"Dir frot \"{field}\" un, mee de Provider ënnerstëtzt nëmmen dës: {fields}." #: pretix/base/customersso/oidc.py:223 pretix/base/customersso/oidc.py:231 #: pretix/base/customersso/oidc.py:254 pretix/base/customersso/oidc.py:271 @@ -758,13 +795,15 @@ msgstr "" #: pretix/presale/views/customer.py:881 #, python-brace-format msgid "Login was not successful. Error message: \"{error}\"." -msgstr "" +msgstr "Login feelgeschloen. Feelermeldung: \"{error}\"." #: pretix/base/customersso/oidc.py:261 msgid "" "The email address on this account is not yet verified. Please first confirm " "the email address in your customer account." msgstr "" +"D'E-Mail-Adress vun dësem Kont ass nach net verifizéiert. Confirméiert wgl. " +"d'Adress an Ärem Clientskont." #: pretix/base/datasync/datasync.py:263 #, python-brace-format @@ -772,6 +811,8 @@ msgid "" "Field \"{field_name}\" does not exist. Please check your {provider_name} " "settings." msgstr "" +"D'Feld \"{field_name}\" Existéiert net. Kontrolléiert wgl. " +"d'{provider_name}-Astellungen." #: pretix/base/datasync/datasync.py:270 #, python-brace-format @@ -779,6 +820,8 @@ msgid "" "Field \"{field_name}\" requires {required_input}, but only got " "{available_inputs}. Please check your {provider_name} settings." msgstr "" +"D'Feld \"{field_name}\" brauch {required_input}, mee krut just " +"{available_inputs}. Kontrolléiert d'{provider_name}-Astellungen." #: pretix/base/datasync/datasync.py:281 #, python-brace-format @@ -786,32 +829,34 @@ msgid "" "Please update value mapping for field \"{field_name}\" - option \"{val}\" " "not assigned" msgstr "" +"Aktualiséiert wgl. d'Zouuerdnung vun de Valeure fir d'Feld \"{field_name}\". " +"D'Optioun \"{val}\" gouf net zougeuerdent" #: pretix/base/datasync/sourcefields.py:128 msgid "Order position details" -msgstr "" +msgstr "Detailer vun der Bestellung" #: pretix/base/datasync/sourcefields.py:129 msgid "Attendee details" -msgstr "" +msgstr "Informatiounen iwwer d'Participanten" #: pretix/base/datasync/sourcefields.py:130 pretix/base/exporters/answers.py:66 #: pretix/base/models/items.py:1767 pretix/control/navigation.py:172 #: pretix/control/templates/pretixcontrol/items/questions.html:3 #: pretix/control/templates/pretixcontrol/items/questions.html:5 msgid "Questions" -msgstr "" +msgstr "Froen" #: pretix/base/datasync/sourcefields.py:131 msgid "Product details" -msgstr "" +msgstr "Detailer vum Produit" #: pretix/base/datasync/sourcefields.py:132 #: pretix/control/templates/pretixcontrol/event/settings.html:280 #: pretix/control/templates/pretixcontrol/order/index.html:176 #: pretix/presale/templates/pretixpresale/event/order.html:22 msgid "Order details" -msgstr "" +msgstr "Detailer vun der Bestellung" #: pretix/base/datasync/sourcefields.py:133 #: pretix/base/datasync/sourcefields.py:299 @@ -826,16 +871,16 @@ msgstr "" #: pretix/control/forms/filter.py:664 pretix/control/forms/filter.py:669 #: pretix/control/forms/filter.py:674 msgid "Invoice address" -msgstr "" +msgstr "Rechnungsadress" #: pretix/base/datasync/sourcefields.py:134 msgid "Event information" -msgstr "" +msgstr "Informatiounen vum Evenement" #: pretix/base/datasync/sourcefields.py:135 msgctxt "subevent" msgid "Event or date information" -msgstr "" +msgstr "Informatiounem vum Evenement oder vum Datum" #: pretix/base/datasync/sourcefields.py:175 #: pretix/base/exporters/orderlist.py:605 @@ -855,13 +900,13 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/customer_membership.html:50 #: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html:36 msgid "Attendee name" -msgstr "" +msgstr "Numm vum Participant" #: pretix/base/datasync/sourcefields.py:187 #: pretix/base/datasync/sourcefields.py:604 #: pretix/base/datasync/sourcefields.py:628 msgid "Attendee" -msgstr "" +msgstr "Participant" #: pretix/base/datasync/sourcefields.py:207 #: pretix/base/exporters/orderlist.py:612 pretix/base/forms/questions.py:687 @@ -872,11 +917,11 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:172 #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:175 msgid "Attendee email" -msgstr "" +msgstr "E-Mail vum Participant" #: pretix/base/datasync/sourcefields.py:219 msgid "Attendee or order email" -msgstr "" +msgstr "E-Mail vum Participant oder vun der Bestellung" #: pretix/base/datasync/sourcefields.py:232 pretix/base/pdf.py:188 #: pretix/control/templates/pretixcontrol/order/index.html:595 @@ -885,27 +930,27 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:182 #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:185 msgid "Attendee company" -msgstr "" +msgstr "Firma vum Participant" #: pretix/base/datasync/sourcefields.py:241 msgid "Attendee address street" -msgstr "" +msgstr "Adress vum Participant: Strooss" #: pretix/base/datasync/sourcefields.py:250 msgid "Attendee address ZIP code" -msgstr "" +msgstr "Adress vum Participant: Postleitzuel" #: pretix/base/datasync/sourcefields.py:259 msgid "Attendee address city" -msgstr "" +msgstr "Adress vum Participant: Uertschaft" #: pretix/base/datasync/sourcefields.py:268 msgid "Attendee address country" -msgstr "" +msgstr "Adress vum Participant: Land" #: pretix/base/datasync/sourcefields.py:279 pretix/base/pdf.py:346 msgid "Invoice address company" -msgstr "" +msgstr "Rechnungsadress: Firma" #: pretix/base/datasync/sourcefields.py:288 #: pretix/base/exporters/orderlist.py:465 @@ -913,35 +958,35 @@ msgstr "" #: pretix/base/exporters/orderlist.py:654 #: pretix/base/exporters/orderlist.py:658 pretix/base/pdf.py:341 msgid "Invoice address name" -msgstr "" +msgstr "Rechnungsadress: Numm" #: pretix/base/datasync/sourcefields.py:317 #: pretix/base/exporters/orderlist.py:660 pretix/base/pdf.py:351 msgid "Invoice address street" -msgstr "" +msgstr "Rechnungsadress: Strooss" #: pretix/base/datasync/sourcefields.py:326 #: pretix/base/exporters/orderlist.py:660 pretix/base/pdf.py:356 msgid "Invoice address ZIP code" -msgstr "" +msgstr "Rechnungsadress: Postleitzuel" #: pretix/base/datasync/sourcefields.py:335 #: pretix/base/exporters/orderlist.py:660 pretix/base/pdf.py:361 msgid "Invoice address city" -msgstr "" +msgstr "Rechnungsadress: Uertschaft" #: pretix/base/datasync/sourcefields.py:344 #: pretix/base/exporters/orderlist.py:661 pretix/base/pdf.py:371 msgid "Invoice address country" -msgstr "" +msgstr "Rechnungsadress: Land" #: pretix/base/datasync/sourcefields.py:353 msgid "Order email" -msgstr "" +msgstr "E-Mail-Adress vun der Bestellung" #: pretix/base/datasync/sourcefields.py:362 msgid "Order email domain" -msgstr "" +msgstr "E-Mail-Domain vun der Bestellung" #: pretix/base/datasync/sourcefields.py:371 #: pretix/base/exporters/invoices.py:203 pretix/base/exporters/invoices.py:330 @@ -970,11 +1015,11 @@ msgstr "" #: pretix/plugins/reports/exporters.py:896 #: pretix/plugins/ticketoutputpdf/exporters.py:96 msgid "Order code" -msgstr "" +msgstr "Nummer vun der Bestellung" #: pretix/base/datasync/sourcefields.py:380 msgid "Event and order code" -msgstr "" +msgstr "Kuerzform vum Evenement oder Nummer vun der Bestellung" #: pretix/base/datasync/sourcefields.py:389 #: pretix/base/exporters/orderlist.py:263 pretix/base/notifications.py:201 @@ -983,26 +1028,26 @@ msgstr "" #: pretix/plugins/reports/exporters.py:572 #: pretix/plugins/reports/exporters.py:898 msgid "Order total" -msgstr "" +msgstr "Gesamtzomm" #: pretix/base/datasync/sourcefields.py:398 msgid "Product and variation name" -msgstr "" +msgstr "Produit a Variant" #: pretix/base/datasync/sourcefields.py:410 pretix/base/exporters/items.py:57 #: pretix/base/exporters/orderlist.py:598 #: pretix/base/exporters/orderlist.py:910 #: pretix/base/exporters/waitinglist.py:113 msgid "Product ID" -msgstr "" +msgstr "ID vum Produit" #: pretix/base/datasync/sourcefields.py:419 msgid "Product is admission product" -msgstr "" +msgstr "Produit ass en Zougangsproduit" #: pretix/base/datasync/sourcefields.py:428 msgid "Event short form" -msgstr "" +msgstr "Kuerzform vum Evenement" #: pretix/base/datasync/sourcefields.py:437 pretix/base/exporters/events.py:57 #: pretix/base/exporters/orderlist.py:263 @@ -1014,17 +1059,17 @@ msgstr "" #: pretix/control/templates/pretixcontrol/events/index.html:68 #: pretix/control/templates/pretixcontrol/organizers/detail.html:64 msgid "Event name" -msgstr "" +msgstr "Numm vum Evenement" #: pretix/base/datasync/sourcefields.py:446 #: pretix/base/exporters/invoices.py:328 msgid "Event start date" -msgstr "" +msgstr "Start vum Evenement" #: pretix/base/datasync/sourcefields.py:455 #: pretix/base/exporters/invoices.py:352 pretix/base/pdf.py:289 msgid "Event end date" -msgstr "" +msgstr "Enn vum Evenement" #: pretix/base/datasync/sourcefields.py:464 #: pretix/base/exporters/waitinglist.py:124 @@ -1038,32 +1083,32 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/fragment_voucher_form.html:12 #: pretix/presale/templates/pretixpresale/event/fragment_voucher_form.html:20 msgid "Voucher code" -msgstr "" +msgstr "Code vum Bong" #: pretix/base/datasync/sourcefields.py:473 pretix/base/pdf.py:118 msgid "Order code and position number" -msgstr "" +msgstr "Nummer vun der Bestellung a vum Ticket" #: pretix/base/datasync/sourcefields.py:482 msgid "Ticket price" -msgstr "" +msgstr "Präis vum Ticket" #: pretix/base/datasync/sourcefields.py:491 pretix/base/notifications.py:204 #: pretix/control/forms/filter.py:216 pretix/control/forms/modelimport.py:90 msgid "Order status" -msgstr "" +msgstr "Status vun der Bestellung" #: pretix/base/datasync/sourcefields.py:500 msgid "Ticket status" -msgstr "" +msgstr "Status vum Ticket" #: pretix/base/datasync/sourcefields.py:509 msgid "Order date and time" -msgstr "" +msgstr "Datum an Auerzäit vun der Bestellung" #: pretix/base/datasync/sourcefields.py:518 msgid "Payment date and time" -msgstr "" +msgstr "Datum an Auerzäit vun der Bezuelung" #: pretix/base/datasync/sourcefields.py:527 #: pretix/base/exporters/orderlist.py:272 @@ -1071,30 +1116,30 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:193 #: pretix/control/templates/pretixcontrol/pdf/index.html:249 msgid "Order locale" -msgstr "" +msgstr "Sprooch vun der Bestellung" #: pretix/base/datasync/sourcefields.py:536 msgid "Order position ID" -msgstr "" +msgstr "ID vun der Bestellpositioun" #: pretix/base/datasync/sourcefields.py:545 #: pretix/base/exporters/orderlist.py:292 msgid "Order link" -msgstr "" +msgstr "Link op d'Bestellung" #: pretix/base/datasync/sourcefields.py:560 msgid "Ticket link" -msgstr "" +msgstr "Link op den Ticket" #: pretix/base/datasync/sourcefields.py:578 #, python-brace-format msgid "Check-in datetime on list {}" -msgstr "" +msgstr "Check-in-Zäitpunkt op der Lëscht {}" #: pretix/base/datasync/sourcefields.py:590 #, python-brace-format msgid "Question: {name}" -msgstr "" +msgstr "Fro: {name}" #: pretix/base/datasync/sourcefields.py:604 #: pretix/base/datasync/sourcefields.py:614 pretix/base/settings.py:3588 @@ -1103,7 +1148,7 @@ msgstr "" #: pretix/base/settings.py:3694 pretix/base/settings.py:3747 #: pretix/base/settings.py:3768 pretix/base/settings.py:3790 msgid "Given name" -msgstr "" +msgstr "Virnumm" #: pretix/base/datasync/sourcefields.py:628 #: pretix/base/datasync/sourcefields.py:638 pretix/base/settings.py:3589 @@ -1113,7 +1158,7 @@ msgstr "" #: pretix/base/settings.py:3695 pretix/base/settings.py:3748 #: pretix/base/settings.py:3769 pretix/base/settings.py:3791 msgid "Family name" -msgstr "" +msgstr "Familljennumm" #: pretix/base/email.py:203 pretix/base/exporters/items.py:157 #: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381 @@ -1127,39 +1172,39 @@ msgstr "" #: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:33 #: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:53 msgid "Default" -msgstr "" +msgstr "Standard" #: pretix/base/email.py:210 msgid "Simple with logo" -msgstr "" +msgstr "Einfach mat Logo" #: pretix/base/exporter.py:199 pretix/base/exporter.py:332 msgid "Export format" -msgstr "" +msgstr "Format vum Export" #: pretix/base/exporter.py:201 msgid "Excel (.xlsx)" -msgstr "" +msgstr "Excel (.xlsx)" #: pretix/base/exporter.py:202 pretix/base/exporter.py:324 msgid "CSV (with commas)" -msgstr "" +msgstr "CSV (mat Kommaen)" #: pretix/base/exporter.py:203 pretix/base/exporter.py:325 msgid "CSV (Excel-style)" -msgstr "" +msgstr "CSV (am Stil vun Excel)" #: pretix/base/exporter.py:204 pretix/base/exporter.py:326 msgid "CSV (with semicolons)" -msgstr "" +msgstr "CSV (mat Stréchpunkten)" #: pretix/base/exporter.py:320 msgid "Combined Excel (.xlsx)" -msgstr "" +msgstr "Kombinéierten Excel (.xlsx)" #: pretix/base/exporters/answers.py:54 msgid "Question answer file uploads" -msgstr "" +msgstr "Äntwerte mat Fichieren, déi ropgeluede goufen" #: pretix/base/exporters/answers.py:55 pretix/base/exporters/json.py:52 #: pretix/base/exporters/mail.py:53 pretix/base/exporters/orderlist.py:88 @@ -1170,13 +1215,15 @@ msgstr "" #: pretix/plugins/reports/exporters.py:662 msgctxt "export_category" msgid "Order data" -msgstr "" +msgstr "Donnéeë vun der Bestellung" #: pretix/base/exporters/answers.py:56 msgid "" "Download a ZIP file including all files that have been uploaded by your " "customers while creating an order." msgstr "" +"ZIP-Fichier mat alle Fichieren, déi vu Clientë wärend der Bestellung als " +"Äntwert op eng Fro ropgeluede goufen." #: pretix/base/exporters/answers.py:76 pretix/base/exporters/orderlist.py:593 #: pretix/base/exporters/orderlist.py:918 @@ -1207,7 +1254,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/fragment_change_form.html:20 msgctxt "subevent" msgid "Date" -msgstr "" +msgstr "Datum" #: pretix/base/exporters/answers.py:79 pretix/base/exporters/answers.py:88 #: pretix/control/forms/checkin.py:83 pretix/control/forms/event.py:1621 @@ -1225,21 +1272,21 @@ msgstr "" #: pretix/plugins/sendmail/forms.py:350 msgctxt "subevent" msgid "All dates" -msgstr "" +msgstr "All Datumer" #: pretix/base/exporters/customers.py:49 pretix/control/navigation.py:618 #: pretix/control/templates/pretixcontrol/organizers/edit.html:132 msgid "Customer accounts" -msgstr "" +msgstr "Clientskonten" #: pretix/base/exporters/customers.py:51 msgctxt "export_category" msgid "Customer accounts" -msgstr "" +msgstr "Clientskonten" #: pretix/base/exporters/customers.py:52 msgid "Download a spreadsheet of all currently registered customer accounts." -msgstr "" +msgstr "Tabell mat allen aktuell registréierte Clientskonten eroflueden." #: pretix/base/exporters/customers.py:64 pretix/base/models/customers.py:89 #: pretix/control/templates/pretixcontrol/organizers/customer.html:30 @@ -1247,19 +1294,19 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_customer.html:37 #: pretix/presale/templates/pretixpresale/organizers/customer_base.html:37 msgid "Customer ID" -msgstr "" +msgstr "Clientsnummer" #: pretix/base/exporters/customers.py:65 #: pretix/control/templates/pretixcontrol/organizers/customer.html:33 msgid "SSO provider" -msgstr "" +msgstr "SSO-Provider" #: pretix/base/exporters/customers.py:66 pretix/base/models/customers.py:115 #: pretix/control/templates/pretixcontrol/organizers/customer.html:37 #: pretix/control/templates/pretixcontrol/organizers/customers.html:65 #: pretix/control/templates/pretixcontrol/users/form.html:49 msgid "External identifier" -msgstr "" +msgstr "Extern Referenz" #: pretix/base/exporters/customers.py:68 pretix/base/exporters/orderlist.py:264 #: pretix/base/exporters/orderlist.py:455 @@ -1277,14 +1324,14 @@ msgstr "" #: pretix/presale/forms/waitinglist.py:80 #: pretix/presale/templates/pretixpresale/event/order.html:304 msgid "Phone number" -msgstr "" +msgstr "Telefonsnummer" #: pretix/base/exporters/customers.py:69 pretix/base/models/auth.py:246 #: pretix/base/models/customers.py:104 pretix/base/models/orders.py:3295 #: pretix/base/settings.py:3721 pretix/base/settings.py:3733 #: pretix/control/templates/pretixcontrol/users/index.html:47 msgid "Full name" -msgstr "" +msgstr "Kompletten Numm" #: pretix/base/exporters/customers.py:74 pretix/base/exporters/invoices.py:208 #: pretix/base/exporters/invoices.py:216 pretix/base/exporters/invoices.py:334 @@ -1328,25 +1375,25 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_customer.html:35 #: pretix/presale/templates/pretixpresale/event/order.html:312 msgid "Name" -msgstr "" +msgstr "Numm" #: pretix/base/exporters/customers.py:77 pretix/base/models/customers.py:106 msgid "Account active" -msgstr "" +msgstr "Kont aktiv" #: pretix/base/exporters/customers.py:78 pretix/base/models/customers.py:107 msgid "Verified email address" -msgstr "" +msgstr "Verifizéiert E-Mail-Adress" #: pretix/base/exporters/customers.py:79 pretix/base/models/customers.py:108 #: pretix/control/templates/pretixcontrol/organizers/customer.html:69 msgid "Last login" -msgstr "" +msgstr "Leschte Login" #: pretix/base/exporters/customers.py:80 pretix/base/models/customers.py:109 #: pretix/control/templates/pretixcontrol/organizers/customer.html:67 msgid "Registration date" -msgstr "" +msgstr "Registréierungsdatum" #: pretix/base/exporters/customers.py:81 pretix/base/exporters/invoices.py:207 #: pretix/base/exporters/waitinglist.py:121 pretix/base/models/auth.py:258 @@ -1354,7 +1401,7 @@ msgstr "" #: pretix/control/forms/event.py:1626 pretix/control/forms/exports.py:49 #: pretix/control/forms/exports.py:88 pretix/control/views/waitinglist.py:315 msgid "Language" -msgstr "" +msgstr "Sprooch" #: pretix/base/exporters/customers.py:82 #: pretix/base/exporters/reusablemedia.py:54 @@ -1362,7 +1409,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/customer.html:73 #: pretix/control/templates/pretixcontrol/organizers/reusable_medium.html:68 msgid "Notes" -msgstr "" +msgstr "Remarquen" #: pretix/base/exporters/customers.py:100 #: pretix/base/exporters/customers.py:101 pretix/base/exporters/events.py:83 @@ -1432,18 +1479,20 @@ msgstr "Nee" #: pretix/base/exporters/dekodi.py:42 pretix/base/exporters/invoices.py:66 msgctxt "export_category" msgid "Invoices" -msgstr "" +msgstr "Rechnungen" #: pretix/base/exporters/dekodi.py:43 msgid "" "Download invoices in a format that can be used by the dekodi NREI conversion " "software." msgstr "" +"Rechnungen eroflueden an engem Format, dat mat der dekodi NREI-Software " +"benotzt ka ginn." #: pretix/base/exporters/dekodi.py:105 #, python-brace-format msgid "Event ticket {event}-{code}" -msgstr "" +msgstr "Ticket {event}-{code}" #: pretix/base/exporters/dekodi.py:234 pretix/base/exporters/invoices.py:74 #: pretix/base/exporters/orderlist.py:130 @@ -1456,104 +1505,109 @@ msgstr "" #: pretix/plugins/reports/exporters.py:710 #: pretix/plugins/ticketoutputpdf/exporters.py:85 msgid "Date range" -msgstr "" +msgstr "Period" #: pretix/base/exporters/dekodi.py:237 pretix/base/exporters/invoices.py:77 msgid "" "Only include invoices issued in this time frame. Note that the invoice date " "does not always correspond to the order or payment date." msgstr "" +"Enthält nëmme Rechnungen, déi an dëser Period ausgestallt goufen. Beuecht " +"wgl. datt de Rechnungsdatum net ëmmer mam Datum vun der Bestellung oder vun " +"der Bezuelung iwwertenee stëmmt." #: pretix/base/exporters/events.py:47 msgid "Event data" -msgstr "" +msgstr "Donnéeën vum Evenement" #: pretix/base/exporters/events.py:48 msgctxt "export_category" msgid "Event data" -msgstr "" +msgstr "Donnéeën vum Evenement" #: pretix/base/exporters/events.py:49 msgid "" "Download a spreadsheet with information on all events in this organizer " "account." msgstr "" +"Tabell mat Informatioune vun all Evenementer an dësem Organisateurskont " +"eroflueden." #: pretix/base/exporters/events.py:58 pretix/base/models/event.py:611 #: pretix/base/models/organizer.py:93 #: pretix/control/templates/pretixcontrol/organizers/index.html:47 msgid "Short form" -msgstr "" +msgstr "Kuerzform" #: pretix/base/exporters/events.py:59 pretix/base/models/event.py:613 msgid "Shop is live" -msgstr "" +msgstr "De Shop ass verëffentlecht" #: pretix/base/exporters/events.py:60 pretix/base/models/event.py:615 msgid "Event currency" -msgstr "" +msgstr "Wärung vum Evenement" #: pretix/base/exporters/events.py:61 pretix/base/models/auth.py:261 #: pretix/base/models/exports.py:133 pretix/control/forms/exports.py:93 msgid "Timezone" -msgstr "" +msgstr "Zäitzon" #: pretix/base/exporters/events.py:62 pretix/base/models/event.py:618 #: pretix/base/models/event.py:1526 pretix/base/settings.py:3344 #: pretix/base/settings.py:3354 pretix/control/forms/subevents.py:484 #: pretix/control/templates/pretixcontrol/subevents/bulk.html:268 msgid "Event start time" -msgstr "" +msgstr "Start vum Evenement" #: pretix/base/exporters/events.py:63 pretix/base/models/event.py:620 #: pretix/base/models/event.py:1528 pretix/base/pdf.py:297 #: pretix/control/forms/subevents.py:489 #: pretix/control/templates/pretixcontrol/subevents/bulk.html:270 msgid "Event end time" -msgstr "" +msgstr "Enn vum Evenement" #: pretix/base/exporters/events.py:64 pretix/base/models/event.py:622 #: pretix/base/models/event.py:1530 pretix/control/forms/subevents.py:494 #: pretix/control/templates/pretixcontrol/subevents/bulk.html:274 msgid "Admission time" -msgstr "" +msgstr "Zougang" #: pretix/base/exporters/events.py:65 pretix/base/models/event.py:634 #: pretix/base/models/event.py:1539 pretix/control/forms/subevents.py:93 msgid "Start of presale" -msgstr "" +msgstr "Start vum Virverkaf" #: pretix/base/exporters/events.py:66 pretix/base/models/event.py:628 #: pretix/base/models/event.py:1533 pretix/control/forms/subevents.py:99 msgid "End of presale" -msgstr "" +msgstr "Enn vum Virverkaf" #: pretix/base/exporters/events.py:67 pretix/base/exporters/invoices.py:353 #: pretix/base/models/event.py:640 pretix/base/models/event.py:1545 #: pretix/base/templates/pretixbase/email/order_details.html:83 msgid "Location" -msgstr "" +msgstr "Plaz vun der Evenement" #: pretix/base/exporters/events.py:68 pretix/base/models/event.py:648 #: pretix/base/models/event.py:1548 #: pretix/control/templates/pretixcontrol/event/fragment_geodata.html:18 #: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html:54 msgid "Latitude" -msgstr "" +msgstr "Breedegrad" #: pretix/base/exporters/events.py:69 pretix/base/models/event.py:656 #: pretix/base/models/event.py:1556 #: pretix/control/templates/pretixcontrol/event/fragment_geodata.html:28 #: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html:64 msgid "Longitude" -msgstr "" +msgstr "Längegrad" #: pretix/base/exporters/events.py:70 pretix/base/models/event.py:668 #: pretix/base/models/event.py:1571 #: pretix/control/templates/pretixcontrol/event/index.html:137 #: pretix/control/templates/pretixcontrol/order/index.html:1049 msgid "Internal comment" -msgstr "" +msgstr "Interne Kommentar" #: pretix/base/exporters/invoices.py:82 pretix/base/models/orders.py:1753 #: pretix/base/models/orders.py:2187 pretix/control/forms/filter.py:209 @@ -1568,13 +1622,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/orders/refunds.html:50 #: pretix/control/templates/pretixcontrol/search/payments.html:93 msgid "Payment provider" -msgstr "" +msgstr "Fournisseur vun der Bezuelung" #: pretix/base/exporters/invoices.py:84 pretix/base/exporters/invoices.py:86 #: pretix/control/forms/filter.py:211 pretix/control/forms/filter.py:1057 #: pretix/control/forms/filter.py:2307 msgid "All payment providers" -msgstr "" +msgstr "All Fournisseure vun der Bezuelung" #: pretix/base/exporters/invoices.py:92 msgid "" @@ -1585,15 +1639,17 @@ msgstr "" #: pretix/base/exporters/invoices.py:126 msgid "All invoices" -msgstr "" +msgstr "All Rechnungen" #: pretix/base/exporters/invoices.py:127 msgid "Download all invoices created by the system as a ZIP file of PDF files." msgstr "" +"All PDF-Rechnungen, déi vum System erstallt goufen, als ZIP-Fichier " +"eroflueden." #: pretix/base/exporters/invoices.py:179 msgid "Invoice data" -msgstr "" +msgstr "Donnéeë vun der Rechnung" #: pretix/base/exporters/invoices.py:180 msgid "" @@ -1609,15 +1665,15 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/order.html:236 #: pretix/presale/templates/pretixpresale/event/order.html:257 msgid "Invoices" -msgstr "" +msgstr "Rechnungen" #: pretix/base/exporters/invoices.py:194 msgid "Invoice lines" -msgstr "" +msgstr "Zeilen vun der Rechnung" #: pretix/base/exporters/invoices.py:201 pretix/base/exporters/invoices.py:320 msgid "Invoice number" -msgstr "" +msgstr "Nummer vun der Rechnung" #: pretix/base/exporters/invoices.py:202 pretix/base/exporters/invoices.py:329 #: pretix/base/exporters/orderlist.py:1236 @@ -1635,7 +1691,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/fragment_giftcard_history.html:6 #: pretix/presale/templates/pretixpresale/organizers/calendar_day.html:58 msgid "Date" -msgstr "" +msgstr "Datum" #: pretix/base/exporters/invoices.py:204 pretix/base/exporters/invoices.py:331 #: pretix/base/forms/auth.py:160 pretix/base/modelimport_orders.py:59 @@ -1644,15 +1700,15 @@ msgstr "" #: pretix/control/templates/pretixcontrol/users/index.html:42 #: pretix/control/views/waitinglist.py:314 msgid "Email address" -msgstr "" +msgstr "E-Mails-Adress" #: pretix/base/exporters/invoices.py:205 pretix/base/exporters/invoices.py:332 msgid "Invoice type" -msgstr "" +msgstr "Typ vun der Rechnung" #: pretix/base/exporters/invoices.py:206 pretix/base/exporters/invoices.py:333 msgid "Cancellation of" -msgstr "" +msgstr "Annulatioun vun" #: pretix/base/exporters/invoices.py:208 pretix/base/exporters/invoices.py:209 #: pretix/base/exporters/invoices.py:210 pretix/base/exporters/invoices.py:211 @@ -1662,7 +1718,7 @@ msgstr "" #: pretix/base/exporters/invoices.py:337 pretix/base/exporters/invoices.py:338 #: pretix/base/exporters/invoices.py:339 pretix/base/exporters/invoices.py:340 msgid "Invoice sender:" -msgstr "" +msgstr "Absender vun der Rechnung:" #: pretix/base/exporters/invoices.py:209 pretix/base/exporters/invoices.py:335 #: pretix/base/exporters/orderlist.py:271 @@ -1678,7 +1734,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_confirm.html:88 #: pretix/presale/templates/pretixpresale/event/order.html:316 msgid "Address" -msgstr "" +msgstr "Adress" #: pretix/base/exporters/invoices.py:210 pretix/base/exporters/invoices.py:218 #: pretix/base/exporters/invoices.py:336 pretix/base/exporters/invoices.py:344 @@ -1693,7 +1749,7 @@ msgstr "" #: pretix/plugins/checkinlists/exporters.py:537 #: pretix/plugins/reports/exporters.py:853 msgid "ZIP code" -msgstr "" +msgstr "Postleitzuel" #: pretix/base/exporters/invoices.py:211 pretix/base/exporters/invoices.py:219 #: pretix/base/exporters/invoices.py:337 pretix/base/exporters/invoices.py:345 @@ -1708,7 +1764,7 @@ msgstr "" #: pretix/plugins/checkinlists/exporters.py:538 #: pretix/plugins/reports/exporters.py:854 msgid "City" -msgstr "" +msgstr "Uertschaft" #: pretix/base/exporters/invoices.py:212 pretix/base/exporters/invoices.py:220 #: pretix/base/exporters/invoices.py:338 pretix/base/exporters/invoices.py:346 @@ -1729,11 +1785,11 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_confirm.html:92 #: pretix/presale/templates/pretixpresale/event/order.html:320 msgid "Country" -msgstr "" +msgstr "Land" #: pretix/base/exporters/invoices.py:213 pretix/base/exporters/invoices.py:339 msgid "Tax ID" -msgstr "" +msgstr "Steiernummer" #: pretix/base/exporters/invoices.py:214 pretix/base/exporters/invoices.py:222 #: pretix/base/exporters/invoices.py:340 pretix/base/exporters/invoices.py:348 @@ -1747,7 +1803,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_confirm.html:99 #: pretix/presale/templates/pretixpresale/event/order.html:327 msgid "VAT ID" -msgstr "" +msgstr "TVA-Nummer" #: pretix/base/exporters/invoices.py:215 pretix/base/exporters/invoices.py:216 #: pretix/base/exporters/invoices.py:217 pretix/base/exporters/invoices.py:218 @@ -1760,7 +1816,7 @@ msgstr "" #: pretix/base/exporters/invoices.py:347 pretix/base/exporters/invoices.py:348 #: pretix/base/exporters/invoices.py:349 pretix/base/exporters/invoices.py:350 msgid "Invoice recipient:" -msgstr "" +msgstr "Empfänger vun der Rechnung:" #: pretix/base/exporters/invoices.py:215 pretix/base/exporters/invoices.py:341 #: pretix/base/exporters/orderlist.py:264 @@ -1777,11 +1833,11 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_confirm.html:83 #: pretix/presale/templates/pretixpresale/event/order.html:308 msgid "Company" -msgstr "" +msgstr "Firma" #: pretix/base/exporters/invoices.py:217 pretix/base/exporters/invoices.py:343 msgid "Street address" -msgstr "" +msgstr "Strooss" #: pretix/base/exporters/invoices.py:221 pretix/base/exporters/invoices.py:347 #: pretix/base/exporters/orderlist.py:271 @@ -1797,45 +1853,45 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/order.html:323 msgctxt "address" msgid "State" -msgstr "" +msgstr "Staat" #: pretix/base/exporters/invoices.py:223 pretix/base/exporters/invoices.py:349 #: pretix/base/models/orders.py:3313 pretix/base/models/orders.py:3369 #: pretix/presale/templates/pretixpresale/event/checkout_confirm.html:103 msgid "Beneficiary" -msgstr "" +msgstr "Beneficiaire" #: pretix/base/exporters/invoices.py:224 pretix/base/exporters/invoices.py:350 #: pretix/base/modelimport_orders.py:333 pretix/base/models/orders.py:3308 #: pretix/control/templates/pretixcontrol/order/index.html:1033 #: pretix/presale/templates/pretixpresale/event/checkout_confirm.html:111 msgid "Internal reference" -msgstr "" +msgstr "Intern Referenz" #: pretix/base/exporters/invoices.py:225 pretix/base/models/tax.py:162 #: pretix/control/forms/event.py:1516 msgid "Reverse charge" -msgstr "" +msgstr "Charge inversée" #: pretix/base/exporters/invoices.py:226 msgid "Shown foreign currency" -msgstr "" +msgstr "Ugewise Wärung" #: pretix/base/exporters/invoices.py:227 msgid "Foreign currency rate" -msgstr "" +msgstr "Auslännesche Wiesselcours" #: pretix/base/exporters/invoices.py:228 msgid "Total value (with taxes)" -msgstr "" +msgstr "Gesamtzomm (mat Steieren)" #: pretix/base/exporters/invoices.py:229 msgid "Total value (without taxes)" -msgstr "" +msgstr "Gesamtzomm (ouni Steieren)" #: pretix/base/exporters/invoices.py:230 msgid "Payment matching IDs" -msgstr "" +msgstr "IDen fir d'Zouuerdnung vun der Bezuelung" #: pretix/base/exporters/invoices.py:231 pretix/base/exporters/invoices.py:351 #: pretix/base/exporters/orderlist.py:291 @@ -1843,11 +1899,11 @@ msgstr "" #: pretix/base/exporters/orderlist.py:671 pretix/base/plugins.py:139 #: pretix/control/templates/pretixcontrol/event/payment.html:11 msgid "Payment providers" -msgstr "" +msgstr "Fournisseuren fir d'Bezuelen" #: pretix/base/exporters/invoices.py:287 pretix/base/exporters/invoices.py:390 msgid "Cancellation" -msgstr "" +msgstr "Annulatioun" #: pretix/base/exporters/invoices.py:287 pretix/base/exporters/invoices.py:390 #: pretix/control/templates/pretixcontrol/event/mail.html:120 @@ -1855,32 +1911,32 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/mail_history.html:70 #: pretix/presale/templates/pretixpresale/event/order.html:244 msgid "Invoice" -msgstr "" +msgstr "Rechnung" #: pretix/base/exporters/invoices.py:321 msgid "Line number" -msgstr "" +msgstr "Zeilennummer" #: pretix/base/exporters/invoices.py:322 pretix/base/exporters/orderlist.py:459 #: pretix/base/models/items.py:492 pretix/base/models/items.py:1155 #: pretix/control/templates/pretixcontrol/pdf/placeholders.html:32 msgid "Description" -msgstr "" +msgstr "Beschreiwung" #: pretix/base/exporters/invoices.py:323 pretix/control/forms/orders.py:355 msgid "Gross price" -msgstr "" +msgstr "Bruttopräis" #: pretix/base/exporters/invoices.py:324 msgid "Net price" -msgstr "" +msgstr "Nettopräis" #: pretix/base/exporters/invoices.py:325 pretix/base/exporters/orderlist.py:463 #: pretix/base/exporters/orderlist.py:604 #: pretix/base/exporters/orderlist.py:924 pretix/base/models/orders.py:2351 #: pretix/base/models/orders.py:2523 pretix/base/models/orders.py:3045 msgid "Tax value" -msgstr "" +msgstr "Steier" #: pretix/base/exporters/invoices.py:326 pretix/base/exporters/orderlist.py:461 #: pretix/base/exporters/orderlist.py:602 @@ -1892,48 +1948,48 @@ msgstr "" #: pretix/plugins/reports/exporters.py:805 #: pretix/plugins/reports/exporters.py:850 msgid "Tax rate" -msgstr "" +msgstr "Steiersaz" #: pretix/base/exporters/invoices.py:327 msgid "Tax name" -msgstr "" +msgstr "Numm vun der Steier" #: pretix/base/exporters/items.py:49 msgid "Product data" -msgstr "" +msgstr "Donnéeë vum Produit" #: pretix/base/exporters/items.py:50 pretix/base/exporters/orderlist.py:1149 msgctxt "export_category" msgid "Product data" -msgstr "" +msgstr "Donnéeë vum Produit" #: pretix/base/exporters/items.py:51 msgid "Download a spreadsheet with details about all products and variations." -msgstr "" +msgstr "Eng Tabell mat den Detailer vun alle Produiten a Varianten eroflueden." #: pretix/base/exporters/items.py:58 pretix/base/exporters/orderlist.py:600 #: pretix/base/exporters/orderlist.py:912 #: pretix/base/exporters/waitinglist.py:115 msgid "Variation ID" -msgstr "" +msgstr "ID vun der Variant" #: pretix/base/exporters/items.py:59 pretix/base/models/items.py:142 #: pretix/base/pdf.py:153 #: pretix/control/templates/pretixcontrol/items/category.html:4 #: pretix/control/templates/pretixcontrol/items/category.html:6 msgid "Product category" -msgstr "" +msgstr "Kategorie vum Produit" #: pretix/base/exporters/items.py:60 pretix/base/models/discount.py:64 #: pretix/base/models/items.py:96 pretix/base/models/items.py:483 #: pretix/base/models/tax.py:320 pretix/control/forms/organizer.py:264 #: pretix/control/templates/pretixcontrol/items/discounts.html:57 msgid "Internal name" -msgstr "" +msgstr "Internen Numm" #: pretix/base/exporters/items.py:64 pretix/base/models/items.py:480 msgid "Item name" -msgstr "" +msgstr "Numm vum Produit" #: pretix/base/exporters/items.py:68 pretix/base/exporters/orderlist.py:599 #: pretix/base/exporters/orderlist.py:913 @@ -1941,7 +1997,7 @@ msgstr "" #: pretix/base/models/orders.py:1495 pretix/base/models/orders.py:3017 #: pretix/plugins/checkinlists/exporters.py:698 msgid "Variation" -msgstr "" +msgstr "Variant" #: pretix/base/exporters/items.py:71 pretix/base/exporters/reusablemedia.py:49 #: pretix/base/models/customers.py:64 pretix/base/models/customers.py:423 @@ -1956,7 +2012,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/plugins.html:76 #: pretix/control/templates/pretixcontrol/users/index.html:51 msgid "Active" -msgstr "" +msgstr "Aktiv" #: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:77 #: pretix/control/forms/event.py:977 pretix/control/navigation.py:520 @@ -1964,36 +2020,36 @@ msgstr "" #: pretix/plugins/autocheckin/models.py:64 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30 msgid "Sales channels" -msgstr "" +msgstr "Verkafskanäl" #: pretix/base/exporters/items.py:73 pretix/base/models/items.py:497 #: pretix/base/models/items.py:1166 #: pretix/control/templates/pretixcontrol/items/index.html:44 msgid "Default price" -msgstr "" +msgstr "Standardpräis" #: pretix/base/exporters/items.py:74 pretix/base/models/items.py:505 #: pretix/control/templates/pretixcontrol/items/index.html:140 msgid "Free price input" -msgstr "" +msgstr "Fräie Präis" #: pretix/base/exporters/items.py:75 pretix/base/models/items.py:520 msgid "Sales tax" -msgstr "" +msgstr "Ëmsazsteier" #: pretix/base/exporters/items.py:76 pretix/base/models/items.py:525 msgid "Is an admission ticket" -msgstr "" +msgstr "Ass en Zougangsproduit" #: pretix/base/exporters/items.py:77 #: pretix/control/templates/pretixcontrol/item/create.html:74 #: pretix/control/templates/pretixcontrol/item/index.html:87 msgid "Personalized ticket" -msgstr "" +msgstr "Personnaliséierten Ticket" #: pretix/base/exporters/items.py:78 pretix/base/models/items.py:539 msgid "Generate tickets" -msgstr "" +msgstr "Ticketen generéieren" #: pretix/base/exporters/items.py:79 pretix/base/exporters/orderlist.py:1156 #: pretix/base/exporters/waitinglist.py:41 pretix/base/shredder.py:367 @@ -2016,7 +2072,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/fragment_week_calendar.html:66 #: pretix/presale/views/widget.py:449 msgid "Waiting list" -msgstr "" +msgstr "Waardelëscht" #: pretix/base/exporters/items.py:80 pretix/base/models/discount.py:82 #: pretix/base/models/items.py:224 pretix/base/models/items.py:280 @@ -2027,7 +2083,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html:172 #: pretix/control/templates/pretixcontrol/subevents/detail.html:150 msgid "Available from" -msgstr "" +msgstr "Disponibel ab" #: pretix/base/exporters/items.py:81 pretix/base/models/discount.py:87 #: pretix/base/models/items.py:229 pretix/base/models/items.py:285 @@ -2037,76 +2093,76 @@ msgstr "" #: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html:177 #: pretix/control/templates/pretixcontrol/subevents/detail.html:155 msgid "Available until" -msgstr "" +msgstr "Disponibel bis" #: pretix/base/exporters/items.py:82 pretix/base/models/items.py:609 msgid "This product can only be bought using a voucher." -msgstr "" +msgstr "Dëse Produit kann nëmme mat engem Bong kaf ginn." #: pretix/base/exporters/items.py:83 pretix/base/models/items.py:622 msgid "" "This product will only be shown if a voucher matching the product is " "redeemed." -msgstr "" +msgstr "Dëse Produit gëtt just ugewise wann e passende Bong ageléist gëtt." #: pretix/base/exporters/items.py:84 pretix/base/models/items.py:615 msgid "Buying this product requires approval" -msgstr "" +msgstr "D'Bestelle vun dësem Produit erfuerdert eng manuell Autorisatioun" #: pretix/base/exporters/items.py:85 pretix/base/models/items.py:628 msgid "Only sell this product as part of a bundle" -msgstr "" +msgstr "Dëse Produit just als Deel vun enger Grupp verkafen" #: pretix/base/exporters/items.py:86 pretix/base/models/items.py:635 msgid "Allow product to be canceled or changed" -msgstr "" +msgstr "D'Annulatioun an d'Ännerung vun dësem Produit erlaben" #: pretix/base/exporters/items.py:87 pretix/base/models/items.py:641 msgid "Minimum amount per order" -msgstr "" +msgstr "Minimum pro Bestellung" #: pretix/base/exporters/items.py:88 pretix/base/models/items.py:648 msgid "Maximum amount per order" -msgstr "" +msgstr "Maximum pro Bestellung" #: pretix/base/exporters/items.py:89 pretix/base/exporters/orderlist.py:284 #: pretix/base/modelimport_orders.py:652 pretix/base/models/items.py:656 #: pretix/base/models/items.py:1242 pretix/base/models/orders.py:282 #: pretix/plugins/checkinlists/exporters.py:524 msgid "Requires special attention" -msgstr "" +msgstr "Erfuerdert speziell Opmierksamkeet" #: pretix/base/exporters/items.py:90 pretix/base/exporters/orderlist.py:285 #: pretix/base/modelimport_orders.py:661 pretix/base/models/items.py:663 #: pretix/base/models/items.py:1249 pretix/base/models/orders.py:289 #: pretix/plugins/checkinlists/exporters.py:526 msgid "Check-in text" -msgstr "" +msgstr "Check-in-Text" #: pretix/base/exporters/items.py:91 pretix/base/models/items.py:668 #: pretix/base/models/items.py:1169 msgid "Original price" -msgstr "" +msgstr "Originalpräis" #: pretix/base/exporters/items.py:92 pretix/base/models/items.py:685 msgid "This product is a gift card" -msgstr "" +msgstr "Dëse Produit ass e Bong" #: pretix/base/exporters/items.py:93 pretix/base/models/items.py:691 #: pretix/base/models/items.py:1190 #: pretix/control/templates/pretixcontrol/item/include_variations.html:41 #: pretix/control/templates/pretixcontrol/item/include_variations.html:167 msgid "Require a valid membership" -msgstr "" +msgstr "Eng aktiv Memberschaft erfuerderen" #: pretix/base/exporters/items.py:94 pretix/base/models/items.py:700 #: pretix/base/models/items.py:1199 msgid "Hide without a valid membership" -msgstr "" +msgstr "Ouni aktiv Memberschaft verstoppen" #: pretix/base/exporters/json.py:51 pretix/base/exporters/orderlist.py:87 msgid "Order data" -msgstr "" +msgstr "Donnéeë vun der Bestellung" #: pretix/base/exporters/json.py:53 msgid "" @@ -2116,7 +2172,7 @@ msgstr "" #: pretix/base/exporters/mail.py:52 msgid "Email addresses (text file)" -msgstr "" +msgstr "E-Mails-Adressen (Textfichier)" #: pretix/base/exporters/mail.py:54 msgid "" @@ -2127,7 +2183,7 @@ msgstr "" #: pretix/base/exporters/mail.py:76 pretix/plugins/reports/exporters.py:498 #: pretix/plugins/reports/exporters.py:681 msgid "Filter by status" -msgstr "" +msgstr "No Status filteren" #: pretix/base/exporters/orderlist.py:89 msgid "" @@ -2147,33 +2203,33 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/customer_orders.html:13 #: pretix/presale/views/customer.py:360 msgid "Orders" -msgstr "" +msgstr "Bestellungen" #: pretix/base/exporters/orderlist.py:103 pretix/base/models/orders.py:2572 #: pretix/base/notifications.py:205 msgid "Order positions" -msgstr "" +msgstr "Positioune vun der Bestellung" #: pretix/base/exporters/orderlist.py:104 msgid "Order fees" -msgstr "" +msgstr "Fraise vun der Bestellung" #: pretix/base/exporters/orderlist.py:112 msgid "Only paid orders" -msgstr "" +msgstr "Nëmme bezuelte Bestellungen" #: pretix/base/exporters/orderlist.py:118 msgid "Include payment amounts" -msgstr "" +msgstr "Bezuelte Beträg mat uweisen" #: pretix/base/exporters/orderlist.py:124 msgid "Show multiple choice answers grouped in one column" -msgstr "" +msgstr "Multiple-Choice-Froen an enger Kolonn gruppéieren" #: pretix/base/exporters/orderlist.py:133 #: pretix/plugins/reports/exporters.py:713 msgid "Only include orders created within this date range." -msgstr "" +msgstr "Nëmmen Bestellungen, déi an dëser Period erstallt goufen." #: pretix/base/exporters/orderlist.py:137 pretix/base/notifications.py:194 #: pretix/base/pdf.py:245 pretix/base/settings.py:1110 @@ -2182,7 +2238,7 @@ msgstr "" #: pretix/plugins/reports/exporters.py:465 #: pretix/plugins/ticketoutputpdf/exporters.py:97 msgid "Event date" -msgstr "" +msgstr "Datum vum Evenement" #: pretix/base/exporters/orderlist.py:140 msgid "" @@ -2199,7 +2255,7 @@ msgstr "" #: pretix/base/exporters/waitinglist.py:116 pretix/control/forms/event.py:1672 #: pretix/control/forms/organizer.py:116 msgid "Event slug" -msgstr "" +msgstr "Kuerzform vum Evenement" #: pretix/base/exporters/orderlist.py:263 #: pretix/base/exporters/orderlist.py:453 @@ -2240,7 +2296,7 @@ msgstr "" #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_inspect.html:34 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:79 msgid "Status" -msgstr "" +msgstr "Status" #: pretix/base/exporters/orderlist.py:264 #: pretix/base/exporters/orderlist.py:456 @@ -2263,7 +2319,7 @@ msgstr "" #: pretix/plugins/reports/exporters.py:703 #: pretix/plugins/reports/exporters.py:896 msgid "Order date" -msgstr "" +msgstr "Datum vun der Bestellung" #: pretix/base/exporters/orderlist.py:264 #: pretix/base/exporters/orderlist.py:457 @@ -2271,79 +2327,79 @@ msgstr "" #: pretix/base/exporters/orderlist.py:901 #: pretix/plugins/checkinlists/exporters.py:523 msgid "Order time" -msgstr "" +msgstr "Auerzäit vun der Bestellung" #: pretix/base/exporters/orderlist.py:272 msgid "Custom address field" -msgstr "" +msgstr "Personaliséiert Adressefeld" #: pretix/base/exporters/orderlist.py:272 msgid "Date of last payment" -msgstr "" +msgstr "Datum vun der läschter Bezuelung" #: pretix/base/exporters/orderlist.py:272 pretix/base/services/stats.py:238 msgid "Fees" -msgstr "" +msgstr "Fraisen" #: pretix/base/exporters/orderlist.py:277 #, python-brace-format msgid "Gross at {rate} % tax" -msgstr "" +msgstr "Brutto {rate} %" #: pretix/base/exporters/orderlist.py:278 #, python-brace-format msgid "Net at {rate} % tax" -msgstr "" +msgstr "Netto {rate} %" #: pretix/base/exporters/orderlist.py:279 #, python-brace-format msgid "Tax value at {rate} % tax" -msgstr "" +msgstr "Steier {rate} %" #: pretix/base/exporters/orderlist.py:282 msgid "Invoice numbers" -msgstr "" +msgstr "Rechnungsnummeren" #: pretix/base/exporters/orderlist.py:283 #: pretix/base/exporters/orderlist.py:666 pretix/base/modelimport_orders.py:578 #: pretix/control/forms/filter.py:616 #: pretix/control/templates/pretixcontrol/order/index.html:190 msgid "Sales channel" -msgstr "" +msgstr "Verkafskanal" #: pretix/base/exporters/orderlist.py:287 #: pretix/base/exporters/orderlist.py:631 pretix/base/models/orders.py:277 #: pretix/control/forms/filter.py:246 msgid "Follow-up date" -msgstr "" +msgstr "Datum vum Suivi" #: pretix/base/exporters/orderlist.py:288 #: pretix/control/templates/pretixcontrol/orders/index.html:150 #: pretix/control/templates/pretixcontrol/organizers/customer.html:209 msgid "Positions" -msgstr "" +msgstr "Positiounen" #: pretix/base/exporters/orderlist.py:289 #: pretix/base/exporters/orderlist.py:668 pretix/base/models/orders.py:321 #: pretix/control/forms/filter.py:598 msgid "Email address verified" -msgstr "" +msgstr "E-Mail-Adress verifizéiert" #: pretix/base/exporters/orderlist.py:290 #: pretix/base/exporters/orderlist.py:475 #: pretix/base/exporters/orderlist.py:669 msgid "External customer ID" -msgstr "" +msgstr "Extern Clientsnummer" #: pretix/base/exporters/orderlist.py:296 #, python-brace-format msgid "Paid by {method}" -msgstr "" +msgstr "Bezuelt mat {method}" #: pretix/base/exporters/orderlist.py:458 #: pretix/base/exporters/orderlist.py:914 msgid "Fee type" -msgstr "" +msgstr "Typ vu Fraisen" #: pretix/base/exporters/orderlist.py:460 #: pretix/base/exporters/orderlist.py:601 @@ -2360,7 +2416,7 @@ msgstr "" #: pretix/plugins/checkinlists/exporters.py:501 #: pretix/plugins/reports/accountingreport.py:315 msgid "Price" -msgstr "" +msgstr "Präis" #: pretix/base/exporters/orderlist.py:462 #: pretix/base/exporters/orderlist.py:603 @@ -2369,18 +2425,18 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/tax_edit.html:16 #: pretix/control/templates/pretixcontrol/order/change.html:165 msgid "Tax rule" -msgstr "" +msgstr "Steierreegel" #: pretix/base/exporters/orderlist.py:490 #: pretix/base/exporters/orderlist.py:694 pretix/base/models/orders.py:205 msgid "canceled" -msgstr "" +msgstr "annuléiert" #: pretix/base/exporters/orderlist.py:585 #: pretix/base/exporters/orderlist.py:907 #: pretix/plugins/checkinlists/exporters.py:761 msgid "Position ID" -msgstr "" +msgstr "Positioun" #: pretix/base/exporters/orderlist.py:594 #: pretix/base/exporters/orderlist.py:1160 @@ -2398,7 +2454,7 @@ msgstr "" #: pretix/plugins/checkinlists/exporters.py:514 #: pretix/plugins/checkinlists/exporters.py:704 msgid "Start date" -msgstr "" +msgstr "Startdatum" #: pretix/base/exporters/orderlist.py:595 #: pretix/base/exporters/orderlist.py:1161 @@ -2411,7 +2467,7 @@ msgstr "" #: pretix/plugins/checkinlists/exporters.py:515 #: pretix/plugins/checkinlists/exporters.py:705 msgid "End date" -msgstr "" +msgstr "Schlussdatum" #: pretix/base/exporters/orderlist.py:597 #: pretix/base/exporters/orderlist.py:911 @@ -2441,7 +2497,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:12 #: pretix/presale/templates/pretixpresale/organizers/customer_membership.html:91 msgid "Product" -msgstr "" +msgstr "Produit" #: pretix/base/exporters/orderlist.py:619 pretix/base/models/vouchers.py:315 #: pretix/control/templates/pretixcontrol/vouchers/bulk.html:5 @@ -2449,42 +2505,42 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/detail.html:8 #: pretix/control/templates/pretixcontrol/waitinglist/index.html:171 msgid "Voucher" -msgstr "" +msgstr "Bong" #: pretix/base/exporters/orderlist.py:620 msgid "Pseudonymization ID" -msgstr "" +msgstr "ID vum Pseudonym" #: pretix/base/exporters/orderlist.py:621 pretix/control/forms/filter.py:709 #: pretix/control/templates/pretixcontrol/order/change.html:280 msgid "Ticket secret" -msgstr "" +msgstr "Ticket-Code" #: pretix/base/exporters/orderlist.py:622 pretix/base/modelimport_orders.py:610 #: pretix/base/modelimport_vouchers.py:272 #: pretix/plugins/checkinlists/exporters.py:527 msgid "Seat ID" -msgstr "" +msgstr "ID vun der Sëtzplaz" #: pretix/base/exporters/orderlist.py:623 #: pretix/plugins/checkinlists/exporters.py:528 msgid "Seat name" -msgstr "" +msgstr "Numm vum Sëtz" #: pretix/base/exporters/orderlist.py:624 #: pretix/plugins/checkinlists/exporters.py:529 msgid "Seat zone" -msgstr "" +msgstr "Zon vum Sëtz" #: pretix/base/exporters/orderlist.py:625 #: pretix/plugins/checkinlists/exporters.py:530 msgid "Seat row" -msgstr "" +msgstr "Rei vum Sëtz" #: pretix/base/exporters/orderlist.py:626 #: pretix/plugins/checkinlists/exporters.py:531 msgid "Seat number" -msgstr "" +msgstr "Sëtznummer" #: pretix/base/exporters/orderlist.py:627 #: pretix/control/templates/pretixcontrol/order/change.html:224 @@ -2493,7 +2549,7 @@ msgstr "" #: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:108 #: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:110 msgid "Blocked" -msgstr "" +msgstr "Gespaart" #: pretix/base/exporters/orderlist.py:628 pretix/base/modelimport_orders.py:537 #: pretix/base/models/orders.py:2539 @@ -2503,7 +2559,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/customer_membership.html:46 #: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html:54 msgid "Valid from" -msgstr "" +msgstr "Gülteg ab" #: pretix/base/exporters/orderlist.py:629 pretix/base/modelimport_orders.py:545 #: pretix/base/modelimport_vouchers.py:111 pretix/base/models/orders.py:2544 @@ -2515,20 +2571,20 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/customer_membership.html:48 #: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html:60 msgid "Valid until" -msgstr "" +msgstr "Gülteg bis" #: pretix/base/exporters/orderlist.py:630 pretix/base/modelimport_orders.py:643 msgid "Order comment" -msgstr "" +msgstr "Kommentar vun der Bestellung" #: pretix/base/exporters/orderlist.py:632 msgid "Add-on to position ID" -msgstr "" +msgstr "Zousazproduit zur Positioun" #: pretix/base/exporters/orderlist.py:662 msgctxt "address" msgid "Invoice address state" -msgstr "" +msgstr "Rechnungsadress: Staat" #: pretix/base/exporters/orderlist.py:670 pretix/control/navigation.py:305 #: pretix/control/templates/pretixcontrol/checkin/lists.html:6 @@ -2538,15 +2594,15 @@ msgstr "" #: pretix/control/templates/pretixcontrol/subevents/detail.html:164 #: pretix/plugins/checkinlists/apps.py:44 msgid "Check-in lists" -msgstr "" +msgstr "Check-in-Lëschten" #: pretix/base/exporters/orderlist.py:672 msgid "Position order link" -msgstr "" +msgstr "Link op d'Bestellung" #: pretix/base/exporters/orderlist.py:841 msgid "Order transaction data" -msgstr "" +msgstr "Donnéeë vun der Transaktioun" #: pretix/base/exporters/orderlist.py:843 msgid "" @@ -2573,7 +2629,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/waitinglist.html:11 #: pretix/presale/templates/pretixpresale/organizers/customer_membership.html:95 msgid "Event" -msgstr "" +msgstr "Evenement" #: pretix/base/exporters/orderlist.py:897 #: pretix/base/exporters/orderlist.py:1238 @@ -2587,19 +2643,19 @@ msgstr "" #: pretix/plugins/paypal2/templates/pretixplugins/paypal2/control_legacy.html:15 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:75 msgid "Currency" -msgstr "" +msgstr "Wärung" #: pretix/base/exporters/orderlist.py:903 msgid "Transaction date" -msgstr "" +msgstr "Datum vun der Transaktioun" #: pretix/base/exporters/orderlist.py:904 msgid "Transaction time" -msgstr "" +msgstr "Auerzäit vun der Transaktioun" #: pretix/base/exporters/orderlist.py:905 msgid "Old data" -msgstr "" +msgstr "Al Donnéeën" #: pretix/base/exporters/orderlist.py:908 pretix/base/models/items.py:1555 #: pretix/control/templates/pretixcontrol/order/transactions.html:23 @@ -2611,30 +2667,30 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/voucher.html:234 #: pretix/presale/templates/pretixpresale/event/voucher.html:389 msgid "Quantity" -msgstr "" +msgstr "Quantitéit" #: pretix/base/exporters/orderlist.py:915 msgid "Internal fee type" -msgstr "" +msgstr "Internen Typ un Fraisen" #: pretix/base/exporters/orderlist.py:917 msgctxt "subevent" msgid "Date ID" -msgstr "" +msgstr "ID vum Datum" #: pretix/base/exporters/orderlist.py:922 msgid "Tax rule ID" -msgstr "" +msgstr "ID vun der Steierreegel" #: pretix/base/exporters/orderlist.py:925 #: pretix/plugins/reports/accountingreport.py:320 msgid "Gross total" -msgstr "" +msgstr "Total (brutto)" #: pretix/base/exporters/orderlist.py:926 #: pretix/plugins/reports/accountingreport.py:319 msgid "Tax total" -msgstr "" +msgstr "Total vun de Steieren" #: pretix/base/exporters/orderlist.py:936 msgid "" @@ -2644,11 +2700,11 @@ msgstr "" #: pretix/base/exporters/orderlist.py:959 msgid "Converted from legacy version" -msgstr "" +msgstr "Vun aler Versioun konvertéiert" #: pretix/base/exporters/orderlist.py:1021 msgid "Payments and refunds" -msgstr "" +msgstr "Bezuelungen a Remboursementer" #: pretix/base/exporters/orderlist.py:1023 msgid "Download a spreadsheet of all payments or refunds of every order." @@ -2656,7 +2712,7 @@ msgstr "" #: pretix/base/exporters/orderlist.py:1033 msgid "Date range (payment date)" -msgstr "" +msgstr "Period (Datum vun der Bezuelung)" #: pretix/base/exporters/orderlist.py:1036 msgid "" @@ -2690,7 +2746,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/order.html:67 #: pretix/presale/templates/pretixpresale/organizers/customer_membership.html:70 msgid "Order" -msgstr "" +msgstr "Bestellung" #: pretix/base/exporters/orderlist.py:1097 #: pretix/base/exporters/orderlist.py:1282 @@ -2732,7 +2788,7 @@ msgstr "" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:25 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/transaction_list.html:13 msgid "Amount" -msgstr "" +msgstr "Montant" #: pretix/base/exporters/orderlist.py:1098 #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:102 @@ -2777,48 +2833,48 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/cancel.html:20 #: pretix/control/views/item.py:970 msgid "Paid orders" -msgstr "" +msgstr "Bezuelte Bestellungen" #: pretix/base/exporters/orderlist.py:1155 pretix/control/views/item.py:975 msgid "Pending orders" -msgstr "" +msgstr "Bestellungen, déi opstinn" #: pretix/base/exporters/orderlist.py:1155 msgid "Blocking vouchers" -msgstr "" +msgstr "Gespaarte Bongen" #: pretix/base/exporters/orderlist.py:1156 pretix/control/views/item.py:994 msgid "Current user's carts" -msgstr "" +msgstr "Aktuell Benotzer-Weenercher" #: pretix/base/exporters/orderlist.py:1156 msgid "Exited orders" -msgstr "" +msgstr "Ofgebrachen Bestellungen" #: pretix/base/exporters/orderlist.py:1156 msgid "Current availability" -msgstr "" +msgstr "Aktuell Disponibilitéit" #: pretix/base/exporters/orderlist.py:1173 #: pretix/base/exporters/orderlist.py:1180 #: pretix/control/templates/pretixcontrol/items/quota.html:58 #: pretix/control/views/item.py:1001 msgid "Infinite" -msgstr "" +msgstr "Illimitéiert" #: pretix/base/exporters/orderlist.py:1202 msgid "Gift card transactions" -msgstr "" +msgstr "Transaktiounen iwwer Bongen" #: pretix/base/exporters/orderlist.py:1204 #: pretix/base/exporters/orderlist.py:1311 msgctxt "export_category" msgid "Gift cards" -msgstr "" +msgstr "Bongen" #: pretix/base/exporters/orderlist.py:1205 msgid "Download a spreadsheet of all gift card transactions." -msgstr "" +msgstr "Eng Tabell mat allen Transaktiounen iwwer Bongen eroflueden." #: pretix/base/exporters/orderlist.py:1234 #: pretix/base/exporters/orderlist.py:1282 @@ -2831,7 +2887,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/giftcards.html:56 #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:152 msgid "Gift card code" -msgstr "" +msgstr "Code vum Bong" #: pretix/base/exporters/orderlist.py:1235 #: pretix/base/exporters/orderlist.py:1325 @@ -2840,7 +2896,7 @@ msgstr "" #: pretix/control/forms/filter.py:1446 pretix/control/forms/filter.py:1449 #: pretix/control/templates/pretixcontrol/event/live.html:75 msgid "Test mode" -msgstr "" +msgstr "Test-Modus" #: pretix/base/exporters/orderlist.py:1240 pretix/base/models/organizer.py:102 #: pretix/control/forms/event.py:110 pretix/control/forms/filter.py:919 @@ -2855,7 +2911,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/giftcard_acceptance_list.html:112 #: pretix/control/templates/pretixcontrol/organizers/mail.html:9 msgid "Organizer" -msgstr "" +msgstr "Organisateur" #: pretix/base/exporters/orderlist.py:1247 pretix/base/invoicing/pdf.py:587 #: pretix/control/templates/pretixcontrol/base.html:281 @@ -2885,11 +2941,11 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html:71 #: pretix/presale/templates/pretixpresale/organizers/customer_orders.html:40 msgid "TEST MODE" -msgstr "" +msgstr "TEST-MODUS" #: pretix/base/exporters/orderlist.py:1262 msgid "Gift card redemptions" -msgstr "" +msgstr "Remisen iwwer Bongen" #: pretix/base/exporters/orderlist.py:1264 msgid "" @@ -2899,7 +2955,7 @@ msgstr "" #: pretix/base/exporters/orderlist.py:1282 #: pretix/control/templates/pretixcontrol/giftcards/payment.html:16 msgid "Issuer" -msgstr "" +msgstr "Aussteller" #: pretix/base/exporters/orderlist.py:1309 pretix/control/navigation.py:550 #: pretix/control/navigation.py:568 @@ -2910,7 +2966,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:13 #: pretix/presale/views/customer.py:372 msgid "Gift cards" -msgstr "" +msgstr "Bongen" #: pretix/base/exporters/orderlist.py:1312 msgid "Download a spreadsheet of all gift cards including their current value." @@ -2946,24 +3002,24 @@ msgstr "" #: pretix/plugins/reports/accountingreport.py:105 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67 msgid "All" -msgstr "" +msgstr "All" #: pretix/base/exporters/orderlist.py:1329 pretix/control/forms/filter.py:1450 msgid "Live" -msgstr "" +msgstr "Verëffentlecht" #: pretix/base/exporters/orderlist.py:1338 pretix/control/forms/filter.py:1458 #: pretix/control/templates/pretixcontrol/pdf/index.html:325 msgid "Empty" -msgstr "" +msgstr "Eidel" #: pretix/base/exporters/orderlist.py:1339 pretix/control/forms/filter.py:1459 msgid "Valid and with value" -msgstr "" +msgstr "Gülteg mat enger Valeur" #: pretix/base/exporters/orderlist.py:1340 pretix/control/forms/filter.py:1460 msgid "Expired and with value" -msgstr "" +msgstr "Ofgelaf mat enger Valeur" #: pretix/base/exporters/orderlist.py:1341 pretix/control/forms/filter.py:233 #: pretix/control/forms/filter.py:1461 pretix/control/forms/filter.py:2121 @@ -2976,11 +3032,11 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/fragment_order_status.html:26 #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:42 msgid "Expired" -msgstr "" +msgstr "Ofgelaf" #: pretix/base/exporters/orderlist.py:1379 pretix/base/models/giftcards.py:105 msgid "Test mode card" -msgstr "" +msgstr "Test-Modus-Kaart" #: pretix/base/exporters/orderlist.py:1381 #: pretix/base/modelimport_orders.py:553 pretix/base/models/giftcards.py:109 @@ -2988,11 +3044,11 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/customer.html:293 #: pretix/control/templates/pretixcontrol/organizers/giftcards.html:62 msgid "Expiry date" -msgstr "" +msgstr "Oflafdatum" #: pretix/base/exporters/orderlist.py:1382 pretix/control/forms/orders.py:902 msgid "Special terms and conditions" -msgstr "" +msgstr "Speziell Benotzungsbedéngungen" #: pretix/base/exporters/orderlist.py:1384 #: pretix/control/templates/pretixcontrol/order/change.html:98 @@ -3001,19 +3057,19 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/giftcard.html:32 #: pretix/control/templates/pretixcontrol/organizers/giftcards.html:68 msgid "Current value" -msgstr "" +msgstr "Aktuell Valeur" #: pretix/base/exporters/orderlist.py:1385 msgid "Created in order" -msgstr "" +msgstr "Erstallt an der Bestellung" #: pretix/base/exporters/orderlist.py:1386 msgid "Last invoice number of order" -msgstr "" +msgstr "Lescht Rechnungsnummer vun der Bestellung" #: pretix/base/exporters/orderlist.py:1387 msgid "Last invoice date of order" -msgstr "" +msgstr "Leschten Datum vun der Rechnung fir d'Bestellung" #: pretix/base/exporters/reusablemedia.py:34 pretix/control/navigation.py:628 #: pretix/control/templates/pretixcontrol/organizers/edit.html:222 @@ -3022,12 +3078,12 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/reusable_media.html:6 #: pretix/control/templates/pretixcontrol/organizers/reusable_media.html:9 msgid "Reusable media" -msgstr "" +msgstr "Reutilisabel Medien" #: pretix/base/exporters/reusablemedia.py:35 msgctxt "export_category" msgid "Reusable media" -msgstr "" +msgstr "Reutilisabele Medium" #: pretix/base/exporters/reusablemedia.py:36 msgid "" @@ -3037,19 +3093,19 @@ msgstr "" #: pretix/base/exporters/reusablemedia.py:47 pretix/base/models/media.py:67 msgctxt "reusable_medium" msgid "Media type" -msgstr "" +msgstr "Typ vum Medium" #: pretix/base/exporters/reusablemedia.py:48 pretix/base/models/media.py:73 msgctxt "reusable_medium" msgid "Identifier" -msgstr "" +msgstr "Identifiant" #: pretix/base/exporters/reusablemedia.py:50 pretix/base/models/media.py:81 #: pretix/base/models/orders.py:265 pretix/base/models/orders.py:3123 #: pretix/control/forms/orders.py:78 #: pretix/control/templates/pretixcontrol/order/refund_choose.html:138 msgid "Expiration date" -msgstr "" +msgstr "Oflafdatum" #: pretix/base/exporters/reusablemedia.py:51 pretix/base/models/media.py:90 #: pretix/control/templates/pretixcontrol/order/index.html:216 @@ -3057,20 +3113,20 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_confirm.html:136 #: pretix/presale/templates/pretixpresale/event/checkout_customer.html:8 msgid "Customer account" -msgstr "" +msgstr "Clientskont" #: pretix/base/exporters/reusablemedia.py:52 pretix/base/models/media.py:97 msgid "Linked ticket" -msgstr "" +msgstr "Verlinkten Ticket" #: pretix/base/exporters/reusablemedia.py:53 pretix/base/models/media.py:104 msgid "Linked gift card" -msgstr "" +msgstr "Verlinkte Bong" #: pretix/base/exporters/waitinglist.py:42 msgctxt "export_category" msgid "Waiting list" -msgstr "" +msgstr "Waardelëscht" #: pretix/base/exporters/waitinglist.py:43 msgid "Download a spread sheet with all your waiting list data." @@ -3079,55 +3135,55 @@ msgstr "" #: pretix/base/exporters/waitinglist.py:50 #: pretix/control/templates/pretixcontrol/waitinglist/index.html:102 msgid "All entries" -msgstr "" +msgstr "All Entréeën" #: pretix/base/exporters/waitinglist.py:55 #: pretix/control/templates/pretixcontrol/waitinglist/index.html:105 msgid "Waiting for a voucher" -msgstr "" +msgstr "Waart op e Bong" #: pretix/base/exporters/waitinglist.py:60 #: pretix/control/templates/pretixcontrol/waitinglist/index.html:107 #: pretix/control/templates/pretixcontrol/waitinglist/index.html:227 #: pretix/control/views/waitinglist.py:333 msgid "Voucher assigned" -msgstr "" +msgstr "Bong zougewisen" #: pretix/base/exporters/waitinglist.py:65 #: pretix/control/templates/pretixcontrol/waitinglist/index.html:110 msgid "Waiting for redemption" -msgstr "" +msgstr "Waart op Remboursement" #: pretix/base/exporters/waitinglist.py:73 #: pretix/control/templates/pretixcontrol/waitinglist/index.html:223 #: pretix/control/views/waitinglist.py:329 msgid "Voucher redeemed" -msgstr "" +msgstr "Bong ageléist" #: pretix/base/exporters/waitinglist.py:81 #: pretix/control/templates/pretixcontrol/waitinglist/index.html:116 #: pretix/control/templates/pretixcontrol/waitinglist/index.html:225 #: pretix/control/views/waitinglist.py:331 msgid "Voucher expired" -msgstr "" +msgstr "Bong ofgelaf" #: pretix/base/exporters/waitinglist.py:118 #: pretix/base/modelimport_orders.py:111 pretix/base/modelimport_vouchers.py:60 #: pretix/control/templates/pretixcontrol/checkin/index.html:100 msgctxt "subevents" msgid "Date" -msgstr "" +msgstr "Datum" #: pretix/base/exporters/waitinglist.py:122 #: pretix/control/views/waitinglist.py:315 msgid "Priority" -msgstr "" +msgstr "Prioritéit" #: pretix/base/forms/__init__.py:95 pretix/base/forms/__init__.py:106 #: pretix/base/forms/__init__.py:118 #, python-brace-format msgid "You can use {markup_name} in this field." -msgstr "" +msgstr "Dir kënnt {markup_name} an dësem Feld notzen." #: pretix/base/forms/__init__.py:178 #, python-format @@ -3138,59 +3194,62 @@ msgstr "" #: pretix/base/forms/auth.py:61 pretix/base/forms/auth.py:179 msgid "Keep me logged in" -msgstr "" +msgstr "Ageloggt bleiwen" #: pretix/base/forms/auth.py:65 pretix/base/forms/auth.py:272 msgid "This combination of credentials is not known to our system." -msgstr "" +msgstr "Dës Kombinatioun un Zougangsdonnéeën ass an eisem System net bekannt." #: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:57 #: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457 msgid "For security reasons, please wait 5 minutes before you try again." msgstr "" +"Aus Sécherheetsgrënn waart wgl. 5 Minutten éier Dir nach eemol probéiert." #: pretix/base/forms/auth.py:67 pretix/base/forms/auth.py:273 msgid "This account is inactive." -msgstr "" +msgstr "Dëse Kont ass net aktiv." #: pretix/base/forms/auth.py:156 msgid "" "You already registered with that email address, please use the login form." msgstr "" +"Dir sidd scho mat dëser E-Mails-Adress registréiert, benotzt wgl. d'Login-" +"Form." #: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215 #: pretix/base/forms/user.py:56 pretix/control/forms/users.py:45 #: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384 msgid "Please enter the same password twice" -msgstr "" +msgstr "Gitt wgl. dat selwecht Passwuert an" #: pretix/base/forms/auth.py:172 pretix/base/forms/auth.py:224 #: pretix/presale/forms/customer.py:308 pretix/presale/forms/customer.py:403 msgid "Repeat password" -msgstr "" +msgstr "Passwuert widderhuelen" #: pretix/base/forms/questions.py:137 pretix/base/forms/questions.py:264 msgctxt "name_salutation" msgid "not specified" -msgstr "" +msgstr "keng Angab" #: pretix/base/forms/questions.py:227 msgid "Please do not use special characters in names." -msgstr "" +msgstr "Benotzt wgl. keng speziell Charakteren an den Nimm." #: pretix/base/forms/questions.py:289 msgid "Please enter a shorter name." -msgstr "" +msgstr "Gitt wgl. e méi kuerzen Numm an." #: pretix/base/forms/questions.py:314 msgctxt "phonenumber" msgid "International area code" -msgstr "" +msgstr "Lännervirwal" #: pretix/base/forms/questions.py:340 msgctxt "phonenumber" msgid "Phone number (without international area code)" -msgstr "" +msgstr "Telefonsnummer (ouni Lännervirwal)" #: pretix/base/forms/questions.py:501 msgid "" @@ -3222,7 +3281,7 @@ msgstr "" #: pretix/base/forms/questions.py:709 pretix/base/forms/questions.py:1102 msgid "Street and Number" -msgstr "" +msgstr "Strooss an Nummer" #: pretix/base/forms/questions.py:1166 msgid "" @@ -3242,7 +3301,7 @@ msgstr "" #: pretix/base/forms/questions.py:1181 msgid "No invoice requested" -msgstr "" +msgstr "Keng Rechnung ugefrot" #: pretix/base/forms/questions.py:1183 msgid "Invoice transmission method" @@ -3250,11 +3309,11 @@ msgstr "" #: pretix/base/forms/questions.py:1329 msgid "You need to provide a company name." -msgstr "" +msgstr "Dir musst e Firmennumm uginn." #: pretix/base/forms/questions.py:1331 msgid "You need to provide your name." -msgstr "" +msgstr "Dir musst Ären Numm uginn." #: pretix/base/forms/questions.py:1357 msgid "" @@ -3356,27 +3415,27 @@ msgstr "" #: pretix/base/forms/widgets.py:68 #, python-format msgid "Sample: %s" -msgstr "" +msgstr "Beispill: %s" #: pretix/base/forms/widgets.py:71 #, python-brace-format msgid "Available placeholders: {list}" -msgstr "" +msgstr "Disponibel Platzhalter: {list}" #: pretix/base/forms/widgets.py:214 pretix/base/models/items.py:1656 #: pretix/plugins/checkinlists/exporters.py:757 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:40 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:54 msgid "Time" -msgstr "" +msgstr "Zäit" #: pretix/base/forms/widgets.py:234 pretix/base/forms/widgets.py:239 msgid "Business or institutional customer" -msgstr "" +msgstr "Professionellen oder institutionelle Client" #: pretix/base/forms/widgets.py:238 msgid "Individual customer" -msgstr "" +msgstr "Private Client" #: pretix/base/invoicing/email.py:50 msgid "Email invoice directly to accounting department" @@ -3489,7 +3548,7 @@ msgstr "" #: pretix/base/invoicing/pdf.py:527 msgctxt "invoice" msgid "Event" -msgstr "" +msgstr "Evenement" #: pretix/base/invoicing/pdf.py:561 #, python-brace-format @@ -3519,7 +3578,7 @@ msgstr "" #: pretix/base/invoicing/pdf.py:675 msgctxt "invoice" msgid "Beneficiary" -msgstr "" +msgstr "Beneficiaire" #: pretix/base/invoicing/pdf.py:708 msgctxt "invoice" @@ -3529,7 +3588,7 @@ msgstr "" #: pretix/base/invoicing/pdf.py:709 msgctxt "invoice" msgid "Invoice" -msgstr "" +msgstr "Rechnung" #: pretix/base/invoicing/pdf.py:710 #: pretix/control/templates/pretixcontrol/order/index.html:272 @@ -3537,17 +3596,17 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/order.html:244 msgctxt "invoice" msgid "Cancellation" -msgstr "" +msgstr "Annulatioun" #: pretix/base/invoicing/pdf.py:732 pretix/base/invoicing/pdf.py:740 msgctxt "invoice" msgid "Description" -msgstr "" +msgstr "Beschreiwung" #: pretix/base/invoicing/pdf.py:733 pretix/base/invoicing/pdf.py:741 msgctxt "invoice" msgid "Qty" -msgstr "" +msgstr "Qtéit" #: pretix/base/invoicing/pdf.py:734 pretix/base/invoicing/pdf.py:960 msgctxt "invoice" @@ -3557,17 +3616,17 @@ msgstr "" #: pretix/base/invoicing/pdf.py:735 msgctxt "invoice" msgid "Net" -msgstr "" +msgstr "Netto" #: pretix/base/invoicing/pdf.py:736 msgctxt "invoice" msgid "Gross" -msgstr "" +msgstr "Brutto" #: pretix/base/invoicing/pdf.py:742 msgctxt "invoice" msgid "Amount" -msgstr "" +msgstr "Montant" #: pretix/base/invoicing/pdf.py:818 #, python-brace-format @@ -3625,7 +3684,7 @@ msgstr "" #: pretix/base/invoicing/pdf.py:963 msgctxt "invoice" msgid "Tax" -msgstr "" +msgstr "Steier" #: pretix/base/invoicing/pdf.py:993 msgctxt "invoice" @@ -3715,71 +3774,71 @@ msgstr "" #: pretix/base/logentrytypes.py:49 msgid "(deleted)" -msgstr "" +msgstr "(geläscht)" #: pretix/base/logentrytypes.py:78 #, python-brace-format msgid "Order {val}" -msgstr "" +msgstr "Bestellung {val}" #: pretix/base/logentrytypes.py:90 #, python-brace-format msgid "Voucher {val}…" -msgstr "" +msgstr "Bong {val}…" #: pretix/base/logentrytypes.py:102 #, python-brace-format msgid "Product {val}" -msgstr "" +msgstr "Produit {val}" #: pretix/base/logentrytypes.py:109 #, python-brace-format msgctxt "subevent" msgid "Date {val}" -msgstr "" +msgstr "Datum {val}" #: pretix/base/logentrytypes.py:116 #, python-brace-format msgid "Quota {val}" -msgstr "" +msgstr "Contingent {val}" #: pretix/base/logentrytypes.py:123 #, python-brace-format msgid "Discount {val}" -msgstr "" +msgstr "Remise {val}" #: pretix/base/logentrytypes.py:130 #, python-brace-format msgid "Category {val}" -msgstr "" +msgstr "Kategorie {val}" #: pretix/base/logentrytypes.py:137 #, python-brace-format msgid "Question {val}" -msgstr "" +msgstr "Fro {val}" #: pretix/base/logentrytypes.py:144 #, python-brace-format msgid "Tax rule {val}" -msgstr "" +msgstr "Steierreegel {val}" #: pretix/base/media.py:71 msgid "Barcode / QR-Code" -msgstr "" +msgstr "Barcode / QR-Code" #: pretix/base/media.py:88 #: pretix/control/templates/pretixcontrol/organizers/edit.html:255 msgid "NFC UID-based" -msgstr "" +msgstr "NFC UID-baséierend" #: pretix/base/migrations/0077_auto_20171124_1629.py:33 #: pretix/base/migrations/0077_auto_20171124_1629_squashed_0088_auto_20180328_1217.py:35 msgid "Default list" -msgstr "" +msgstr "Standardlëscht" #: pretix/base/modelimport.py:112 msgid "Keep empty" -msgstr "" +msgstr "Eidel loossen" #: pretix/base/modelimport.py:146 #, python-brace-format @@ -3814,7 +3873,7 @@ msgstr "" #: pretix/base/modelimport_orders.py:73 msgid "Grouping" -msgstr "" +msgstr "Gruppéierung" #: pretix/base/modelimport_orders.py:75 msgid "" @@ -3858,7 +3917,7 @@ msgstr "" #: pretix/base/modelimport_vouchers.py:205 pretix/base/models/items.py:1257 #: pretix/base/models/vouchers.py:266 pretix/base/models/waitinglist.py:99 msgid "Product variation" -msgstr "" +msgstr "Variant vum Produit" #: pretix/base/modelimport_orders.py:161 msgid "The variation can be specified by its internal ID or full name." @@ -3918,7 +3977,7 @@ msgstr "" #: pretix/base/modelimport_orders.py:445 msgid "State" -msgstr "" +msgstr "Staat" #: pretix/base/modelimport_orders.py:468 msgid "Calculate from product" @@ -3984,7 +4043,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/items/question_edit.html:17 #: pretix/control/templates/pretixcontrol/items/questions.html:21 msgid "Question" -msgstr "" +msgstr "Fro" #: pretix/base/modelimport_orders.py:701 pretix/base/modelimport_orders.py:709 #: pretix/base/models/items.py:1830 pretix/base/models/items.py:1848 @@ -3997,7 +4056,7 @@ msgstr "" #: pretix/base/modelimport_orders.py:742 pretix/base/models/orders.py:239 msgid "Customer" -msgstr "" +msgstr "Client" #: pretix/base/modelimport_orders.py:756 msgid "No matching customer was found." @@ -4056,7 +4115,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/items/quota_edit.html:8 #: pretix/control/templates/pretixcontrol/items/quota_edit.html:15 msgid "Quota" -msgstr "" +msgstr "Contingent" #: pretix/base/modelimport_vouchers.py:253 msgid "You cannot specify a quota if you specified a product." @@ -4084,7 +4143,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/tags.html:42 #: pretix/control/views/vouchers.py:120 msgid "Tag" -msgstr "" +msgstr "Tag" #: pretix/base/modelimport_vouchers.py:334 pretix/base/models/vouchers.py:300 msgid "Shows hidden products that match this voucher" @@ -4138,13 +4197,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/users/form.html:6 #: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149 msgid "User" -msgstr "" +msgstr "Benotzer" #: pretix/base/models/auth.py:284 pretix/control/navigation.py:411 #: pretix/control/templates/pretixcontrol/users/index.html:5 #: pretix/control/templates/pretixcontrol/users/index.html:7 msgid "Users" -msgstr "" +msgstr "Benotzeren" #: pretix/base/models/auth.py:342 msgid "Account information changed" @@ -4212,7 +4271,7 @@ msgstr "" #: pretix/base/models/checkin.py:85 pretix/control/navigation.py:652 #: pretix/control/templates/pretixcontrol/organizers/gates.html:5 msgid "Gates" -msgstr "" +msgstr "Statiounen" #: pretix/base/models/checkin.py:86 msgid "" @@ -4239,11 +4298,11 @@ msgstr "" #: pretix/base/models/checkin.py:336 msgid "Entry" -msgstr "" +msgstr "Entrée" #: pretix/base/models/checkin.py:337 msgid "Exit" -msgstr "" +msgstr "Sortie" #: pretix/base/models/checkin.py:356 msgid "Unknown ticket" @@ -4329,7 +4388,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/giftcard_acceptance_list.html:135 #: pretix/control/templates/pretixcontrol/organizers/reusable_medium.html:35 msgid "disabled" -msgstr "" +msgstr "desaktivéiert" #: pretix/base/models/customers.py:330 pretix/base/models/orders.py:1538 #: pretix/base/models/orders.py:3294 pretix/base/settings.py:1179 @@ -4345,12 +4404,12 @@ msgstr "" #: pretix/base/models/customers.py:401 msgctxt "openidconnect" msgid "Confidential" -msgstr "" +msgstr "Vertraulech" #: pretix/base/models/customers.py:402 msgctxt "openidconnect" msgid "Public" -msgstr "" +msgstr "Ëffentlech" #: pretix/base/models/customers.py:408 msgctxt "openidconnect" @@ -4360,7 +4419,7 @@ msgstr "" #: pretix/base/models/customers.py:409 msgctxt "openidconnect" msgid "Implicit" -msgstr "" +msgstr "Implizit" #: pretix/base/models/customers.py:413 msgid "OpenID Connect access (required)" @@ -4421,7 +4480,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/gates.html:16 #: pretix/plugins/checkinlists/exporters.py:769 msgid "Gate" -msgstr "" +msgstr "Statioun" #: pretix/base/models/devices.py:131 #: pretix/control/templates/pretixcontrol/organizers/devices.html:83 @@ -4451,7 +4510,7 @@ msgstr "" #: pretix/base/models/items.py:1481 pretix/base/models/items.py:1708 #: pretix/base/models/organizer.py:619 msgid "Position" -msgstr "" +msgstr "Positioun" #: pretix/base/models/discount.py:72 msgid "All supported sales channels" @@ -4638,7 +4697,7 @@ msgstr "" #: pretix/base/models/event.py:665 pretix/base/models/organizer.py:97 #: pretix/control/navigation.py:65 pretix/control/navigation.py:499 msgid "Plugins" -msgstr "" +msgstr "Pluginen" #: pretix/base/models/event.py:672 pretix/base/pdf.py:240 #: pretix/control/forms/event.py:273 pretix/control/forms/filter.py:1706 @@ -4676,7 +4735,7 @@ msgstr "" #: pretix/plugins/reports/accountingreport.py:105 #: pretix/plugins/reports/accountingreport.py:108 msgid "Events" -msgstr "" +msgstr "Evenementer" #: pretix/base/models/event.py:1339 msgid "" @@ -4822,7 +4881,7 @@ msgstr "" #: pretix/base/models/exports.py:42 pretix/control/navigation.py:229 #: pretix/control/navigation.py:662 msgid "Export" -msgstr "" +msgstr "Export" #: pretix/base/models/exports.py:59 msgid "Additional recipients" @@ -4851,7 +4910,7 @@ msgstr "" #: pretix/control/forms/vouchers.py:282 pretix/plugins/sendmail/forms.py:57 #: pretix/plugins/sendmail/forms.py:73 pretix/plugins/sendmail/models.py:248 msgid "Subject" -msgstr "" +msgstr "Sujet" #: pretix/base/models/exports.py:78 pretix/control/forms/orders.py:769 #: pretix/control/forms/orders.py:792 pretix/control/forms/orders.py:960 @@ -4859,7 +4918,7 @@ msgstr "" #: pretix/plugins/sendmail/forms.py:58 pretix/plugins/sendmail/forms.py:78 #: pretix/plugins/sendmail/models.py:249 msgid "Message" -msgstr "" +msgstr "Message" #: pretix/base/models/exports.py:85 msgid "Requested start time" @@ -4906,16 +4965,16 @@ msgstr "" #: pretix/base/models/invoices.py:124 msgid "transmitted" -msgstr "" +msgstr "iwwerdroen" #: pretix/base/models/invoices.py:125 pretix/plugins/sendmail/models.py:52 msgid "failed" -msgstr "" +msgstr "feelgeschloen" #: pretix/base/models/invoices.py:126 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:56 msgid "unknown" -msgstr "" +msgstr "onbekannt" #: pretix/base/models/invoices.py:127 msgid "not transmitted due to test mode" @@ -5061,7 +5120,7 @@ msgstr "" #: pretix/base/models/items.py:475 pretix/base/models/items.py:1458 msgid "Category" -msgstr "" +msgstr "Kategorie" #: pretix/base/models/items.py:476 msgid "" @@ -5272,7 +5331,7 @@ msgstr "" #: pretix/base/models/items.py:728 msgid "Validity" -msgstr "" +msgstr "Gültegkeet" #: pretix/base/models/items.py:730 msgid "" @@ -5296,19 +5355,19 @@ msgstr "" #: pretix/base/models/items.py:742 msgid "Minutes" -msgstr "" +msgstr "Minutten" #: pretix/base/models/items.py:746 msgid "Hours" -msgstr "" +msgstr "Stonnen" #: pretix/base/models/items.py:750 msgid "Days" -msgstr "" +msgstr "Deeg" #: pretix/base/models/items.py:754 msgid "Months" -msgstr "" +msgstr "Méint" #: pretix/base/models/items.py:757 msgid "Customers can select the validity start date" @@ -5368,7 +5427,7 @@ msgstr "" #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32 #: pretix/presale/templates/pretixpresale/event/index.html:221 msgid "Products" -msgstr "" +msgstr "Produiten" #: pretix/base/models/items.py:989 msgid "" @@ -5550,7 +5609,7 @@ msgstr "" #: pretix/base/models/items.py:1648 msgid "Number" -msgstr "" +msgstr "Nummer" #: pretix/base/models/items.py:1649 msgid "Text (one line)" @@ -5562,7 +5621,7 @@ msgstr "" #: pretix/base/models/items.py:1651 msgid "Yes/No" -msgstr "" +msgstr "Jo/Nee" #: pretix/base/models/items.py:1652 msgid "Choose one from a list" @@ -5579,7 +5638,7 @@ msgstr "" #: pretix/base/models/items.py:1657 #: pretix/control/templates/pretixcontrol/event/settings.html:240 msgid "Date and time" -msgstr "" +msgstr "Datum an Auerzäit" #: pretix/base/models/items.py:1658 msgid "Country code (ISO 3166-1 alpha-2)" @@ -5731,7 +5790,7 @@ msgstr "" #: pretix/base/models/items.py:1961 #: pretix/control/templates/pretixcontrol/items/question.html:90 msgid "Answer" -msgstr "" +msgstr "Äntwert" #: pretix/base/models/items.py:1985 #, python-brace-format @@ -5759,12 +5818,12 @@ msgstr "" #: pretix/base/models/orders.py:3011 #: pretix/control/templates/pretixcontrol/checkin/index.html:97 msgid "Item" -msgstr "" +msgstr "Produit" #: pretix/base/models/items.py:2088 pretix/control/forms/item.py:915 #: pretix/plugins/autocheckin/models.py:74 msgid "Variations" -msgstr "" +msgstr "Varianten" #: pretix/base/models/items.py:2092 #: pretix/control/templates/pretixcontrol/items/quotas.html:70 @@ -5811,7 +5870,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html:185 #: pretix/control/templates/pretixcontrol/subevents/detail.html:59 msgid "Quotas" -msgstr "" +msgstr "Contingenten" #: pretix/base/models/items.py:2195 msgid "All variations must belong to an item contained in the items list." @@ -5881,7 +5940,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/customer_membership.html:34 #: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html:44 msgid "Canceled" -msgstr "" +msgstr "Annuléiert" #: pretix/base/models/memberships.py:134 #: pretix/control/templates/pretixcontrol/organizers/customer.html:117 @@ -5891,22 +5950,22 @@ msgstr "" #: pretix/base/models/orders.py:202 msgid "pending" -msgstr "" +msgstr "steet op" #: pretix/base/models/orders.py:203 pretix/base/payment.py:570 #: pretix/base/services/invoices.py:572 msgid "paid" -msgstr "" +msgstr "bezuelt" #: pretix/base/models/orders.py:204 pretix/control/forms/filter.py:1602 #: pretix/control/templates/pretixcontrol/organizers/reusable_medium.html:37 msgid "expired" -msgstr "" +msgstr "ofgelaf" #: pretix/base/models/orders.py:254 pretix/control/forms/filter.py:592 #: pretix/control/templates/pretixcontrol/organizers/customer.html:65 msgid "Locale" -msgstr "" +msgstr "Sprooch" #: pretix/base/models/orders.py:269 pretix/control/forms/filter.py:603 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/refund_export.html:57 @@ -5997,7 +6056,7 @@ msgstr "" #: pretix/base/models/orders.py:1405 msgid "" -msgstr "" +msgstr "" #: pretix/base/models/orders.py:1506 pretix/base/models/orders.py:1514 msgid "Empty, if this product is not an admission ticket" @@ -6006,32 +6065,32 @@ msgstr "" #: pretix/base/models/orders.py:1723 msgctxt "payment_state" msgid "created" -msgstr "" +msgstr "erstallt" #: pretix/base/models/orders.py:1724 msgctxt "payment_state" msgid "pending" -msgstr "" +msgstr "steet op" #: pretix/base/models/orders.py:1725 msgctxt "payment_state" msgid "confirmed" -msgstr "" +msgstr "confirméiert" #: pretix/base/models/orders.py:1726 msgctxt "payment_state" msgid "canceled" -msgstr "" +msgstr "annuléiert" #: pretix/base/models/orders.py:1727 msgctxt "payment_state" msgid "failed" -msgstr "" +msgstr "feelgeschloen" #: pretix/base/models/orders.py:1728 msgctxt "payment_state" msgid "refunded" -msgstr "" +msgstr "rembourséiert" #: pretix/base/models/orders.py:1756 pretix/base/models/orders.py:2195 #: pretix/base/shredder.py:633 @@ -6046,7 +6105,7 @@ msgstr "" #: pretix/base/models/orders.py:2137 msgctxt "refund_state" msgid "created" -msgstr "" +msgstr "erstallt" #: pretix/base/models/orders.py:2138 msgctxt "refund_state" @@ -6056,32 +6115,32 @@ msgstr "" #: pretix/base/models/orders.py:2139 msgctxt "refund_state" msgid "done" -msgstr "" +msgstr "fäerdeg" #: pretix/base/models/orders.py:2140 msgctxt "refund_state" msgid "failed" -msgstr "" +msgstr "feelgeschloen" #: pretix/base/models/orders.py:2142 msgctxt "refund_state" msgid "canceled" -msgstr "" +msgstr "annuléiert" #: pretix/base/models/orders.py:2150 msgctxt "refund_source" msgid "Organizer" -msgstr "" +msgstr "Organisateur" #: pretix/base/models/orders.py:2151 msgctxt "refund_source" msgid "Customer" -msgstr "" +msgstr "Client" #: pretix/base/models/orders.py:2152 msgctxt "refund_source" msgid "External" -msgstr "" +msgstr "Extern" #: pretix/base/models/orders.py:2190 #: pretix/control/templates/pretixcontrol/order/refund_choose.html:198 @@ -6140,7 +6199,7 @@ msgstr "" #: pretix/control/views/vouchers.py:120 #: pretix/presale/templates/pretixpresale/event/fragment_giftcard_history.html:8 msgid "Value" -msgstr "" +msgstr "Valeur" #: pretix/base/models/orders.py:2571 msgid "Order position" @@ -6177,23 +6236,23 @@ msgstr "" #: pretix/base/models/orders.py:3534 #: pretix/plugins/badges/templates/pretixplugins/badges/control_order_position_buttons.html:9 msgid "Badge" -msgstr "" +msgstr "Badge" #: pretix/base/models/orders.py:3535 pretix/base/pdf.py:1124 #: pretix/control/templates/pretixcontrol/checkin/checkins.html:66 #: pretix/plugins/ticketoutputpdf/ticketoutput.py:114 msgid "Ticket" -msgstr "" +msgstr "Ticket" #: pretix/base/models/orders.py:3536 msgid "Certificate" -msgstr "" +msgstr "Certificat" #: pretix/base/models/orders.py:3537 pretix/control/views/event.py:393 #: pretix/control/views/event.py:398 pretix/control/views/organizer.py:649 #: pretix/control/views/organizer.py:654 msgid "Other" -msgstr "" +msgstr "Aner" #: pretix/base/models/organizer.py:81 msgid "" @@ -6207,7 +6266,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/index.html:6 #: pretix/control/templates/pretixcontrol/organizers/index.html:8 msgid "Organizers" -msgstr "" +msgstr "Organisateuren" #: pretix/base/models/organizer.py:350 #: pretix/control/templates/pretixcontrol/organizers/teams.html:35 @@ -6303,12 +6362,12 @@ msgstr "" #: pretix/base/models/organizer.py:451 #: pretix/control/templates/pretixcontrol/events/create_basics.html:67 msgid "Team" -msgstr "" +msgstr "Team" #: pretix/base/models/organizer.py:452 pretix/control/navigation.py:539 #: pretix/control/templates/pretixcontrol/organizers/teams.html:6 msgid "Teams" -msgstr "" +msgstr "Teams" #: pretix/base/models/organizer.py:472 #, python-brace-format @@ -6318,13 +6377,13 @@ msgstr "" #: pretix/base/models/organizer.py:604 #: pretix/control/templates/pretixcontrol/organizers/channels.html:23 msgid "Identifier" -msgstr "" +msgstr "Identifiant" #: pretix/base/models/organizer.py:614 #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:54 #: pretix/control/templates/pretixcontrol/items/questions.html:22 msgid "Type" -msgstr "" +msgstr "Typ" #: pretix/base/models/seating.py:45 pretix/base/models/tax.py:305 #: pretix/base/pdf.py:1301 @@ -6539,7 +6598,7 @@ msgstr "" #: pretix/base/models/tax.py:365 msgid "DEPRECATED" -msgstr "" +msgstr "VERALT" #: pretix/base/models/tax.py:366 msgid "" @@ -6624,7 +6683,7 @@ msgstr "" #: pretix/base/models/vouchers.py:204 pretix/control/views/vouchers.py:120 msgid "Redeemed" -msgstr "" +msgstr "Ageléist" #: pretix/base/models/vouchers.py:209 msgid "" @@ -6686,7 +6745,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/index.html:6 #: pretix/control/templates/pretixcontrol/vouchers/index.html:8 msgid "Vouchers" -msgstr "" +msgstr "Bongen" #: pretix/base/models/vouchers.py:342 msgid "You cannot select a quota that belongs to a different event." @@ -6832,7 +6891,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/subevents/index.html:7 msgctxt "subevent" msgid "Dates" -msgstr "" +msgstr "Datumer" #: pretix/base/notifications.py:200 #: pretix/control/templates/pretixcontrol/order/index.html:730 @@ -7189,7 +7248,7 @@ msgstr "" #: pretix/base/payment.py:1320 msgid "Offsetting" -msgstr "" +msgstr "Verrechnung" #: pretix/base/payment.py:1334 pretix/control/views/orders.py:1256 msgid "You entered an order that could not be found." @@ -7368,7 +7427,7 @@ msgstr "" #: pretix/base/pdf.py:423 pretix/base/pdf.py:447 pretix/base/pdf.py:471 #: pretix/base/pdf.py:528 pretix/base/pdf.py:533 msgid "2017-05-31" -msgstr "" +msgstr "31.05.2017" #: pretix/base/pdf.py:271 msgid "Event begin time" @@ -7376,7 +7435,7 @@ msgstr "" #: pretix/base/pdf.py:272 msgid "20:00" -msgstr "" +msgstr "20:00" #: pretix/base/pdf.py:276 msgid "Event begin weekday" @@ -7385,7 +7444,7 @@ msgstr "" #: pretix/base/pdf.py:277 pretix/base/pdf.py:306 #: pretix/base/services/checkin.py:362 pretix/control/forms/filter.py:1271 msgid "Friday" -msgstr "" +msgstr "Freideg" #: pretix/base/pdf.py:281 msgid "Event end date and time" @@ -7397,7 +7456,7 @@ msgstr "" #: pretix/base/pdf.py:298 msgid "22:00" -msgstr "" +msgstr "22:00" #: pretix/base/pdf.py:305 msgid "Event end weekday" @@ -7419,7 +7478,7 @@ msgstr "" #: pretix/base/pdf.py:319 pretix/base/pdf.py:415 pretix/base/pdf.py:439 #: pretix/base/pdf.py:463 pretix/base/pdf.py:487 msgid "19:00" -msgstr "" +msgstr "19:00" #: pretix/base/pdf.py:326 msgid "Event location" @@ -7435,7 +7494,7 @@ msgstr "" #: pretix/base/pdf.py:357 msgid "12345" -msgstr "" +msgstr "12345" #: pretix/base/pdf.py:362 pretix/base/services/invoices.py:576 msgid "Sample city" @@ -7451,7 +7510,7 @@ msgstr "" #: pretix/base/pdf.py:372 msgid "Atlantis" -msgstr "" +msgstr "Atlantis" #: pretix/base/pdf.py:376 msgid "List of Add-Ons" @@ -7626,15 +7685,15 @@ msgstr "" #: pretix/base/plugins.py:138 #: pretix/control/templates/pretixcontrol/event/quick_setup.html:132 msgid "Features" -msgstr "" +msgstr "Fonctionalitéiten" #: pretix/base/plugins.py:140 msgid "Integrations" -msgstr "" +msgstr "Integratiounen" #: pretix/base/plugins.py:141 msgid "Customizations" -msgstr "" +msgstr "Personalisatiounen" #: pretix/base/plugins.py:142 msgid "Output and export formats" @@ -7646,15 +7705,15 @@ msgstr "" #: pretix/base/reldate.py:38 msgid "Event start" -msgstr "" +msgstr "Start vum Evenement" #: pretix/base/reldate.py:39 msgid "Event end" -msgstr "" +msgstr "Schluss vum Evenement" #: pretix/base/reldate.py:40 msgid "Event admission" -msgstr "" +msgstr "Zougang" #: pretix/base/reldate.py:41 msgid "Presale start" @@ -7666,11 +7725,11 @@ msgstr "" #: pretix/base/reldate.py:186 msgid "before" -msgstr "" +msgstr "virun" #: pretix/base/reldate.py:187 msgid "after" -msgstr "" +msgstr "no" #: pretix/base/reldate.py:308 pretix/base/reldate.py:472 msgid "Fixed date:" @@ -8068,27 +8127,27 @@ msgstr "" #: pretix/base/services/checkin.py:358 pretix/control/forms/filter.py:1267 msgid "Monday" -msgstr "" +msgstr "Méindeg" #: pretix/base/services/checkin.py:359 pretix/control/forms/filter.py:1268 msgid "Tuesday" -msgstr "" +msgstr "Dënschdeg" #: pretix/base/services/checkin.py:360 pretix/control/forms/filter.py:1269 msgid "Wednesday" -msgstr "" +msgstr "Mëttwoch" #: pretix/base/services/checkin.py:361 pretix/control/forms/filter.py:1270 msgid "Thursday" -msgstr "" +msgstr "Donneschdeg" #: pretix/base/services/checkin.py:363 pretix/control/forms/filter.py:1272 msgid "Saturday" -msgstr "" +msgstr "Samschdeg" #: pretix/base/services/checkin.py:364 pretix/control/forms/filter.py:1273 msgid "Sunday" -msgstr "" +msgstr "Sonndeg" #: pretix/base/services/checkin.py:368 #, python-brace-format @@ -8235,7 +8294,7 @@ msgstr "" #: pretix/base/services/invoices.py:575 msgid "012345" -msgstr "" +msgstr "012345" #: pretix/base/services/invoices.py:592 #, python-brace-format @@ -8364,7 +8423,7 @@ msgstr "" #: pretix/base/services/memberships.py:231 #: pretix/base/services/memberships.py:233 msgid "start" -msgstr "" +msgstr "Start" #: pretix/base/services/memberships.py:232 #: pretix/base/services/memberships.py:234 @@ -8725,7 +8784,7 @@ msgstr "" #: pretix/base/services/stats.py:216 msgid "Uncategorized" -msgstr "" +msgstr "Net kategoriséiert" #: pretix/base/services/tax.py:44 pretix/base/services/tax.py:213 msgid "" @@ -8998,7 +9057,7 @@ msgstr "" #: pretix/base/settings.py:524 pretix/base/settings.py:532 #: pretix/control/forms/item.py:626 msgid "Never" -msgstr "" +msgstr "Ni" #: pretix/base/settings.py:525 pretix/base/settings.py:533 msgid "" @@ -9162,7 +9221,7 @@ msgstr "" #: pretix/base/settings.py:744 pretix/base/settings.py:2988 #: pretix/control/templates/pretixcontrol/pdf/index.html:436 msgid "Font" -msgstr "" +msgstr "Schrëftaart" #: pretix/base/settings.py:770 msgid "Length of ticket codes" @@ -9492,7 +9551,7 @@ msgstr "" #: pretix/base/settings.py:1280 msgid "Footer" -msgstr "" +msgstr "Footer" #: pretix/base/settings.py:1281 msgid "" @@ -9542,7 +9601,7 @@ msgstr "" #: pretix/base/settings.py:1370 msgid "Region" -msgstr "" +msgstr "Regioun" #: pretix/base/settings.py:1371 msgid "" @@ -9807,7 +9866,7 @@ msgstr "" #: pretix/base/settings.py:1705 pretix/base/settings.py:1713 #: pretix/presale/templates/pretixpresale/fragment_calendar_nav.html:8 msgid "List" -msgstr "" +msgstr "Lëscht" #: pretix/base/settings.py:1706 pretix/base/settings.py:1714 msgid "Week calendar" @@ -10895,7 +10954,7 @@ msgstr "" #: pretix/base/settings.py:3085 msgid "Favicon" -msgstr "" +msgstr "Favicon" #: pretix/base/settings.py:3088 msgid "" @@ -11133,17 +11192,17 @@ msgstr "" #: pretix/base/settings.py:3554 msgctxt "person_name_salutation" msgid "Ms" -msgstr "" +msgstr "Mme" #: pretix/base/settings.py:3555 msgctxt "person_name_salutation" msgid "Mr" -msgstr "" +msgstr "M" #: pretix/base/settings.py:3556 msgctxt "person_name_salutation" msgid "Mx" -msgstr "" +msgstr "Mx" #: pretix/base/settings.py:3593 pretix/base/settings.py:3609 #: pretix/base/settings.py:3625 pretix/base/settings.py:3640 @@ -11153,7 +11212,7 @@ msgstr "" #: pretix/base/settings.py:3812 msgctxt "person_name_sample" msgid "John" -msgstr "" +msgstr "Max" #: pretix/base/settings.py:3594 pretix/base/settings.py:3610 #: pretix/base/settings.py:3626 pretix/base/settings.py:3642 @@ -11162,21 +11221,21 @@ msgstr "" #: pretix/base/settings.py:3782 pretix/base/settings.py:3813 msgctxt "person_name_sample" msgid "Doe" -msgstr "" +msgstr "Mustermann" #: pretix/base/settings.py:3600 pretix/base/settings.py:3616 #: pretix/base/settings.py:3648 pretix/base/settings.py:3767 #: pretix/base/settings.py:3789 msgctxt "person_name" msgid "Title" -msgstr "" +msgstr "Titel" #: pretix/base/settings.py:3608 pretix/base/settings.py:3624 #: pretix/base/settings.py:3657 pretix/base/settings.py:3780 #: pretix/base/settings.py:3811 msgctxt "person_name_sample" msgid "Dr" -msgstr "" +msgstr "Dr" #: pretix/base/settings.py:3632 pretix/base/settings.py:3649 msgid "First name" @@ -11204,13 +11263,13 @@ msgstr "" #: pretix/base/settings.py:3788 msgctxt "person_name" msgid "Salutation" -msgstr "" +msgstr "Uried" #: pretix/base/settings.py:3758 pretix/base/settings.py:3779 #: pretix/base/settings.py:3810 msgctxt "person_name_sample" msgid "Mr" -msgstr "" +msgstr "M" #: pretix/base/settings.py:3792 msgctxt "person_name" @@ -11220,17 +11279,17 @@ msgstr "" #: pretix/base/settings.py:3814 msgctxt "person_name_sample" msgid "MA" -msgstr "" +msgstr "MA" #: pretix/base/settings.py:3840 pretix/base/settings.py:3842 msgctxt "address" msgid "Province" -msgstr "" +msgstr "Provënz" #: pretix/base/settings.py:3841 msgctxt "address" msgid "Prefecture" -msgstr "" +msgstr "Prefektur" #: pretix/base/settings.py:3930 pretix/control/forms/event.py:228 msgid "" @@ -11286,7 +11345,7 @@ msgstr "" #: pretix/base/shredder.py:290 msgid "Emails" -msgstr "" +msgstr "E-Mailen" #: pretix/base/shredder.py:292 msgid "" @@ -11403,7 +11462,7 @@ msgstr "" #: pretix/base/templates/400_hostname.html:32 msgid "ignored" -msgstr "" +msgstr "ignoréiert" #: pretix/base/templates/400_hostname.html:35 msgid "Derived host from headers" @@ -11492,7 +11551,7 @@ msgstr "" #: pretix/base/templates/pretixbase/email/export_failed.txt:4 msgid "Reason:" -msgstr "" +msgstr "Grond:" #: pretix/base/templates/pretixbase/email/export_failed.txt:7 msgid "If your export fails five times in a row, it will no longer be sent." @@ -11531,7 +11590,7 @@ msgstr "" #: pretix/base/templates/pretixbase/email/order_details.html:12 msgid "Event:" -msgstr "" +msgstr "Evenement:" #: pretix/base/templates/pretixbase/email/order_details.html:23 msgid "Order code:" @@ -11543,7 +11602,7 @@ msgstr "" #: pretix/base/templates/pretixbase/email/order_details.html:34 msgid "Contact:" -msgstr "" +msgstr "Kontakt:" #: pretix/base/templates/pretixbase/email/order_details.html:54 #, python-format @@ -11566,13 +11625,13 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html:95 #: pretix/presale/templates/pretixpresale/organizers/customer_orders.html:66 msgid "Details" -msgstr "" +msgstr "Detailer" #: pretix/base/templates/pretixbase/email/order_details.html:136 #: pretix/presale/templates/pretixpresale/event/base.html:222 #: pretix/presale/templates/pretixpresale/organizers/base.html:100 msgid "Contact" -msgstr "" +msgstr "Kontakt" #: pretix/base/templates/pretixbase/email/shred_completed.txt:2 #, python-format @@ -11623,7 +11682,7 @@ msgstr "" #: pretix/base/templates/pretixbase/redirect.html:5 #: pretix/base/templates/pretixbase/redirect.html:9 msgid "Redirect" -msgstr "" +msgstr "Weiderleedung" #: pretix/base/templates/pretixbase/redirect.html:11 #, python-format @@ -11662,7 +11721,7 @@ msgstr "" #: pretix/base/timeframes.py:49 msgctxt "reporting_timeframe" msgid "Today" -msgstr "" +msgstr "Haut" #: pretix/base/timeframes.py:53 pretix/base/timeframes.py:62 #: pretix/base/timeframes.py:71 pretix/base/timeframes.py:80 @@ -11675,7 +11734,7 @@ msgstr "" #: pretix/base/timeframes.py:58 msgctxt "reporting_timeframe" msgid "Yesterday" -msgstr "" +msgstr "Gëscht" #: pretix/base/timeframes.py:67 msgctxt "reporting_timeframe" @@ -11690,7 +11749,7 @@ msgstr "" #: pretix/base/timeframes.py:85 msgctxt "reporting_timeframe" msgid "Tomorrow" -msgstr "" +msgstr "Muer" #: pretix/base/timeframes.py:94 msgctxt "reporting_timeframe" @@ -11814,7 +11873,7 @@ msgstr "" #: pretix/base/timeframes.py:262 pretix/base/timeframes.py:271 msgctxt "reporting_timeframe" msgid "Other" -msgstr "" +msgstr "Aner" #: pretix/base/timeframes.py:267 msgctxt "reporting_timeframe" @@ -11824,12 +11883,12 @@ msgstr "" #: pretix/base/timeframes.py:284 msgctxt "timeframe" msgid "Start" -msgstr "" +msgstr "Start" #: pretix/base/timeframes.py:285 msgctxt "timeframe" msgid "End" -msgstr "" +msgstr "Enn" #: pretix/base/timeframes.py:318 msgid "The end date must be after the start date." @@ -12048,7 +12107,7 @@ msgstr "" #: pretix/control/forms/checkin.py:176 msgid "Barcode" -msgstr "" +msgstr "Barcode" #: pretix/control/forms/checkin.py:179 msgid "Check-in time" @@ -12165,7 +12224,7 @@ msgstr "" #: pretix/control/forms/event.py:384 pretix/control/forms/event.py:397 msgid "Domain" -msgstr "" +msgstr "Domain" #: pretix/control/forms/event.py:388 msgid "You can configure this in your organizer settings." @@ -12273,7 +12332,7 @@ msgstr "" #: pretix/control/forms/event.py:938 msgid "Recommended" -msgstr "" +msgstr "Recommandéiert" #: pretix/control/forms/event.py:950 msgid "The online shop must be selected to receive these emails." @@ -12305,7 +12364,7 @@ msgstr "" #: pretix/control/forms/event.py:996 pretix/control/forms/organizer.py:593 msgid "Signature" -msgstr "" +msgstr "Signatur" #: pretix/control/forms/event.py:999 #, python-brace-format @@ -12365,7 +12424,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/mail.html:88 #: pretix/control/templates/pretixcontrol/organizers/giftcard.html:119 msgid "Text" -msgstr "" +msgstr "Text" #: pretix/control/forms/event.py:1105 msgid "Subject (sent by admin)" @@ -12495,11 +12554,11 @@ msgstr "" #: pretix/control/forms/event.py:1507 msgid "Individual" -msgstr "" +msgstr "Privatpersoun" #: pretix/control/forms/event.py:1508 msgid "Business" -msgstr "" +msgstr "Entreprisen" #: pretix/control/forms/event.py:1509 msgid "Business with valid VAT ID" @@ -12622,7 +12681,7 @@ msgstr "" #: pretix/control/forms/event.py:1787 msgid "Free" -msgstr "" +msgstr "Gratis" #: pretix/control/forms/event.py:1792 msgid "Quantity available" @@ -12663,7 +12722,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/orders/overview.html:87 #: pretix/plugins/reports/exporters.py:397 msgid "Pending" -msgstr "" +msgstr "Steet op" #: pretix/control/forms/filter.py:223 #: pretix/control/templates/pretixcontrol/items/question.html:29 @@ -12672,7 +12731,7 @@ msgstr "" #: pretix/control/forms/filter.py:225 msgid "Cancellations" -msgstr "" +msgstr "Annulatiounen" #: pretix/control/forms/filter.py:226 msgid "Canceled (fully)" @@ -12710,7 +12769,7 @@ msgstr "" #: pretix/control/forms/filter.py:236 msgid "Overpaid" -msgstr "" +msgstr "Ze vill bezuelt" #: pretix/control/forms/filter.py:237 msgid "Partially paid" @@ -12846,7 +12905,7 @@ msgstr "" #: pretix/control/forms/filter.py:1234 pretix/control/forms/filter.py:2038 msgid "Inactive" -msgstr "" +msgstr "Inaktiv" #: pretix/control/forms/filter.py:1235 pretix/control/forms/filter.py:1702 #: pretix/control/templates/pretixcontrol/events/index.html:153 @@ -12886,7 +12945,7 @@ msgstr "" #: pretix/control/forms/filter.py:1265 pretix/control/forms/rrule.py:112 #: pretix/control/forms/rrule.py:151 msgid "Weekday" -msgstr "" +msgstr "Wochendag" #: pretix/control/forms/filter.py:1466 pretix/control/forms/filter.py:1468 #: pretix/control/forms/filter.py:1517 pretix/control/forms/filter.py:1519 @@ -12895,7 +12954,7 @@ msgstr "" #: pretix/control/forms/filter.py:2052 pretix/control/forms/filter.py:2054 #: pretix/control/forms/filter.py:2620 pretix/control/forms/filter.py:2622 msgid "Search query" -msgstr "" +msgstr "Sich" #: pretix/control/forms/filter.py:1528 pretix/control/forms/filter.py:1600 #: pretix/control/templates/pretixcontrol/organizers/customer.html:47 @@ -12905,7 +12964,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/giftcard_acceptance_list.html:133 #: pretix/control/templates/pretixcontrol/organizers/reusable_medium.html:39 msgid "active" -msgstr "" +msgstr "aktiv" #: pretix/control/forms/filter.py:1530 #: pretix/control/templates/pretixcontrol/organizers/customer.html:45 @@ -12918,11 +12977,11 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/customer_memberships.html:12 #: pretix/presale/views/customer.py:366 msgid "Memberships" -msgstr "" +msgstr "Memberschaften" #: pretix/control/forms/filter.py:1538 msgid "Has no memberships" -msgstr "" +msgstr "Huet keng Memberschaften" #: pretix/control/forms/filter.py:1539 msgid "Has any membership" @@ -12974,7 +13033,7 @@ msgstr "" #: pretix/plugins/checkinlists/exporters.py:110 msgctxt "checkin state" msgid "Present" -msgstr "" +msgstr "Present" #: pretix/control/forms/filter.py:1916 #: pretix/plugins/checkinlists/exporters.py:111 @@ -13001,7 +13060,7 @@ msgstr "" #: pretix/control/forms/filter.py:2043 pretix/control/forms/filter.py:2046 #: pretix/control/templates/pretixcontrol/users/index.html:52 msgid "Administrator" -msgstr "" +msgstr "Administrateur" #: pretix/control/forms/filter.py:2047 msgid "No administrator" @@ -13010,11 +13069,11 @@ msgstr "" #: pretix/control/forms/filter.py:2117 #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:51 msgid "Valid" -msgstr "" +msgstr "Gülteg" #: pretix/control/forms/filter.py:2118 msgid "Unredeemed" -msgstr "" +msgstr "Net ageléist" #: pretix/control/forms/filter.py:2119 msgid "Redeemed at least once" @@ -13101,7 +13160,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/checkin/checkins.html:67 #: pretix/plugins/checkinlists/exporters.py:765 msgid "Device" -msgstr "" +msgstr "Apparat" #: pretix/control/forms/filter.py:2416 pretix/control/forms/filter.py:2451 #: pretix/control/forms/filter.py:2642 @@ -13141,7 +13200,7 @@ msgstr "" #: pretix/control/forms/filter.py:2633 #: pretix/control/templates/pretixcontrol/organizers/devices.html:82 msgid "Software" -msgstr "" +msgstr "Software" #: pretix/control/forms/filter.py:2640 msgid "Device status" @@ -13395,7 +13454,7 @@ msgstr "" #: pretix/control/forms/item.py:353 #: pretix/control/templates/pretixcontrol/items/fragment_quota_availability.html:11 msgid "Unlimited" -msgstr "" +msgstr "Illimitéiert" #: pretix/control/forms/item.py:381 msgid "The product should exist in multiple variations" @@ -13445,7 +13504,7 @@ msgstr "" #: pretix/control/forms/item.py:454 msgid "Size" -msgstr "" +msgstr "Gréisst" #: pretix/control/forms/item.py:455 msgid "Number of tickets" @@ -13548,7 +13607,7 @@ msgstr "" #: pretix/control/forms/item.py:1086 msgid "Add-ons" -msgstr "" +msgstr "Zousazproduiten" #: pretix/control/forms/item.py:1110 msgid "You added the same add-on category twice" @@ -13577,19 +13636,19 @@ msgstr "" #: pretix/control/forms/item.py:1243 pretix/control/forms/orders.py:379 #: pretix/control/forms/orders.py:568 msgid "inactive" -msgstr "" +msgstr "inaktiv" #: pretix/control/forms/mailsetup.py:42 msgid "Hostname" -msgstr "" +msgstr "Hostnumm" #: pretix/control/forms/mailsetup.py:47 msgid "Port" -msgstr "" +msgstr "Port" #: pretix/control/forms/mailsetup.py:52 msgid "Username" -msgstr "" +msgstr "Benotzernumm" #: pretix/control/forms/mailsetup.py:62 #, python-brace-format @@ -13633,7 +13692,7 @@ msgstr "" #: pretix/control/forms/mapping.py:40 msgid "Overwrite" -msgstr "" +msgstr "Iwwerschreiwen" #: pretix/control/forms/mapping.py:41 msgid "Fill if new" @@ -13856,7 +13915,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_membership.html:23 #: pretix/presale/templates/pretixpresale/event/checkout_questions.html:101 msgid "Seat" -msgstr "" +msgstr "Sëtz" #: pretix/control/forms/orders.py:348 #: pretix/control/templates/pretixcontrol/order/change.html:182 @@ -13866,7 +13925,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/customer_membership_delete.html:9 #: pretix/presale/forms/checkout.py:238 msgid "Membership" -msgstr "" +msgstr "Memberschaft" #: pretix/control/forms/orders.py:356 msgid "Including taxes, if any. Keep empty for the product's default price" @@ -13877,7 +13936,7 @@ msgstr "" #: pretix/control/forms/orders.py:563 pretix/control/forms/orders.py:581 #: pretix/control/forms/orders.py:609 msgid "(Unchanged)" -msgstr "" +msgstr "(Onverännert)" #: pretix/control/forms/orders.py:480 pretix/control/forms/orders.py:604 msgid "New price (gross)" @@ -13962,7 +14021,7 @@ msgstr "" #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_inspect.html:20 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:30 msgid "Recipient" -msgstr "" +msgstr "Empfänger" #: pretix/control/forms/orders.py:778 #, python-brace-format @@ -14119,7 +14178,7 @@ msgstr "" #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." -msgstr "" +msgstr "Dës Kuerzform gëtt scho benotzt. Wielt wgl. eng aner." #: pretix/control/forms/organizer.py:172 msgid "You cannot choose the base domain of this installation." @@ -14160,7 +14219,7 @@ msgstr "" #: pretix/control/forms/organizer.py:558 pretix/plugins/stripe/payment.py:311 msgid "experimental" -msgstr "" +msgstr "experimentell" #: pretix/control/forms/organizer.py:564 msgid "" @@ -14193,7 +14252,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/customer.html:62 #: pretix/presale/forms/customer.py:169 pretix/presale/forms/customer.py:493 msgid "Phone" -msgstr "" +msgstr "Telefon" #: pretix/control/forms/organizer.py:1048 msgctxt "sso_oidc" @@ -14203,7 +14262,7 @@ msgstr "" #: pretix/control/forms/organizer.py:1052 msgctxt "sso_oidc" msgid "Client ID" -msgstr "" +msgstr "Clientsnummer" #: pretix/control/forms/organizer.py:1056 msgctxt "sso_oidc" @@ -14213,7 +14272,7 @@ msgstr "" #: pretix/control/forms/organizer.py:1060 msgctxt "sso_oidc" msgid "Scope" -msgstr "" +msgstr "Envergure" #: pretix/control/forms/organizer.py:1061 msgctxt "sso_oidc" @@ -14304,7 +14363,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/items/question_edit.html:139 msgctxt "form" msgid "Optional" -msgstr "" +msgstr "Optionell" #: pretix/control/forms/renderers.py:148 #: pretix/control/templates/pretixcontrol/organizers/device_bulk_edit.html:26 @@ -14313,27 +14372,27 @@ msgstr "" #: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html:286 msgctxt "form_bulk" msgid "change" -msgstr "" +msgstr "änneren" #: pretix/control/forms/rrule.py:35 msgid "year(s)" -msgstr "" +msgstr "Joer(en)" #: pretix/control/forms/rrule.py:36 msgid "month(s)" -msgstr "" +msgstr "Mount(Méint)" #: pretix/control/forms/rrule.py:37 msgid "week(s)" -msgstr "" +msgstr "Woch(en)" #: pretix/control/forms/rrule.py:38 msgid "day(s)" -msgstr "" +msgstr "Dag(Deeg)" #: pretix/control/forms/rrule.py:43 msgid "Interval" -msgstr "" +msgstr "Interval" #: pretix/control/forms/rrule.py:69 msgid "Number of repetitions" @@ -14346,27 +14405,27 @@ msgstr "" #: pretix/control/forms/rrule.py:87 pretix/control/forms/rrule.py:134 msgctxt "rrule" msgid "first" -msgstr "" +msgstr "éischt" #: pretix/control/forms/rrule.py:88 pretix/control/forms/rrule.py:135 msgctxt "rrule" msgid "second" -msgstr "" +msgstr "zweet" #: pretix/control/forms/rrule.py:89 pretix/control/forms/rrule.py:136 msgctxt "rrule" msgid "third" -msgstr "" +msgstr "drëtt" #: pretix/control/forms/rrule.py:90 pretix/control/forms/rrule.py:137 msgctxt "rrule" msgid "last" -msgstr "" +msgstr "lescht" #: pretix/control/forms/rrule.py:111 pretix/control/forms/rrule.py:150 #: pretix/presale/templates/pretixpresale/fragment_calendar_nav.html:20 msgid "Day" -msgstr "" +msgstr "Dag" #: pretix/control/forms/rrule.py:113 pretix/control/forms/rrule.py:152 msgid "Weekend day" @@ -14386,7 +14445,7 @@ msgstr "" #: pretix/control/forms/subevents.py:350 msgid "Available_until" -msgstr "" +msgstr "Disponibel bis" #: pretix/control/forms/subevents.py:470 msgid "Exclude these dates instead of adding them." @@ -14412,7 +14471,7 @@ msgstr "" #: pretix/control/forms/vouchers.py:271 msgid "Codes" -msgstr "" +msgstr "Coden" #: pretix/control/forms/vouchers.py:273 msgid "" @@ -14451,11 +14510,11 @@ msgstr "" #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:42 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/send_form.html:25 msgid "Recipients" -msgstr "" +msgstr "Empfänger" #: pretix/control/forms/vouchers.py:301 msgid "or" -msgstr "" +msgstr "oder" #: pretix/control/forms/vouchers.py:305 msgid "" @@ -14730,7 +14789,7 @@ msgstr "" #: pretix/control/logdisplay.py:353 pretix/control/logdisplay.py:355 #: pretix/control/logdisplay.py:971 pretix/control/logdisplay.py:973 msgid "(unknown)" -msgstr "" +msgstr "(onbekannt)" #: pretix/control/logdisplay.py:375 #, python-brace-format @@ -15899,7 +15958,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/dashboard.html:3 #: pretix/control/templates/pretixcontrol/dashboard.html:5 msgid "Dashboard" -msgstr "" +msgstr "Dashboard" #: pretix/control/navigation.py:49 pretix/control/navigation.py:382 #: pretix/control/navigation.py:492 @@ -15914,7 +15973,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/mail.html:19 #: pretix/control/templates/pretixcontrol/organizers/property_edit.html:15 msgid "General" -msgstr "" +msgstr "Generell" #: pretix/control/navigation.py:57 #: pretix/control/templates/pretixcontrol/event/quick_setup.html:151 @@ -15927,7 +15986,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:11 #: pretix/presale/templates/pretixpresale/event/order.html:86 msgid "Payment" -msgstr "" +msgstr "Bezuelung" #: pretix/control/navigation.py:73 pretix/control/views/event.py:1610 #: pretix/control/views/event.py:1612 pretix/control/views/event.py:1644 @@ -15939,7 +15998,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/index.html:89 #: pretix/presale/templates/pretixpresale/organizers/index.html:91 msgid "Tickets" -msgstr "" +msgstr "Ticketen" #: pretix/control/navigation.py:89 #: pretix/control/templates/pretixcontrol/event/tax_index.html:3 @@ -15949,17 +16008,17 @@ msgstr "" #: pretix/control/navigation.py:97 msgid "Invoicing" -msgstr "" +msgstr "Facturatioun" #: pretix/control/navigation.py:105 msgctxt "action" msgid "Cancellation" -msgstr "" +msgstr "Annulatioun" #: pretix/control/navigation.py:113 #: pretix/control/templates/pretixcontrol/event/widget.html:8 msgid "Widget" -msgstr "" +msgstr "Widget" #: pretix/control/navigation.py:126 pretix/control/navigation.py:435 #: pretix/control/navigation.py:485 @@ -15971,19 +16030,19 @@ msgstr "" #: pretix/plugins/returnurl/apps.py:40 #: pretix/plugins/ticketoutputpdf/apps.py:55 msgid "Settings" -msgstr "" +msgstr "Astellungen" #: pretix/control/navigation.py:164 msgid "Categories" -msgstr "" +msgstr "Kategorien" #: pretix/control/navigation.py:180 msgid "Discounts" -msgstr "" +msgstr "Remisen" #: pretix/control/navigation.py:213 msgid "Overview" -msgstr "" +msgstr "Iwwersiicht" #: pretix/control/navigation.py:221 #: pretix/control/templates/pretixcontrol/order/index.html:877 @@ -15993,11 +16052,11 @@ msgstr "" #: pretix/plugins/reports/accountingreport.py:685 #: pretix/presale/templates/pretixpresale/event/order.html:137 msgid "Refunds" -msgstr "" +msgstr "Remboursementer" #: pretix/control/navigation.py:247 msgid "Import" -msgstr "" +msgstr "Import" #: pretix/control/navigation.py:276 msgid "All vouchers" @@ -16005,12 +16064,12 @@ msgstr "" #: pretix/control/navigation.py:284 msgid "Tags" -msgstr "" +msgstr "Tags" #: pretix/control/navigation.py:296 msgctxt "navigation" msgid "Check-in" -msgstr "" +msgstr "Check-in" #: pretix/control/navigation.py:313 #: pretix/control/templates/pretixcontrol/checkin/checkins.html:4 @@ -16023,7 +16082,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/orders/search.html:20 #: pretix/control/templates/pretixcontrol/organizers/plugins.html:20 msgid "Search" -msgstr "" +msgstr "Sich" #: pretix/control/navigation.py:368 #: pretix/control/templates/pretixcontrol/order/index.html:783 @@ -16031,7 +16090,7 @@ msgstr "" #: pretix/plugins/reports/accountingreport.py:678 #: pretix/plugins/reports/accountingreport.py:872 msgid "Payments" -msgstr "" +msgstr "Bezuelungen" #: pretix/control/navigation.py:376 msgid "User settings" @@ -16040,11 +16099,11 @@ msgstr "" #: pretix/control/navigation.py:387 #: pretix/control/templates/pretixcontrol/user/settings.html:16 msgid "Notifications" -msgstr "" +msgstr "Notifikatiounen" #: pretix/control/navigation.py:392 msgid "2FA" -msgstr "" +msgstr "2FA" #: pretix/control/navigation.py:397 msgid "Authorized apps" @@ -16098,17 +16157,17 @@ msgstr "" #: pretix/control/navigation.py:527 #: pretix/control/templates/pretixcontrol/organizers/webhooks.html:6 msgid "Webhooks" -msgstr "" +msgstr "Webhooken" #: pretix/control/navigation.py:560 msgid "Acceptance" -msgstr "" +msgstr "Akzeptanz" #: pretix/control/navigation.py:581 #: pretix/control/templates/pretixcontrol/organizers/customers.html:6 #: pretix/control/templates/pretixcontrol/organizers/customers.html:9 msgid "Customers" -msgstr "" +msgstr "Clienten" #: pretix/control/navigation.py:600 #: pretix/control/templates/pretixcontrol/organizers/ssoclients.html:4 @@ -16124,7 +16183,7 @@ msgstr "" #: pretix/control/navigation.py:638 pretix/control/navigation.py:645 msgid "Devices" -msgstr "" +msgstr "Apparater" #: pretix/control/permissions.py:72 pretix/control/permissions.py:109 #: pretix/control/permissions.py:140 pretix/control/permissions.py:157 @@ -16161,13 +16220,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/auth/invite.html:23 #: pretix/control/templates/pretixcontrol/auth/register.html:18 msgid "Login" -msgstr "" +msgstr "Aloggen" #: pretix/control/templates/pretixcontrol/auth/invite.html:27 #: pretix/control/templates/pretixcontrol/auth/login.html:43 #: pretix/control/templates/pretixcontrol/auth/register.html:22 msgid "Register" -msgstr "" +msgstr "Registréieren" #: pretix/control/templates/pretixcontrol/auth/login.html:27 #: pretix/presale/templates/pretixpresale/fragment_login_status.html:19 @@ -16195,7 +16254,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/auth/login_2fa.html:14 msgid "Token" -msgstr "" +msgstr "Token" #: pretix/control/templates/pretixcontrol/auth/login_2fa.html:18 #: pretix/control/templates/pretixcontrol/user/reauth.html:22 @@ -16233,7 +16292,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/order_pay_change.html:75 #: pretix/presale/templates/pretixpresale/event/position_change.html:29 msgid "Continue" -msgstr "" +msgstr "Weider" #: pretix/control/templates/pretixcontrol/auth/oauth_authorization.html:8 msgid "Authorize an application" @@ -16268,7 +16327,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/auth/oauth_authorization.html:54 msgid "Error:" -msgstr "" +msgstr "Feeler:" #: pretix/control/templates/pretixcontrol/auth/recover.html:7 msgid "Set new password" @@ -16345,7 +16404,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/customer_password.html:25 #: pretix/presale/templates/pretixpresale/organizers/customer_setpassword.html:25 msgid "Save" -msgstr "" +msgstr "Späicheren" #: pretix/control/templates/pretixcontrol/auth/register.html:7 msgid "Create a new account" @@ -16480,7 +16539,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/postmessage.html:27 #: pretix/presale/templates/pretixpresale/waiting.html:42 msgid "If this takes longer than a few minutes, please contact us." -msgstr "" +msgstr "Wann dëst méi laang wéi e puer Minutten dauert, kontaktéiert eis wgl." #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:4 #: pretix/control/templates/pretixcontrol/organizers/devices.html:71 @@ -16493,7 +16552,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:11 msgid "ID" -msgstr "" +msgstr "ID" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:15 msgid "ZVT Terminal" @@ -16536,7 +16595,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:37 msgid "Unknown" -msgstr "" +msgstr "Onbekannt" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:40 msgctxt "terminal_zvt" @@ -16597,7 +16656,7 @@ msgstr "" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" -msgstr "" +msgstr "Referenz" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:100 msgid "Terminal ID" @@ -16617,7 +16676,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:116 msgid "Cash" -msgstr "" +msgstr "Boergeld" #: pretix/control/templates/pretixcontrol/checkin/bulk_revert_confirm.html:4 #: pretix/control/templates/pretixcontrol/checkin/bulk_revert_confirm.html:6 @@ -16707,7 +16766,7 @@ msgstr[1] "" #: pretix/presale/templates/pretixpresale/event/position_change.html:24 #: pretix/presale/templates/pretixpresale/event/position_modify.html:44 msgid "Cancel" -msgstr "" +msgstr "Annuléieren" #: pretix/control/templates/pretixcontrol/checkin/bulk_revert_confirm.html:27 #: pretix/control/templates/pretixcontrol/checkin/list_delete.html:24 @@ -16753,7 +16812,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/customer_profile_delete.html:34 #: pretix/presale/templates/pretixpresale/organizers/customer_profiles.html:29 msgid "Delete" -msgstr "" +msgstr "Läschen" #: pretix/control/templates/pretixcontrol/checkin/checkins.html:9 #: pretix/control/templates/pretixcontrol/checkin/checkins.html:41 @@ -16802,7 +16861,7 @@ msgstr "" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html:91 #: pretix/presale/templates/pretixpresale/fragment_event_list_filter.html:22 msgid "Filter" -msgstr "" +msgstr "Filteren" #: pretix/control/templates/pretixcontrol/checkin/checkins.html:50 msgid "Your search did not match any check-ins." @@ -16821,7 +16880,7 @@ msgstr "" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/transaction_list.html:14 #: pretix/plugins/checkinlists/exporters.py:770 msgid "Result" -msgstr "" +msgstr "Resultat" #: pretix/control/templates/pretixcontrol/checkin/checkins.html:78 #: pretix/control/templates/pretixcontrol/order/index.html:432 @@ -16853,12 +16912,12 @@ msgstr "" #: pretix/control/templates/pretixcontrol/checkin/checkins.html:107 msgctxt "checkin_result" msgid "Successful" -msgstr "" +msgstr "Erfollegräich" #: pretix/control/templates/pretixcontrol/checkin/checkins.html:112 msgctxt "checkin_result" msgid "Denied" -msgstr "" +msgstr "Refuséiert" #: pretix/control/templates/pretixcontrol/checkin/checkins.html:152 #: pretix/control/templates/pretixcontrol/event/index.html:24 @@ -16893,11 +16952,11 @@ msgstr "" #: pretix/control/templates/pretixcontrol/orders/overview.html:20 #: pretix/plugins/ticketoutputpdf/ticketoutput.py:64 msgid "PDF" -msgstr "" +msgstr "PDF" #: pretix/control/templates/pretixcontrol/checkin/index.html:32 msgid "CSV" -msgstr "" +msgstr "CSV" #: pretix/control/templates/pretixcontrol/checkin/index.html:73 msgid "No attendee record was found." @@ -16916,7 +16975,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/checkin/index.html:114 #: pretix/control/templates/pretixcontrol/user/staff_session_edit.html:29 msgid "Timestamp" -msgstr "" +msgstr "Zäitpunkt" #: pretix/control/templates/pretixcontrol/checkin/index.html:125 #: pretix/control/templates/pretixcontrol/orders/index.html:165 @@ -16928,7 +16987,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/checkin/index.html:142 msgid "unpaid" -msgstr "" +msgstr "net bezuelt" #: pretix/control/templates/pretixcontrol/checkin/index.html:181 msgid "Checked in but left" @@ -16982,7 +17041,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/tax_edit.html:33 #: pretix/control/templates/pretixcontrol/items/question_edit.html:128 msgid "Advanced" -msgstr "" +msgstr "Fortgeschratt" #: pretix/control/templates/pretixcontrol/checkin/list_edit.html:50 msgid "" @@ -17029,11 +17088,11 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/bulk.html:117 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/send_form.html:85 msgid "Edit" -msgstr "" +msgstr "Editéieren" #: pretix/control/templates/pretixcontrol/checkin/list_edit.html:89 msgid "Visualize" -msgstr "" +msgstr "Visualiséieren" #: pretix/control/templates/pretixcontrol/checkin/list_edit.html:107 msgid "" @@ -17106,7 +17165,7 @@ msgstr "" #: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72 #: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69 msgid "Clone" -msgstr "" +msgstr "Klonen" #: pretix/control/templates/pretixcontrol/checkin/reset.html:10 msgid "" @@ -17157,7 +17216,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/checkin/simulator.html:40 msgid "Simulate" -msgstr "" +msgstr "Simuléieren" #: pretix/control/templates/pretixcontrol/checkin/simulator.html:66 msgid "Valid check-in" @@ -17165,7 +17224,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/checkin/simulator.html:68 msgid "Additional information required" -msgstr "" +msgstr "Zousätzlech Informatiounen noutwenneg" #: pretix/control/templates/pretixcontrol/checkin/simulator.html:70 msgid "" @@ -17235,7 +17294,7 @@ msgstr "" #: pretix/plugins/paypal2/templates/pretixplugins/paypal2/control.html:16 #: pretix/plugins/paypal2/templates/pretixplugins/paypal2/control.html:19 msgid "Error" -msgstr "" +msgstr "Feeler" #: pretix/control/templates/pretixcontrol/datasync/control_order_info.html:34 #, python-format @@ -17421,12 +17480,12 @@ msgstr "" #: pretix/control/templates/pretixcontrol/email_setup.html:35 msgctxt "mail_header" msgid "From" -msgstr "" +msgstr "Vun" #: pretix/control/templates/pretixcontrol/email_setup.html:40 msgctxt "mail_header" msgid "Reply-To" -msgstr "" +msgstr "Äntwert un" #: pretix/control/templates/pretixcontrol/email_setup.html:56 #: pretix/control/templates/pretixcontrol/email_setup_simple.html:18 @@ -17480,7 +17539,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/email_setup_simple.html:54 msgid "Verification" -msgstr "" +msgstr "Verifikatioun" #: pretix/control/templates/pretixcontrol/email_setup_simple.html:56 #, python-format @@ -17695,7 +17754,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/subevents/bulk.html:271 #: pretix/control/templates/pretixcontrol/subevents/bulk.html:275 msgid "Optional" -msgstr "" +msgstr "Optionell" #: pretix/control/templates/pretixcontrol/event/fragment_geodata.html:22 #: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html:58 @@ -17890,7 +17949,7 @@ msgstr "" #: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:109 #: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:111 msgid "Available" -msgstr "" +msgstr "Disponibel" #: pretix/control/templates/pretixcontrol/event/invoicing.html:113 msgid "" @@ -17900,11 +17959,11 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/invoicing.html:114 msgid "(exclusive)" -msgstr "" +msgstr "(exklusiv)" #: pretix/control/templates/pretixcontrol/event/invoicing.html:121 msgid "Unavailable" -msgstr "" +msgstr "Net disponibel" #: pretix/control/templates/pretixcontrol/event/invoicing.html:143 msgid "Not configured" @@ -18047,13 +18106,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/logs.html:72 #: pretix/control/templates/pretixcontrol/search/payments.html:147 msgid "Inspect" -msgstr "" +msgstr "Detailer" #: pretix/control/templates/pretixcontrol/event/logs.html:94 #: pretix/control/templates/pretixcontrol/organizers/device_logs.html:50 #: pretix/control/templates/pretixcontrol/organizers/logs.html:80 msgid "No results" -msgstr "" +msgstr "Keng Resultater" #: pretix/control/templates/pretixcontrol/event/mail.html:7 #: pretix/control/templates/pretixcontrol/organizers/mail.html:11 @@ -18090,7 +18149,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/bulk.html:97 #: pretix/control/templates/pretixcontrol/vouchers/bulk.html:120 msgid "Preview" -msgstr "" +msgstr "Virschau" #: pretix/control/templates/pretixcontrol/event/mail.html:87 #: pretix/control/templates/pretixcontrol/organizers/mail.html:58 @@ -18141,7 +18200,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/mail.html:129 msgid "Attachments" -msgstr "" +msgstr "Annexen" #: pretix/control/templates/pretixcontrol/event/payment.html:6 #: pretix/control/templates/pretixcontrol/event/payment_provider.html:5 @@ -18152,13 +18211,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/user/settings.html:48 #: pretix/plugins/sendmail/models.py:286 msgid "Enabled" -msgstr "" +msgstr "Aktivéiert" #: pretix/control/templates/pretixcontrol/event/payment.html:28 #: pretix/control/templates/pretixcontrol/subevents/index.html:166 #: pretix/control/templates/pretixcontrol/user/settings.html:53 msgid "Disabled" -msgstr "" +msgstr "Desaktivéiert" #: pretix/control/templates/pretixcontrol/event/payment.html:57 msgid "Enable additional payment plugins" @@ -18166,12 +18225,12 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/payment.html:66 msgid "Deadlines" -msgstr "" +msgstr "Fristen" #: pretix/control/templates/pretixcontrol/event/payment.html:74 msgctxt "unit" msgid "days" -msgstr "" +msgstr "Deeg" #: pretix/control/templates/pretixcontrol/event/payment_provider.html:13 #: pretix/control/templates/pretixcontrol/events/create_base.html:24 @@ -18180,7 +18239,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/position_change_confirm.html:25 #: pretix/presale/templates/pretixpresale/event/position_giftcard.html:16 msgid "Back" -msgstr "" +msgstr "Zréck" #: pretix/control/templates/pretixcontrol/event/payment_provider.html:15 msgid "Payment provider:" @@ -18188,7 +18247,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/payment_provider.html:21 msgid "Warning:" -msgstr "" +msgstr "Warnung:" #: pretix/control/templates/pretixcontrol/event/payment_provider.html:22 msgid "" @@ -18272,7 +18331,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/plugins.html:83 #: pretix/control/templates/pretixcontrol/organizers/plugins.html:108 msgid "Incompatible" -msgstr "" +msgstr "Net compatibel" #: pretix/control/templates/pretixcontrol/event/plugins.html:87 #: pretix/control/templates/pretixcontrol/organizers/plugins.html:112 @@ -18315,7 +18374,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/user/notifications.html:14 #: pretix/presale/templates/pretixpresale/event/timemachine.html:34 msgid "Disable" -msgstr "" +msgstr "Desaktivéieren" #: pretix/control/templates/pretixcontrol/event/plugins.html:141 #: pretix/control/views/organizer.py:807 @@ -18336,13 +18395,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/user/notifications.html:23 #: pretix/control/templates/pretixcontrol/user/settings.html:55 msgid "Enable" -msgstr "" +msgstr "Aktivéieren" #: pretix/control/templates/pretixcontrol/event/quick_setup.html:14 #: pretix/control/templates/pretixcontrol/event/settings_base.html:10 #: pretix/presale/templates/pretixpresale/event/fragment_product_list.html:18 msgid "Congratulations!" -msgstr "" +msgstr "Felicitatiounen!" #: pretix/control/templates/pretixcontrol/event/quick_setup.html:16 #: pretix/control/templates/pretixcontrol/event/settings_base.html:12 @@ -18430,7 +18489,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/settings.html:21 msgid "Basics" -msgstr "" +msgstr "Grondstruktur" #: pretix/control/templates/pretixcontrol/event/settings.html:40 #: pretix/control/templates/pretixcontrol/item/create.html:144 @@ -18446,7 +18505,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/settings.html:59 #: pretix/control/templates/pretixcontrol/organizers/edit.html:126 msgid "Localization" -msgstr "" +msgstr "Lokaliséierung" #: pretix/control/templates/pretixcontrol/event/settings.html:67 msgid "Customer and attendee data" @@ -18486,7 +18545,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/settings.html:131 msgid "Texts" -msgstr "" +msgstr "Texter" #: pretix/control/templates/pretixcontrol/event/settings.html:138 msgid "Confirmation text" @@ -18515,11 +18574,11 @@ msgstr "" #: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html:96 #: pretix/control/templates/pretixcontrol/subevents/detail.html:54 msgid "Timeline" -msgstr "" +msgstr "Oflaf" #: pretix/control/templates/pretixcontrol/event/settings.html:239 msgid "Display" -msgstr "" +msgstr "Affichage" #: pretix/control/templates/pretixcontrol/event/settings.html:244 msgid "Product list" @@ -18567,7 +18626,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/settings.html:357 msgid "Cart" -msgstr "" +msgstr "Weenchen" #: pretix/control/templates/pretixcontrol/event/settings.html:365 msgid "" @@ -18612,7 +18671,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/settings.html:468 #: pretix/control/templates/pretixcontrol/organizers/properties.html:22 msgid "Property" -msgstr "" +msgstr "Eegeschaft" #: pretix/control/templates/pretixcontrol/event/settings.html:505 #: pretix/control/templates/pretixcontrol/events/index.html:165 @@ -18681,15 +18740,15 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/tax_edit.html:58 msgid "Condition" -msgstr "" +msgstr "Konditioun" #: pretix/control/templates/pretixcontrol/event/tax_edit.html:61 msgid "Calculation" -msgstr "" +msgstr "Berechnung" #: pretix/control/templates/pretixcontrol/event/tax_edit.html:64 msgid "Reason" -msgstr "" +msgstr "Grond" #: pretix/control/templates/pretixcontrol/event/tax_edit.html:137 #: pretix/control/templates/pretixcontrol/subevents/bulk.html:251 @@ -18712,7 +18771,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/tax_index.html:28 msgid "Rate" -msgstr "" +msgstr "Steiersaz" #: pretix/control/templates/pretixcontrol/event/tax_index.html:51 #: pretix/plugins/badges/templates/pretixplugins/badges/index.html:63 @@ -18979,7 +19038,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/fragment_quota_box.html:3 #: pretix/control/templates/pretixcontrol/fragment_quota_box_paid.html:3 msgid "Quota:" -msgstr "" +msgstr "Contingent:" #: pretix/control/templates/pretixcontrol/fragment_quota_box.html:3 #, python-format @@ -18996,7 +19055,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:14 #: pretix/presale/templates/pretixpresale/event/fragment_giftcard_history.html:7 msgid "Information" -msgstr "" +msgstr "Informatioun" #: pretix/control/templates/pretixcontrol/giftcards/checkout.html:10 #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:15 @@ -19012,7 +19071,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/pdf/index.html:156 #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:32 msgid "Apply" -msgstr "" +msgstr "Uwennen" #: pretix/control/templates/pretixcontrol/giftcards/checkout_confirm.html:4 #, python-format @@ -19100,51 +19159,51 @@ msgstr "" #: pretix/control/templates/pretixcontrol/global_sysreport.html:16 msgid "January" -msgstr "" +msgstr "Januar" #: pretix/control/templates/pretixcontrol/global_sysreport.html:17 msgid "February" -msgstr "" +msgstr "Februar" #: pretix/control/templates/pretixcontrol/global_sysreport.html:18 msgid "March" -msgstr "" +msgstr "Mäerz" #: pretix/control/templates/pretixcontrol/global_sysreport.html:19 msgid "April" -msgstr "" +msgstr "Abrëll" #: pretix/control/templates/pretixcontrol/global_sysreport.html:20 msgid "May" -msgstr "" +msgstr "Mee" #: pretix/control/templates/pretixcontrol/global_sysreport.html:21 msgid "June" -msgstr "" +msgstr "Juni" #: pretix/control/templates/pretixcontrol/global_sysreport.html:22 msgid "July" -msgstr "" +msgstr "Juli" #: pretix/control/templates/pretixcontrol/global_sysreport.html:23 msgid "August" -msgstr "" +msgstr "August" #: pretix/control/templates/pretixcontrol/global_sysreport.html:24 msgid "September" -msgstr "" +msgstr "September" #: pretix/control/templates/pretixcontrol/global_sysreport.html:25 msgid "October" -msgstr "" +msgstr "Oktober" #: pretix/control/templates/pretixcontrol/global_sysreport.html:26 msgid "November" -msgstr "" +msgstr "November" #: pretix/control/templates/pretixcontrol/global_sysreport.html:27 msgid "December" -msgstr "" +msgstr "Dezember" #: pretix/control/templates/pretixcontrol/global_sysreport.html:32 msgid "Generate report" @@ -19194,7 +19253,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/global_update.html:59 msgid "Component" -msgstr "" +msgstr "Komponent" #: pretix/control/templates/pretixcontrol/global_update.html:60 msgid "Installed version" @@ -19315,7 +19374,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/item/create.html:68 #: pretix/control/templates/pretixcontrol/item/index.html:76 msgid "Personalization" -msgstr "" +msgstr "Personaliséierung" #: pretix/control/templates/pretixcontrol/item/create.html:76 #: pretix/control/templates/pretixcontrol/item/index.html:89 @@ -19422,7 +19481,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/item/delete.html:41 #: pretix/control/templates/pretixcontrol/items/discount_delete.html:36 msgid "Deactivate" -msgstr "" +msgstr "Deaktivéieren" #: pretix/control/templates/pretixcontrol/item/include_addons.html:5 msgid "" @@ -19439,7 +19498,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/item/include_addons.html:28 #: pretix/control/templates/pretixcontrol/item/include_addons.html:62 msgid "Add-On" -msgstr "" +msgstr "Zousazproduit" #: pretix/control/templates/pretixcontrol/item/include_addons.html:86 msgid "Add a new add-on" @@ -19484,7 +19543,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/item/index.html:154 msgid "Availability" -msgstr "" +msgstr "Disponibilitéit" #: pretix/control/templates/pretixcontrol/item/index.html:196 msgid "Tickets & Badges" @@ -19496,32 +19555,32 @@ msgstr "" #: pretix/control/templates/pretixcontrol/item/index.html:226 msgid "Duration" -msgstr "" +msgstr "Dauer" #: pretix/control/templates/pretixcontrol/item/index.html:228 #: pretix/control/templates/pretixcontrol/subevents/bulk.html:355 #: pretix/control/templates/pretixcontrol/subevents/bulk.html:364 msgid "minutes" -msgstr "" +msgstr "Minutten" #: pretix/control/templates/pretixcontrol/item/index.html:229 msgid "hours" -msgstr "" +msgstr "Stonnen" #: pretix/control/templates/pretixcontrol/item/index.html:230 #: pretix/control/templates/pretixcontrol/item/index.html:248 #: pretix/control/templates/pretixcontrol/item/index.html:261 msgid "days" -msgstr "" +msgstr "Deeg" #: pretix/control/templates/pretixcontrol/item/index.html:231 #: pretix/control/templates/pretixcontrol/item/index.html:262 msgid "months" -msgstr "" +msgstr "Méint" #: pretix/control/templates/pretixcontrol/item/index.html:232 msgid "years" -msgstr "" +msgstr "Joren" #: pretix/control/templates/pretixcontrol/item/index.html:238 msgid "" @@ -19617,7 +19676,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/items/discount.html:22 msgctxt "discount" msgid "Condition" -msgstr "" +msgstr "Konditioun" #: pretix/control/templates/pretixcontrol/items/discount.html:34 msgid "Minimum cart content" @@ -19626,12 +19685,12 @@ msgstr "" #: pretix/control/templates/pretixcontrol/items/discount.html:43 #: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_card.html:53 msgid "OR" -msgstr "" +msgstr "ODER" #: pretix/control/templates/pretixcontrol/items/discount.html:53 msgctxt "discount" msgid "Benefit" -msgstr "" +msgstr "Benefice" #: pretix/control/templates/pretixcontrol/items/discount.html:69 msgid "Discount history" @@ -19716,7 +19775,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/items/discounts.html:111 msgid "Condition:" -msgstr "" +msgstr "Konditioun:" #: pretix/control/templates/pretixcontrol/items/discounts.html:126 msgid "Applies to:" @@ -19724,7 +19783,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/items/fragment_quota_availability.html:3 msgid "Closed" -msgstr "" +msgstr "Zou" #: pretix/control/templates/pretixcontrol/items/fragment_quota_availability.html:5 msgid "Sold out (pending orders)" @@ -19752,7 +19811,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:19 #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:8 msgid "taxes" -msgstr "" +msgstr "Steieren" #: pretix/control/templates/pretixcontrol/items/index.html:10 msgid "" @@ -19843,7 +19902,7 @@ msgstr "" #: pretix/plugins/reports/exporters.py:397 #: pretix/presale/templates/pretixpresale/event/fragment_order_status.html:23 msgid "Paid" -msgstr "" +msgstr "Bezuelt" #: pretix/control/templates/pretixcontrol/items/question.html:66 msgid "No matching answers found." @@ -19855,7 +19914,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/items/question.html:91 msgid "Count" -msgstr "" +msgstr "Unzuel" #: pretix/control/templates/pretixcontrol/items/question.html:92 #, python-format @@ -19873,7 +19932,7 @@ msgstr "" #: pretix/plugins/reports/accountingreport.py:442 #: pretix/plugins/reports/accountingreport.py:566 msgid "Sum" -msgstr "" +msgstr "Zomm" #: pretix/control/templates/pretixcontrol/items/question.html:125 msgid "Question history" @@ -20048,7 +20107,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/items/quota_edit.html:29 msgid "Items" -msgstr "" +msgstr "Produiten" #: pretix/control/templates/pretixcontrol/items/quota_edit.html:31 msgid "" @@ -20160,7 +20219,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/oauth/auth_revoke.html:15 #: pretix/control/templates/pretixcontrol/organizers/device_revoke.html:24 msgid "Revoke" -msgstr "" +msgstr "Widderruffen" #: pretix/control/templates/pretixcontrol/oauth/authorized.html:4 #: pretix/control/templates/pretixcontrol/oauth/authorized.html:6 @@ -20174,7 +20233,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/oauth/authorized.html:18 msgid "Permissions" -msgstr "" +msgstr "Berechtegungen" #: pretix/control/templates/pretixcontrol/oauth/authorized.html:59 msgid "No applications have access to your pretix account." @@ -20381,11 +20440,11 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/change.html:260 msgid "Unconstrained" -msgstr "" +msgstr "Fräi" #: pretix/control/templates/pretixcontrol/order/change.html:266 msgid "–" -msgstr "" +msgstr "–" #: pretix/control/templates/pretixcontrol/order/change.html:272 msgid "" @@ -20461,7 +20520,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_questions.html:36 #: pretix/presale/templates/pretixpresale/event/order_modify.html:30 msgid "(optional)" -msgstr "" +msgstr "(optionell)" #: pretix/control/templates/pretixcontrol/order/delete.html:4 #: pretix/control/templates/pretixcontrol/order/delete.html:8 @@ -20503,13 +20562,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:297 #: pretix/control/views/orders.py:311 msgid "Approve" -msgstr "" +msgstr "Fräischalten" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 #: pretix/control/views/orders.py:325 msgid "Deny" -msgstr "" +msgstr "Refuséieren" #: pretix/control/templates/pretixcontrol/order/index.html:58 #: pretix/control/templates/pretixcontrol/order/pay_complete.html:37 @@ -20649,11 +20708,11 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:329 msgid "Transmit" -msgstr "" +msgstr "Iwwerdroen" #: pretix/control/templates/pretixcontrol/order/index.html:331 msgid "Retransmit" -msgstr "" +msgstr "Nach eemol iwwerdroen" #: pretix/control/templates/pretixcontrol/order/index.html:342 msgid "Rebuild the invoice with updated data but the same invoice number." @@ -20662,7 +20721,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:343 #: pretix/control/templates/pretixcontrol/user/2fa_regenemergency.html:20 msgid "Regenerate" -msgstr "" +msgstr "Nei generéieren" #: pretix/control/templates/pretixcontrol/order/index.html:354 msgid "" @@ -20761,12 +20820,12 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:635 msgid "UNSAFE" -msgstr "" +msgstr "NET SÉCHER" #: pretix/control/templates/pretixcontrol/order/index.html:739 #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453 msgid "Taxes" -msgstr "" +msgstr "Steieren" #: pretix/control/templates/pretixcontrol/order/index.html:748 #: pretix/control/templates/pretixcontrol/orders/overview.html:89 @@ -20778,7 +20837,7 @@ msgstr "" #: pretix/plugins/reports/exporters.py:969 #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465 msgid "Total" -msgstr "" +msgstr "Total" #: pretix/control/templates/pretixcontrol/order/index.html:758 #: pretix/presale/templates/pretixpresale/event/order.html:210 @@ -20805,7 +20864,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:807 #: pretix/control/templates/pretixcontrol/search/payments.html:126 msgid "MIGRATED" -msgstr "" +msgstr "MIGRÉIERT" #: pretix/control/templates/pretixcontrol/order/index.html:819 #: pretix/control/templates/pretixcontrol/order/pay_cancel.html:4 @@ -20824,7 +20883,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:888 #: pretix/control/templates/pretixcontrol/orders/refunds.html:60 msgid "Source" -msgstr "" +msgstr "Source" #: pretix/control/templates/pretixcontrol/order/index.html:921 msgid "Cancel transfer" @@ -20838,7 +20897,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:933 #: pretix/control/templates/pretixcontrol/orders/refunds.html:118 msgid "Ignore" -msgstr "" +msgstr "Ignoréieren" #: pretix/control/templates/pretixcontrol/order/index.html:939 #: pretix/control/templates/pretixcontrol/order/refund_process.html:58 @@ -20850,7 +20909,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/base.html:141 #: pretix/presale/templates/pretixpresale/event/timemachine.html:30 msgid "Change" -msgstr "" +msgstr "Wiesselen" #: pretix/control/templates/pretixcontrol/order/index.html:1003 #: pretix/presale/templates/pretixpresale/event/checkout_confirm.html:90 @@ -20864,7 +20923,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:1022 msgid "Check" -msgstr "" +msgstr "Kontrolléieren" #: pretix/control/templates/pretixcontrol/order/index.html:1076 msgid "Order history" @@ -20888,7 +20947,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/mail_history.html:50 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/history.html:30 msgid "Subject:" -msgstr "" +msgstr "Sujet:" #: pretix/control/templates/pretixcontrol/order/mail_history.html:63 msgid "Calendar invite" @@ -20935,7 +20994,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/reactivate.html:34 msgid "Reactivate" -msgstr "" +msgstr "Reaktivéieren" #: pretix/control/templates/pretixcontrol/order/refund_cancel.html:4 #: pretix/control/templates/pretixcontrol/order/refund_cancel.html:8 @@ -21111,7 +21170,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/sendmail.html:44 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/send_form.html:89 msgid "Send" -msgstr "" +msgstr "Verschécken" #: pretix/control/templates/pretixcontrol/order/transactions.html:5 #: pretix/control/templates/pretixcontrol/order/transactions.html:8 @@ -21325,7 +21384,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/orders/fragment_export_schedule_form.html:6 msgid "Schedule" -msgstr "" +msgstr "Zäitplang" #: pretix/control/templates/pretixcontrol/orders/fragment_export_schedule_form.html:15 msgid "Repetition schedule" @@ -21378,7 +21437,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/orders/fragment_export_schedule_form.html:97 msgid "Forever" -msgstr "" +msgstr "Fir ëmmer" #: pretix/control/templates/pretixcontrol/orders/fragment_export_schedule_form.html:110 msgid "" @@ -21404,7 +21463,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/orders/fragment_export_schedule_form.html:122 msgid "Owner" -msgstr "" +msgstr "Besëtzer" #: pretix/control/templates/pretixcontrol/orders/fragment_export_schedule_form.html:128 msgid "" @@ -21520,7 +21579,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:49 #: pretix/control/templates/pretixcontrol/vouchers/index.html:20 msgid "Go!" -msgstr "" +msgstr "A lass!" #: pretix/control/templates/pretixcontrol/orders/index.html:89 msgid "Advanced search" @@ -21576,13 +21635,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/customer.html:255 #: pretix/control/templates/pretixcontrol/search/orders.html:103 msgid "OVERPAID" -msgstr "" +msgstr "ZE VILL BEZUELT" #: pretix/control/templates/pretixcontrol/orders/index.html:225 #: pretix/control/templates/pretixcontrol/organizers/customer.html:257 #: pretix/control/templates/pretixcontrol/search/orders.html:105 msgid "UNDERPAID" -msgstr "" +msgstr "NET GENUCH BEZUELT" #: pretix/control/templates/pretixcontrol/orders/index.html:227 #: pretix/control/templates/pretixcontrol/organizers/customer.html:259 @@ -21638,7 +21697,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/orders/overview.html:10 msgid "Sales" -msgstr "" +msgstr "Verkeef" #: pretix/control/templates/pretixcontrol/orders/overview.html:11 msgid "Revenue (gross)" @@ -21668,7 +21727,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/orders/overview.html:80 #: pretix/plugins/reports/exporters.py:393 msgid "Purchased" -msgstr "" +msgstr "Verkaf" #: pretix/control/templates/pretixcontrol/orders/refunds.html:34 msgid "No refunds are currently open." @@ -21677,7 +21736,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/orders/refunds.html:74 #: pretix/presale/templates/pretixpresale/organizers/customer_membership.html:109 msgid "Actions" -msgstr "" +msgstr "Aktiounen" #: pretix/control/templates/pretixcontrol/orders/search.html:7 #: pretix/control/templates/pretixcontrol/orders/search.html:9 @@ -21728,7 +21787,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/channels.html:22 msgid "Channel" -msgstr "" +msgstr "Kanäl" #: pretix/control/templates/pretixcontrol/organizers/customer.html:8 #: pretix/control/templates/pretixcontrol/organizers/customer.html:14 @@ -21754,13 +21813,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/customer_anonymize.html:39 #: pretix/control/templates/pretixcontrol/users/form.html:24 msgid "Anonymize" -msgstr "" +msgstr "Anonymiséieren" #: pretix/control/templates/pretixcontrol/organizers/customer.html:122 #: pretix/control/templates/pretixcontrol/organizers/customer_membership.html:35 #: pretix/presale/templates/pretixpresale/organizers/customer_membership.html:60 msgid "Usages" -msgstr "" +msgstr "Verwendungen" #: pretix/control/templates/pretixcontrol/organizers/customer.html:189 msgid "Add membership" @@ -21915,7 +21974,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/device_connect.html:30 msgid "Token:" -msgstr "" +msgstr "Token:" #: pretix/control/templates/pretixcontrol/organizers/device_connect.html:40 msgid "Device overview" @@ -21923,7 +21982,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/device_edit.html:6 msgid "Device:" -msgstr "" +msgstr "Apparat:" #: pretix/control/templates/pretixcontrol/organizers/device_edit.html:8 msgid "Connect a new device" @@ -21995,16 +22054,16 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/devices.html:142 msgid "Revoked" -msgstr "" +msgstr "Widderruff" #: pretix/control/templates/pretixcontrol/organizers/devices.html:164 msgid "Connect" -msgstr "" +msgstr "Connectéieren" #: pretix/control/templates/pretixcontrol/organizers/devices.html:175 #: pretix/control/templates/pretixcontrol/organizers/webhooks.html:76 msgid "Logs" -msgstr "" +msgstr "Protokoller" #: pretix/control/templates/pretixcontrol/organizers/devices.html:188 #: pretix/control/templates/pretixcontrol/subevents/index.html:211 @@ -22032,7 +22091,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/edit.html:161 msgid "Privacy" -msgstr "" +msgstr "Dateschutz" #: pretix/control/templates/pretixcontrol/organizers/edit.html:165 msgid "" @@ -22067,7 +22126,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/edit.html:204 msgid "Accessibility" -msgstr "" +msgstr "Accessibilitéit" #: pretix/control/templates/pretixcontrol/organizers/edit.html:206 msgid "" @@ -22132,7 +22191,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/edit.html:317 msgid "Domains" -msgstr "" +msgstr "Domainen" #: pretix/control/templates/pretixcontrol/organizers/edit.html:319 msgid "This dialog is intended for advanced users." @@ -22162,7 +22221,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/gate_edit.html:6 msgid "Gate:" -msgstr "" +msgstr "Statioun:" #: pretix/control/templates/pretixcontrol/organizers/gate_edit.html:8 #: pretix/control/templates/pretixcontrol/organizers/gates.html:11 @@ -22189,7 +22248,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/giftcard.html:71 msgid "Transactions" -msgstr "" +msgstr "Transaktiounen" #: pretix/control/templates/pretixcontrol/organizers/giftcard.html:94 msgid "" @@ -22199,7 +22258,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/giftcard.html:96 msgid "Revert" -msgstr "" +msgstr "Réckgängeg maachen" #: pretix/control/templates/pretixcontrol/organizers/giftcard.html:139 msgid "Gift card history" @@ -22233,7 +22292,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/giftcard_acceptance_list.html:49 #: pretix/control/templates/pretixcontrol/organizers/giftcard_acceptance_list.html:128 msgid "invited" -msgstr "" +msgstr "invitéiert" #: pretix/control/templates/pretixcontrol/organizers/giftcard_acceptance_list.html:62 #: pretix/control/templates/pretixcontrol/organizers/giftcard_acceptance_list.html:140 @@ -22241,15 +22300,15 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/team_members.html:67 #: pretix/control/templates/pretixcontrol/organizers/team_members.html:120 msgid "Remove" -msgstr "" +msgstr "Läschen" #: pretix/control/templates/pretixcontrol/organizers/giftcard_acceptance_list.html:66 msgid "Accept" -msgstr "" +msgstr "Akzeptéieren" #: pretix/control/templates/pretixcontrol/organizers/giftcard_acceptance_list.html:69 msgid "Decline" -msgstr "" +msgstr "Refuséieren" #: pretix/control/templates/pretixcontrol/organizers/giftcard_acceptance_list.html:84 msgid "Other organizers accepting gift cards from you" @@ -22438,15 +22497,15 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/property_edit.html:7 msgid "Property:" -msgstr "" +msgstr "Eegeschaft:" #: pretix/control/templates/pretixcontrol/organizers/property_edit.html:20 msgid "Usage" -msgstr "" +msgstr "Verwendung" #: pretix/control/templates/pretixcontrol/organizers/property_edit.html:26 msgid "Validation" -msgstr "" +msgstr "Validatioun" #: pretix/control/templates/pretixcontrol/organizers/property_edit.html:31 msgid "Allowed values" @@ -22473,7 +22532,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/reusable_medium.html:30 msgctxt "reusable_media" msgid "Identifier" -msgstr "" +msgstr "Identifiant" #: pretix/control/templates/pretixcontrol/organizers/reusable_media.html:56 #: pretix/control/templates/pretixcontrol/organizers/reusable_medium.html:28 @@ -22485,7 +22544,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/reusable_medium.html:42 msgctxt "reusable_media" msgid "Connections" -msgstr "" +msgstr "Connexiounen" #: pretix/control/templates/pretixcontrol/organizers/reusable_medium.html:6 #: pretix/control/templates/pretixcontrol/organizers/reusable_medium.html:12 @@ -22584,7 +22643,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/team_edit.html:6 #: pretix/control/templates/pretixcontrol/organizers/team_members.html:6 msgid "Team:" -msgstr "" +msgstr "Team:" #: pretix/control/templates/pretixcontrol/organizers/team_edit.html:8 #: pretix/control/templates/pretixcontrol/organizers/teams.html:30 @@ -22605,7 +22664,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/team_members.html:21 msgid "Member" -msgstr "" +msgstr "Member" #: pretix/control/templates/pretixcontrol/organizers/team_members.html:36 msgid "Two-factor authentication enabled" @@ -22633,7 +22692,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/team_members.html:85 #: pretix/control/templates/pretixcontrol/organizers/team_members.html:134 msgid "Add" -msgstr "" +msgstr "Bäifügen" #: pretix/control/templates/pretixcontrol/organizers/team_members.html:92 msgid "API tokens" @@ -22649,7 +22708,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/teams.html:38 msgid "Members" -msgstr "" +msgstr "Memberen" #: pretix/control/templates/pretixcontrol/organizers/teams.html:54 #, python-format @@ -22697,7 +22756,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/webhook_logs.html:73 msgid "Failed" -msgstr "" +msgstr "Feelgeschloen" #: pretix/control/templates/pretixcontrol/organizers/webhook_logs.html:83 msgid "Request URL" @@ -22780,11 +22839,11 @@ msgstr "" #: pretix/control/templates/pretixcontrol/pdf/index.html:36 #: pretix/plugins/banktransfer/refund_export.py:46 msgid "Code" -msgstr "" +msgstr "Code" #: pretix/control/templates/pretixcontrol/pdf/index.html:52 msgid "Text box" -msgstr "" +msgstr "Textbox" #: pretix/control/templates/pretixcontrol/pdf/index.html:59 msgid "QR Code" @@ -22804,7 +22863,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/pdf/index.html:87 msgid "Image" -msgstr "" +msgstr "Bild" #: pretix/control/templates/pretixcontrol/pdf/index.html:92 msgid "" @@ -22823,15 +22882,15 @@ msgstr "" #: pretix/control/templates/pretixcontrol/pdf/index.html:107 msgid "Duplicate" -msgstr "" +msgstr "Duplizéieren" #: pretix/control/templates/pretixcontrol/pdf/index.html:117 msgid "Undo" -msgstr "" +msgstr "Réckgängeg maachen" #: pretix/control/templates/pretixcontrol/pdf/index.html:121 msgid "Redo" -msgstr "" +msgstr "Widderhuelen" #: pretix/control/templates/pretixcontrol/pdf/index.html:142 msgid "" @@ -22879,7 +22938,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/pdf/index.html:217 #: pretix/control/templates/pretixcontrol/pdf/index.html:233 msgid "Loading…" -msgstr "" +msgstr "Lueden…" #: pretix/control/templates/pretixcontrol/pdf/index.html:220 msgid "Start editing" @@ -22935,15 +22994,15 @@ msgstr "" #: pretix/control/templates/pretixcontrol/pdf/index.html:314 msgid "Style" -msgstr "" +msgstr "Stil" #: pretix/control/templates/pretixcontrol/pdf/index.html:316 msgid "Dark" -msgstr "" +msgstr "Donkel" #: pretix/control/templates/pretixcontrol/pdf/index.html:317 msgid "Light" -msgstr "" +msgstr "Hell" #: pretix/control/templates/pretixcontrol/pdf/index.html:323 msgid "Image content" @@ -22954,7 +23013,7 @@ msgstr "" #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:34 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/send_form.html:29 msgid "Content" -msgstr "" +msgstr "Contenu" #: pretix/control/templates/pretixcontrol/pdf/index.html:343 #: pretix/control/templates/pretixcontrol/pdf/placeholders.html:50 @@ -22972,7 +23031,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/pdf/index.html:352 msgid "Other…" -msgstr "" +msgstr "Aner…" #: pretix/control/templates/pretixcontrol/pdf/index.html:362 msgid "Show available placeholders" @@ -23056,7 +23115,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/pdf/placeholders.html:31 msgid "Placeholder" -msgstr "" +msgstr "Platzhalter" #: pretix/control/templates/pretixcontrol/pdf/placeholders.html:33 msgid "Formatting example" @@ -23205,12 +23264,12 @@ msgstr "" #: pretix/control/templates/pretixcontrol/subevents/bulk.html:258 msgctxt "subevent" msgid "Preview" -msgstr "" +msgstr "Virschau" #: pretix/control/templates/pretixcontrol/subevents/bulk.html:265 msgctxt "subevent" msgid "Times" -msgstr "" +msgstr "Auerzäiten" #: pretix/control/templates/pretixcontrol/subevents/bulk.html:339 msgid "Start of first slot" @@ -23230,7 +23289,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/subevents/bulk.html:370 msgid "Create" -msgstr "" +msgstr "Erstellen" #: pretix/control/templates/pretixcontrol/subevents/bulk.html:377 msgid "Add a single time slot" @@ -23314,7 +23373,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/subevents/bulk_edit.html:381 msgid "Proceed" -msgstr "" +msgstr "Weiderfueren" #: pretix/control/templates/pretixcontrol/subevents/delete.html:4 #: pretix/control/templates/pretixcontrol/subevents/delete.html:6 @@ -23388,7 +23447,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/subevents/index.html:96 #: pretix/plugins/reports/accountingreport.py:121 msgid "Begin" -msgstr "" +msgstr "Ufänken" #: pretix/control/templates/pretixcontrol/subevents/index.html:176 msgid "Show orders" @@ -23473,7 +23532,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/user/2fa_confirm_totp.html:60 msgid "copy" -msgstr "" +msgstr "kopéieren" #: pretix/control/templates/pretixcontrol/user/2fa_confirm_totp.html:68 msgid "" @@ -23578,7 +23637,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/user/2fa_leaveteams.html:26 msgid "Leave" -msgstr "" +msgstr "Ofbriechen" #: pretix/control/templates/pretixcontrol/user/2fa_main.html:8 msgid "" @@ -23720,19 +23779,19 @@ msgstr "" #: pretix/control/templates/pretixcontrol/user/notifications.html:70 msgid "Global" -msgstr "" +msgstr "Global" #: pretix/control/templates/pretixcontrol/user/notifications.html:70 #: pretix/control/templates/pretixcontrol/user/notifications.html:72 #: pretix/control/templates/pretixcontrol/user/settings.html:20 msgid "On" -msgstr "" +msgstr "Un" #: pretix/control/templates/pretixcontrol/user/notifications.html:70 #: pretix/control/templates/pretixcontrol/user/notifications.html:71 #: pretix/control/templates/pretixcontrol/user/settings.html:24 msgid "Off" -msgstr "" +msgstr "Aus" #: pretix/control/templates/pretixcontrol/user/notifications.html:75 msgid "You have no permission to receive this notification" @@ -23798,11 +23857,11 @@ msgstr "" #: pretix/control/templates/pretixcontrol/user/staff_session_edit.html:30 msgid "Method" -msgstr "" +msgstr "Method" #: pretix/control/templates/pretixcontrol/user/staff_session_edit.html:31 msgid "URL" -msgstr "" +msgstr "URL" #: pretix/control/templates/pretixcontrol/user/staff_session_edit.html:32 msgid "On behalf of" @@ -23890,7 +23949,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/bulk.html:21 msgctxt "number_of_things" msgid "Number" -msgstr "" +msgstr "Nummer" #: pretix/control/templates/pretixcontrol/vouchers/bulk.html:25 msgid "Generate random codes" @@ -23991,7 +24050,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/detail.html:54 msgid "Copy" -msgstr "" +msgstr "Kopéieren" #: pretix/control/templates/pretixcontrol/vouchers/detail.html:116 msgid "Voucher history" @@ -24037,11 +24096,11 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/index.html:119 msgid "Redemptions" -msgstr "" +msgstr "Remisen" #: pretix/control/templates/pretixcontrol/vouchers/index.html:124 msgid "Expiry" -msgstr "" +msgstr "Oflafdatum" #: pretix/control/templates/pretixcontrol/vouchers/index.html:183 #, python-format @@ -24233,7 +24292,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:19 msgid "Transfer" -msgstr "" +msgstr "Weiderleeden" #: pretix/control/templatetags/hierarkey_form.py:68 msgid "Currently set on organizer level" @@ -24261,7 +24320,7 @@ msgstr "" #: pretix/control/templatetags/hierarkey_form.py:79 msgid "Unlock" -msgstr "" +msgstr "Entspären" #: pretix/control/templatetags/hierarkey_form.py:80 msgid "Go to organizer settings" @@ -24427,7 +24486,7 @@ msgstr "" #: pretix/control/views/dashboards.py:273 msgid "live" -msgstr "" +msgstr "verëffentlecht" #: pretix/control/views/dashboards.py:274 msgid "live and in test mode" @@ -24479,7 +24538,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/fragment_week_calendar.html:86 #: pretix/presale/views/widget.py:482 msgid "Soon" -msgstr "" +msgstr "Geschwënn" #: pretix/control/views/dashboards.py:565 #, python-brace-format @@ -24638,7 +24697,7 @@ msgstr "" #: pretix/control/views/event.py:1291 pretix/control/views/main.py:337 msgid "VAT" -msgstr "" +msgstr "TVA" #: pretix/control/views/event.py:1327 msgid "The new tax rule has been created." @@ -24784,7 +24843,7 @@ msgstr "" #: pretix/control/views/item.py:478 msgid "Street" -msgstr "" +msgstr "Strooss" #: pretix/control/views/item.py:580 pretix/control/views/item.py:759 #: pretix/control/views/item.py:781 @@ -25398,7 +25457,7 @@ msgstr "" #: pretix/control/views/organizer.py:582 msgid "Administrators" -msgstr "" +msgstr "Administrateuren" #: pretix/control/views/organizer.py:803 msgid "Unknown plugin." @@ -25720,7 +25779,7 @@ msgstr "" #: pretix/control/views/typeahead.py:92 msgid "Series:" -msgstr "" +msgstr "Serien:" #: pretix/control/views/typeahead.py:115 #, python-brace-format @@ -25910,7 +25969,7 @@ msgstr "" #: pretix/control/views/waitinglist.py:335 msgid "Waiting" -msgstr "" +msgstr "Waart" #: pretix/control/views/waitinglist.py:373 msgid "The requested entry does not exist." @@ -25930,7 +25989,7 @@ msgstr "" #: pretix/helpers/countries.py:128 msgid "Belarus" -msgstr "" +msgstr "Belarus" #: pretix/helpers/countries.py:129 msgid "French Guiana" @@ -25942,7 +26001,7 @@ msgstr "" #: pretix/helpers/countries.py:131 msgid "Macao" -msgstr "" +msgstr "Macao" #: pretix/helpers/daterange.py:54 pretix/helpers/daterange.py:126 #: pretix/presale/templates/pretixpresale/fragment_calendar.html:77 @@ -25950,7 +26009,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/index.html:71 msgctxt "timerange" msgid "until" -msgstr "" +msgstr "bis" #: pretix/helpers/images.py:61 pretix/helpers/images.py:67 #: pretix/helpers/images.py:85 @@ -25985,7 +26044,7 @@ msgstr "" #: pretix/multidomain/models.py:50 msgid "Mode" -msgstr "" +msgstr "Modus" #: pretix/multidomain/models.py:69 msgid "Known domain" @@ -26018,7 +26077,7 @@ msgstr "" #: pretix/plugins/autocheckin/apps.py:42 pretix/plugins/webcheckin/apps.py:40 #: pretix/plugins/webcheckin/templates/pretixplugins/webcheckin/index.html:10 msgid "Check-in" -msgstr "" +msgstr "Check-in" #: pretix/plugins/autocheckin/apps.py:42 #: pretix/plugins/autocheckin/signals.py:47 @@ -26088,7 +26147,7 @@ msgstr "" #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18 msgid "Conditions" -msgstr "" +msgstr "Konditiounen" #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6 @@ -26139,7 +26198,7 @@ msgstr "" #: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4 #: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6 msgid "Badges" -msgstr "" +msgstr "Badgen" #: pretix/plugins/badges/apps.py:38 msgid "" @@ -26257,7 +26316,7 @@ msgstr "" #: pretix/plugins/badges/forms.py:33 msgid "Template" -msgstr "" +msgstr "Template" #: pretix/plugins/badges/forms.py:34 msgid "" @@ -26455,7 +26514,7 @@ msgstr "" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" -msgstr "" +msgstr "IBAN" #: pretix/plugins/banktransfer/payment.py:106 #: pretix/plugins/banktransfer/payment.py:301 @@ -26464,7 +26523,7 @@ msgstr "" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" -msgstr "" +msgstr "BIC" #: pretix/plugins/banktransfer/payment.py:116 msgid "Name of bank" @@ -26575,7 +26634,7 @@ msgstr "" #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:47 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:55 msgid "Bank" -msgstr "" +msgstr "Bank" #: pretix/plugins/banktransfer/payment.py:381 msgid "Invalid IBAN/BIC" @@ -26610,7 +26669,7 @@ msgstr "" #: pretix/plugins/banktransfer/refund_export.py:93 msgid "Refund" -msgstr "" +msgstr "Rembourséieren" #: pretix/plugins/banktransfer/signals.py:123 msgid "The invoice was sent to the designated email address." @@ -26670,7 +26729,7 @@ msgstr "" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:14 msgid "Account" -msgstr "" +msgstr "Kont" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:28 msgid "Transfer amount" @@ -26757,7 +26816,7 @@ msgstr "" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html:92 msgid "Clear" -msgstr "" +msgstr "Läschen" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html:101 msgid "Discard all" @@ -26809,7 +26868,7 @@ msgstr "" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:38 #: pretix/plugins/stripe/templates/pretixplugins/stripe/pending.html:27 msgid "Amount:" -msgstr "" +msgstr "Montant:" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:42 #: pretix/plugins/stripe/templates/pretixplugins/stripe/pending.html:30 @@ -26934,7 +26993,7 @@ msgstr "" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/sepa_export.html:34 msgid "Download" -msgstr "" +msgstr "Eroflueden" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/transaction_list.html:12 msgid "Payer and reference" @@ -26952,11 +27011,11 @@ msgstr "" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/transaction_list.html:37 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/transaction_list.html:49 msgid "Retry" -msgstr "" +msgstr "Nach eemol probéieren" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/transaction_list.html:80 msgid "Comment:" -msgstr "" +msgstr "Kommentar:" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/transaction_list.html:98 msgid "No order code detected" @@ -26980,7 +27039,7 @@ msgstr "" #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/transaction_list.html:123 msgid "Discard" -msgstr "" +msgstr "Ignoréieren" #: pretix/plugins/banktransfer/views.py:140 msgid "" @@ -27002,11 +27061,11 @@ msgstr "" #: pretix/plugins/banktransfer/views.py:350 msgid "min" -msgstr "" +msgstr "min" #: pretix/plugins/banktransfer/views.py:351 msgid "max" -msgstr "" +msgstr "max" #: pretix/plugins/banktransfer/views.py:360 msgid "Filter form is not valid." @@ -27101,7 +27160,7 @@ msgstr "" #: pretix/plugins/checkinlists/exporters.py:745 msgctxt "export_category" msgid "Check-in" -msgstr "" +msgstr "Check-in" #: pretix/plugins/checkinlists/exporters.py:306 msgid "" @@ -27113,7 +27172,7 @@ msgstr "" #: pretix/plugins/checkinlists/exporters.py:374 msgctxt "tablehead" msgid "paid" -msgstr "" +msgstr "bezuelt" #: pretix/plugins/checkinlists/exporters.py:477 msgid "" @@ -27135,7 +27194,7 @@ msgstr "" #: pretix/plugins/checkinlists/exporters.py:762 #: pretix/plugins/paypal/payment.py:124 pretix/plugins/paypal2/payment.py:121 msgid "Secret" -msgstr "" +msgstr "Geheimnis" #: pretix/plugins/checkinlists/exporters.py:673 msgid "Valid check-in codes" @@ -27159,7 +27218,7 @@ msgstr "" #: pretix/plugins/checkinlists/exporters.py:766 msgid "Offline" -msgstr "" +msgstr "Offline" #: pretix/plugins/checkinlists/exporters.py:767 msgid "Offline override" @@ -27168,7 +27227,7 @@ msgstr "" #: pretix/plugins/checkinlists/exporters.py:771 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:83 msgid "Error message" -msgstr "" +msgstr "Feelermessage" #: pretix/plugins/checkinlists/exporters.py:772 msgid "Upload date" @@ -27183,7 +27242,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/fragment_modals.html:52 #: pretix/presale/templates/pretixpresale/fragment_modals.html:148 msgid "OK" -msgstr "" +msgstr "OK" #: pretix/plugins/checkinlists/exporters.py:862 msgid "Successful scans only" @@ -27199,7 +27258,7 @@ msgstr "" #: pretix/plugins/paypal2/payment.py:1097 #: pretix/plugins/paypal2/payment.py:1098 pretix/plugins/stripe/payment.py:1816 msgid "PayPal" -msgstr "" +msgstr "PayPal" #: pretix/plugins/paypal/apps.py:53 msgid "" @@ -27229,7 +27288,7 @@ msgstr "" #: pretix/plugins/paypal/payment.py:130 pretix/plugins/paypal2/payment.py:127 #: pretix/plugins/stripe/payment.py:258 msgid "Endpoint" -msgstr "" +msgstr "API-Endpunkt" #: pretix/plugins/paypal/payment.py:142 pretix/plugins/paypal2/payment.py:201 msgid "Reference prefix" @@ -27373,7 +27432,7 @@ msgstr "" #: pretix/plugins/paypal2/templates/pretixplugins/paypal2/redirect.html:25 #: pretix/plugins/stripe/templates/pretixplugins/stripe/redirect.html:25 msgid "Click here in order to open the window." -msgstr "" +msgstr "Klickt hei fir eng nei Fënster opzemaachen." #: pretix/plugins/paypal/views.py:107 pretix/plugins/paypal2/views.py:321 msgid "Invalid response from PayPal received." @@ -27729,7 +27788,7 @@ msgstr "" #: pretix/plugins/reports/exporters.py:257 msgctxt "export_category" msgid "Analysis" -msgstr "" +msgstr "Analys" #: pretix/plugins/reports/accountingreport.py:83 msgid "Ignore test mode orders" @@ -27741,7 +27800,7 @@ msgstr "" #: pretix/plugins/reports/accountingreport.py:129 msgid "End" -msgstr "" +msgstr "Enn" #: pretix/plugins/reports/accountingreport.py:140 msgid "Report includes test orders which may be deleted later!" @@ -27836,7 +27895,7 @@ msgstr "" #: pretix/plugins/reports/exporters.py:405 #: pretix/plugins/reports/exporters.py:406 msgid "#" -msgstr "" +msgstr "#" #: pretix/plugins/reports/exporters.py:488 msgid "Tax split list (PDF)" @@ -27856,14 +27915,14 @@ msgstr "" #: pretix/plugins/reports/exporters.py:858 #: pretix/plugins/reports/exporters.py:899 msgid "Gross" -msgstr "" +msgstr "Brutto" #: pretix/plugins/reports/exporters.py:576 #: pretix/plugins/reports/exporters.py:807 #: pretix/plugins/reports/exporters.py:859 #: pretix/plugins/reports/exporters.py:899 msgid "Tax" -msgstr "" +msgstr "Steier" #: pretix/plugins/reports/exporters.py:661 msgid "Tax split list" @@ -27899,7 +27958,7 @@ msgstr "" #: pretix/plugins/returnurl/apps.py:40 pretix/plugins/returnurl/signals.py:90 msgid "Redirection" -msgstr "" +msgstr "Weiderleedung" #: pretix/plugins/returnurl/templates/returnurl/settings.html:7 msgid "" @@ -27924,7 +27983,7 @@ msgstr "" #: pretix/plugins/sendmail/forms.py:60 msgid "Attachment" -msgstr "" +msgstr "Annex" #: pretix/plugins/sendmail/forms.py:63 msgid "" @@ -28032,7 +28091,7 @@ msgstr "" #: pretix/plugins/sendmail/forms.py:374 msgid "Absolute" -msgstr "" +msgstr "Absolut" #: pretix/plugins/sendmail/forms.py:375 msgid "Relative, before event start" @@ -28069,15 +28128,15 @@ msgstr "" #: pretix/plugins/sendmail/models.py:51 msgid "scheduled" -msgstr "" +msgstr "programméiert" #: pretix/plugins/sendmail/models.py:53 msgid "completed" -msgstr "" +msgstr "ofgeschloss" #: pretix/plugins/sendmail/models.py:54 msgid "missed" -msgstr "" +msgstr "verpasst" #: pretix/plugins/sendmail/models.py:233 msgid "Everyone who created a ticket order" @@ -28085,7 +28144,7 @@ msgstr "" #: pretix/plugins/sendmail/models.py:239 msgid "Everyone" -msgstr "" +msgstr "Jiddereen" #: pretix/plugins/sendmail/models.py:240 msgid "Anyone who is or was checked in" @@ -28405,7 +28464,7 @@ msgstr[1] "" #: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8 #: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:10 msgid "Statistics" -msgstr "" +msgstr "Statistiken" #: pretix/plugins/statistics/apps.py:37 msgid "Get a birds-eye view of your event sales with graphical statistics." @@ -28491,7 +28550,7 @@ msgstr "" #: pretix/plugins/stripe/apps.py:31 pretix/plugins/stripe/apps.py:34 #: pretix/plugins/stripe/apps.py:44 pretix/plugins/stripe/payment.py:163 msgid "Stripe" -msgstr "" +msgstr "Stripe" #: pretix/plugins/stripe/apps.py:40 msgid "" @@ -28573,12 +28632,12 @@ msgstr "" #: pretix/plugins/stripe/payment.py:261 msgctxt "stripe" msgid "Live" -msgstr "" +msgstr "Verëffentlecht" #: pretix/plugins/stripe/payment.py:262 msgctxt "stripe" msgid "Testing" -msgstr "" +msgstr "Test-System" #: pretix/plugins/stripe/payment.py:264 msgid "" @@ -28644,7 +28703,7 @@ msgstr "" #: pretix/plugins/stripe/payment.py:342 pretix/plugins/stripe/payment.py:1527 msgid "iDEAL" -msgstr "" +msgstr "iDEAL" #: pretix/plugins/stripe/payment.py:344 pretix/plugins/stripe/payment.py:352 #: pretix/plugins/stripe/payment.py:360 pretix/plugins/stripe/payment.py:395 @@ -28660,15 +28719,15 @@ msgstr "" #: pretix/plugins/stripe/payment.py:350 pretix/plugins/stripe/payment.py:1552 msgid "Alipay" -msgstr "" +msgstr "Alipay" #: pretix/plugins/stripe/payment.py:358 pretix/plugins/stripe/payment.py:1564 msgid "Bancontact" -msgstr "" +msgstr "Bancontact" #: pretix/plugins/stripe/payment.py:366 msgid "SEPA Direct Debit" -msgstr "" +msgstr "SEPA Direct Debit" #: pretix/plugins/stripe/payment.py:369 msgid "" @@ -28696,27 +28755,27 @@ msgstr "" #: pretix/plugins/stripe/payment.py:393 pretix/plugins/stripe/payment.py:1677 msgid "EPS" -msgstr "" +msgstr "EPS" #: pretix/plugins/stripe/payment.py:401 pretix/plugins/stripe/payment.py:1708 msgid "Multibanco" -msgstr "" +msgstr "Multibanco" #: pretix/plugins/stripe/payment.py:409 pretix/plugins/stripe/payment.py:1730 msgid "Przelewy24" -msgstr "" +msgstr "Przelewy24" #: pretix/plugins/stripe/payment.py:417 pretix/plugins/stripe/payment.py:1769 msgid "WeChat Pay" -msgstr "" +msgstr "WeChat Pay" #: pretix/plugins/stripe/payment.py:433 pretix/plugins/stripe/payment.py:1824 msgid "Swish" -msgstr "" +msgstr "Swish" #: pretix/plugins/stripe/payment.py:449 pretix/plugins/stripe/payment.py:1318 msgid "Affirm" -msgstr "" +msgstr "Affirm" #: pretix/plugins/stripe/payment.py:454 msgid "Only available for payments between $50 and $30,000." @@ -28724,7 +28783,7 @@ msgstr "" #: pretix/plugins/stripe/payment.py:460 pretix/plugins/stripe/payment.py:1363 msgid "Klarna" -msgstr "" +msgstr "Klarna" #: pretix/plugins/stripe/payment.py:467 msgid "" @@ -28740,7 +28799,7 @@ msgstr "" #: pretix/plugins/stripe/payment.py:487 msgid "MobilePay" -msgstr "" +msgstr "MobilePay" #: pretix/plugins/stripe/payment.py:497 msgid "Destination" @@ -28853,7 +28912,7 @@ msgstr "" #: pretix/plugins/stripe/payment.py:1480 msgid "giropay" -msgstr "" +msgstr "giropay" #: pretix/plugins/stripe/payment.py:1483 msgid "" @@ -29389,7 +29448,7 @@ msgstr "" #: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/edit.html:23 msgid "Ticket design" -msgstr "" +msgstr "Design vum Ticket" #: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/edit.html:27 msgid "You can modify the design after you saved this page." @@ -29935,7 +29994,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_confirm.html:27 #: pretix/presale/templates/pretixpresale/event/fragment_cart_box.html:18 msgid "Cart expired" -msgstr "" +msgstr "Weenchen ofgelaf" #: pretix/presale/templates/pretixpresale/event/checkout_base.html:36 msgid "Show full cart" @@ -30543,11 +30602,13 @@ msgid "" "The items in your cart are no longer reserved for you. You can still " "complete your order as long as they’re available." msgstr "" +"D'Produiten an Ärem Weenche sinn net méi fir Iech reservéiert. Dir kënnt " +"d'Bestellung nach ëmmer ofschléissen esou laang wéi si disponibel sinn." #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510 #: pretix/presale/templates/pretixpresale/fragment_modals.html:48 msgid "Renew reservation" -msgstr "" +msgstr "D'Reservéierung verlängeren" #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522 msgid "Reservation renewed" @@ -31632,7 +31693,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/fragment_week_calendar.html:77 #: pretix/presale/views/widget.py:445 pretix/presale/views/widget.py:468 msgid "Book now" -msgstr "" +msgstr "Elo reservéieren" #: pretix/presale/templates/pretixpresale/fragment_calendar.html:104 #: pretix/presale/templates/pretixpresale/fragment_day_calendar.html:110 @@ -31640,7 +31701,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/fragment_week_calendar.html:73 #: pretix/presale/views/widget.py:460 msgid "Fully booked" -msgstr "" +msgstr "Ausgebucht" #: pretix/presale/templates/pretixpresale/fragment_calendar.html:114 #, python-format @@ -31649,24 +31710,28 @@ msgid "" " from %(start_date)s\n" " " msgstr "" +"\n" +" vun %(start_date)s " +"un\n" +" " #: pretix/presale/templates/pretixpresale/fragment_calendar_nav.html:5 msgid "Event overview by month, week, etc." -msgstr "" +msgstr "Iwwersiicht vun den Evenementer no Mount, Woch, asw." #: pretix/presale/templates/pretixpresale/fragment_calendar_nav.html:26 msgid "iCal" -msgstr "" +msgstr "iCal" #: pretix/presale/templates/pretixpresale/fragment_day_calendar.html:24 msgctxt "day calendar" msgid "Single events" -msgstr "" +msgstr "Eenzel Evenementer" #: pretix/presale/templates/pretixpresale/fragment_day_calendar.html:78 msgctxt "timerange" msgid "to" -msgstr "" +msgstr "bis" #: pretix/presale/templates/pretixpresale/fragment_day_calendar.html:119 #, python-format @@ -31675,53 +31740,58 @@ msgid "" " from %(start_date)s\n" " " msgstr "" +"\n" +" vun %(start_date)s un\n" +" " #: pretix/presale/templates/pretixpresale/fragment_event_list_status.html:51 msgid "Not yet on sale" -msgstr "" +msgstr "Nach net am Verkaf" #: pretix/presale/templates/pretixpresale/fragment_event_list_status.html:56 #, python-format msgid "Sale starts %(date)s" -msgstr "" +msgstr "Verkaf fänkt den %(date)s un" #: pretix/presale/templates/pretixpresale/fragment_login_status.html:5 msgid "customer account" -msgstr "" +msgstr "Clientskont" #: pretix/presale/templates/pretixpresale/fragment_login_status.html:8 #: pretix/presale/templates/pretixpresale/fragment_login_status.html:9 msgid "View customer account" -msgstr "" +msgstr "Clientskont kucken" #: pretix/presale/templates/pretixpresale/fragment_modals.html:18 msgid "We've started the requested process in a new window." -msgstr "" +msgstr "Mir hunn den ugefrote Prozess an enger neier Fënster gestart." #: pretix/presale/templates/pretixpresale/fragment_modals.html:21 msgid "If you do not see the new window, we can help you launch it again." msgstr "" +"Falls Dir d'Fënster net gesitt, kënne mir Iech hëllefen se nei opzemaachen." #: pretix/presale/templates/pretixpresale/fragment_modals.html:26 msgid "Open window again" -msgstr "" +msgstr "Fënster nei opmaachen" #: pretix/presale/templates/pretixpresale/fragment_modals.html:30 msgid "" "Once the process in the new window has been completed, you can continue here." msgstr "" +"Wann de Prozess an der neier Fënster fäerdeg ass, kënnt Dir hei weiderfueren." #: pretix/presale/templates/pretixpresale/fragment_modals.html:62 msgid "Close" -msgstr "" +msgstr "Zoumaachen" #: pretix/presale/templates/pretixpresale/fragment_modals.html:83 msgid "Adjust settings in detail" -msgstr "" +msgstr "Astellungen am Detail ajustéieren" #: pretix/presale/templates/pretixpresale/fragment_modals.html:88 msgid "Required cookies" -msgstr "" +msgstr "Erfuerderlech Cookien" #: pretix/presale/templates/pretixpresale/fragment_modals.html:92 msgid "" @@ -32042,7 +32112,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/postmessage.html:21 #: pretix/presale/templates/pretixpresale/waiting.html:22 msgid "We are processing your request …" -msgstr "" +msgstr "Mir verschaffen Är Ufro…" #: pretix/presale/utils.py:271 pretix/presale/utils.py:417 #: pretix/presale/utils.py:418 @@ -32233,52 +32303,61 @@ msgstr "" #: pretix/presale/views/order.py:1059 msgid "Canceled by customer" -msgstr "" +msgstr "Vum Client annuléiert" #: pretix/presale/views/order.py:1070 msgid "The cancellation has been requested." -msgstr "" +msgstr "D'Annulatioun gouf ugefrot." #: pretix/presale/views/order.py:1123 msgid "Ticket download is not (yet) enabled for this order." -msgstr "" +msgstr "Den Download vum Ticket ass fir dës Bestellung (nach) net disponibel." #: pretix/presale/views/order.py:1132 msgid "Please click the link we sent you via email to download your tickets." msgstr "" +"Klickt wgl. op de Link, dee mir Iech per E-Mail geschéckt hunn, fir Är " +"Ticketen erofzelueden." #: pretix/presale/views/order.py:1619 #, python-brace-format msgid "" "The order has been changed. You can now proceed by paying the open amount of " "{amount}." -msgstr "" +msgstr "D'Bestellung gouf geännert. Dir kënnt elo de Montant {amount} bezuelen." #: pretix/presale/views/order.py:1631 msgid "You did not make any changes." -msgstr "" +msgstr "Dir hutt keng Ännerungen gemaach." #: pretix/presale/views/order.py:1655 msgid "You may not change your order in a way that reduces the total price." msgstr "" +"Dir dierft Är Bestellung net esou änneren datt de Gesamtpräis sech verännert." #: pretix/presale/views/order.py:1657 msgid "You may only change your order in a way that increases the total price." msgstr "" +"Dir dierft Är Bestellung nëmmen esou änneren datt de Gesamtpräis sech " +"vergréissert." #: pretix/presale/views/order.py:1659 msgid "You may not change your order in a way that changes the total price." msgstr "" +"Dir dierft Är Bestellung net esou änneren datt de Gesamtpräis sech verännert." #: pretix/presale/views/order.py:1661 msgid "You may not change your order in a way that would require a refund." msgstr "" +"Dir dierft Är Bestellung net esou änneren datt e Remboursement néideg wier." #: pretix/presale/views/order.py:1669 msgid "" "You may not change your order in a way that increases the total price since " "payments are no longer being accepted for this event." msgstr "" +"Dir dierft Är Bestellung net esou änneren datt de Gesamtpräis sech " +"vergréissert wëll keng Bezuelungen fir dësen Evenement méi akzeptéiert ginn." #: pretix/presale/views/order.py:1675 msgid "" @@ -32289,11 +32368,11 @@ msgstr "" #: pretix/presale/views/order.py:1691 pretix/presale/views/order.py:1722 msgid "You cannot change this order." -msgstr "" +msgstr "Dir kënnt dës Bestellung net änneren." #: pretix/presale/views/user.py:61 msgid "We had difficulties processing your input." -msgstr "" +msgstr "Mir hate Problemer Är Ufro ze verschaffen." #: pretix/presale/views/user.py:70 #, python-brace-format @@ -32307,6 +32386,8 @@ msgstr "" #: pretix/presale/views/user.py:91 msgid "We have trouble sending emails right now, please check back later." msgstr "" +"Mir hunn den Ament Problemer E-Mailen ze verschécken. Probéiert spéider nach " +"eemol." #: pretix/presale/views/user.py:94 msgid "" @@ -32322,13 +32403,15 @@ msgstr "" #: pretix/presale/views/waiting.py:137 pretix/presale/views/waiting.py:161 msgid "Waiting lists are disabled for this event." -msgstr "" +msgstr "Fir dësen Evenement si keng Waardelëschten aktivéiert." #: pretix/presale/views/waiting.py:173 msgid "" "You cannot add yourself to the waiting list as this product is currently " "available." msgstr "" +"Dir kënnt Iech net op d'Waardelëscht aschreiwen wëll dëse Produit aktuell " +"disponibel ass." #: pretix/presale/views/waiting.py:180 #, python-brace-format @@ -32336,26 +32419,30 @@ msgid "" "We've added you to the waiting list. We will send an email to {email} as " "soon as this product gets available again." msgstr "" +"Dir hutt Iech op d'Waardelëscht ageschriwwen. Mir schécken eng E-Mail op " +"{email} esou bal de Produit nees disponibel ass." #: pretix/presale/views/waiting.py:208 msgid "We could not find you on our waiting list." -msgstr "" +msgstr "Mir konnten Iech net op der Waardelëscht fannen." #: pretix/presale/views/waiting.py:212 msgid "" "Your waiting list spot is no longer valid or already used. There's nothing " "more to do here." msgstr "" +"Är Plaz op der Waardelëscht ass net méi gülteg oder gouf scho benotzt. Dir " +"kënnt hei näischt méi maachen." #: pretix/presale/views/waiting.py:222 msgid "" "Thank you very much! We will assign your spot on the waiting list to someone " "else." -msgstr "" +msgstr "Merci! Mir verdeelen Är Plaz op der Waardelëscht engem aneren." #: pretix/presale/views/widget.py:391 msgid "This ticket shop is currently disabled." -msgstr "" +msgstr "Dësen Ticket-Shop ass aktuell desaktivéiert." #: pretix/presale/views/widget.py:405 msgid "The selected date does not exist in this event series." @@ -32363,25 +32450,25 @@ msgstr "" #: pretix/presale/views/widget.py:412 msgid "The selected date is not available." -msgstr "" +msgstr "Den ausgewielten Datum ass net disponibel." #: pretix/presale/views/widget.py:476 #, python-format msgid "from %(start_date)s" -msgstr "" +msgstr "vun %(start_date)s un" #: pretix/settings.py:792 msgid "User profile only" -msgstr "" +msgstr "Nëmme Benotzerprofil" #: pretix/settings.py:793 msgid "Read access" -msgstr "" +msgstr "Zougrëff fir ze liesen" #: pretix/settings.py:794 msgid "Write access" -msgstr "" +msgstr "Zougrëff fir ze schreiwen" #: pretix/settings.py:805 msgid "Kosovo" -msgstr "" +msgstr "Kosovo" From 0ba5c0c143a1743fa9160aaf4c34f26c48174d9a Mon Sep 17 00:00:00 2001 From: CVZ-es Date: Wed, 22 Oct 2025 10:30:25 +0200 Subject: [PATCH 08/33] Translations: Update French Currently translated at 100.0% (6094 of 6094 strings) Translation: pretix/pretix Translate-URL: https://translate.pretix.eu/projects/pretix/pretix/fr/ powered by weblate --- src/pretix/locale/fr/LC_MESSAGES/django.po | 88 ++++++++++------------ 1 file changed, 40 insertions(+), 48 deletions(-) diff --git a/src/pretix/locale/fr/LC_MESSAGES/django.po b/src/pretix/locale/fr/LC_MESSAGES/django.po index 56b8fc9010..21374ab5a4 100644 --- a/src/pretix/locale/fr/LC_MESSAGES/django.po +++ b/src/pretix/locale/fr/LC_MESSAGES/django.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: 1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-21 07:26+0000\n" -"PO-Revision-Date: 2025-10-20 19:00+0000\n" +"PO-Revision-Date: 2025-10-22 16:00+0000\n" "Last-Translator: CVZ-es \n" "Language-Team: French \n" @@ -3760,12 +3760,10 @@ msgid "Remaining amount" msgstr "Montant restant" #: pretix/base/invoicing/pdf.py:930 -#, fuzzy, python-brace-format -#| msgctxt "invoice" -#| msgid "Event date: {date_range}" +#, python-brace-format msgctxt "invoice" msgid "Invoice period: {daterange}" -msgstr "Plage de dates de l'événement : {date_range}" +msgstr "Période de facturation : {daterange}" #: pretix/base/invoicing/pdf.py:961 msgctxt "invoice" @@ -5170,10 +5168,8 @@ msgid "Owned by ticket holder" msgstr "Propriété du détenteur du billet" #: pretix/base/models/giftcards.py:88 -#, fuzzy -#| msgid "View customer account" msgid "Owned by customer account" -msgstr "Voir le compte client" +msgstr "Propriété du compte client" #: pretix/base/models/giftcards.py:100 msgid "The gift card code may only contain letters, numbers, dots and dashes." @@ -10467,30 +10463,30 @@ msgid "" "Automatic based on ticket-specific validity, membership validity, event " "series date, or event date" msgstr "" +"Automatique en fonction de la validité spécifique du billet, de la validité " +"de l'adhésion, de la date de la série d'événements ou de la date de " +"l'événement" #: pretix/base/settings.py:1109 pretix/base/settings.py:1120 msgid "Automatic, but prefer invoice date over event date" msgstr "" +"Automatique, mais préférer la date de facturation à la date de l'événement" #: pretix/base/settings.py:1112 pretix/base/settings.py:1123 -#, fuzzy -#| msgctxt "invoice" -#| msgid "Invoice date" msgid "Invoice date" msgstr "Date de facturation" #: pretix/base/settings.py:1116 -#, fuzzy -#| msgctxt "subevent" -#| msgid "Date ordering" msgid "Date of service" -msgstr "Date de commande" +msgstr "Date de la prestation" #: pretix/base/settings.py:1125 msgid "" "This controls what dates are shown on the invoice, but is especially " "important for electronic invoicing." msgstr "" +"Ce paramètre contrôle les dates qui apparaissent sur la facture, mais il est " +"particulièrement important pour la facturation électronique." #: pretix/base/settings.py:1136 msgid "Automatically cancel and reissue invoice on address changes" @@ -13324,14 +13320,13 @@ msgid "Contact:" msgstr "Contact :" #: pretix/base/templates/pretixbase/email/order_details.html:54 -#, fuzzy, python-format -#| msgid "" -#| "You are receiving this email because you placed an order for {event}." +#, python-format msgid "" "You are receiving this email because you placed an order for " "%(event)s." msgstr "" -"Vous recevez cet e-mail parce que vous avez passé une commande pour {event}." +"Vous recevez cet e-mail car vous avez passé une commande pour " +"%(event)s." #: pretix/base/templates/pretixbase/email/order_details.html:93 #: pretix/control/templates/pretixcontrol/organizers/customer.html:23 @@ -15692,10 +15687,10 @@ msgid "Create orders as test mode orders" msgstr "Créer des commandes en tant que commandes en mode test" #: pretix/control/forms/modelimport.py:102 -#, fuzzy -#| msgid "Only orders created in test mode can be deleted." msgid "Orders not created in test mode cannot be deleted again after import." -msgstr "Seules les commandes créées en mode test peuvent être supprimées." +msgstr "" +"Les commandes qui n'ont pas été créées en mode test ne peuvent pas être " +"supprimées après leur importation." #: pretix/control/forms/modelimport.py:123 msgid "A grouping cannot be specified for this import mode." @@ -17147,10 +17142,8 @@ msgid "The invoice has been generated." msgstr "La facture a été générée." #: pretix/control/logdisplay.py:525 -#, fuzzy -#| msgid "The invoice has been generated." msgid "The invoice could not be generated." -msgstr "La facture a été générée." +msgstr "La facture n'a pas pu être générée." #: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 msgid "The invoice has been regenerated." @@ -18368,7 +18361,7 @@ msgstr "Problèmes de synchronisation des données" #: pretix/control/navigation.py:506 #: pretix/control/templates/pretixcontrol/organizers/properties.html:5 msgid "Event metadata" -msgstr "Métadonnées de l’événement" +msgstr "Métadonnées de l'événement" #: pretix/control/navigation.py:527 #: pretix/control/templates/pretixcontrol/organizers/webhooks.html:6 @@ -20392,6 +20385,10 @@ msgid "" "be shown. Therefore, we recommend that you set the date of service to a " "different option." msgstr "" +"Vous avez configuré votre boutique de manière à ce qu'elle ne soit pas " +"considérée comme un événement et que la date de l'événement ne soit pas " +"affichée. Nous vous recommandons donc de définir la date du service sur une " +"autre option." #: pretix/control/templates/pretixcontrol/event/invoicing.html:40 msgid "Address form" @@ -21726,13 +21723,12 @@ msgstr "Information" #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:15 msgid "The following gift cards are available in your customer account:" msgstr "" +"Les cartes cadeaux suivantes sont disponibles dans votre compte client :" #: pretix/control/templates/pretixcontrol/giftcards/checkout.html:25 #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:29 -#, fuzzy -#| msgid "Issued gift cards" msgid "Use gift card" -msgstr "Cartes-cadeaux émises" +msgstr "Utiliser une carte cadeau" #: pretix/control/templates/pretixcontrol/giftcards/checkout.html:27 #: pretix/control/templates/pretixcontrol/pdf/index.html:156 @@ -34357,12 +34353,11 @@ msgstr "Veuillez choisir comment vous voulez payer le solde restant :" #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:110 #: pretix/presale/templates/pretixpresale/event/order_pay_change.html:45 -#, fuzzy, python-format -#| msgid "%(num)s available" +#, python-format msgid "(%(count)s available)" msgid_plural "(%(count)s available)" -msgstr[0] "%(num)s disponible" -msgstr[1] "%(num)s disponible" +msgstr[0] "(%(count)s disponible)" +msgstr[1] "(%(count)s disponibles)" #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:129 msgid "This sales channel does not provide support for test mode." @@ -36341,40 +36336,36 @@ msgid "customer account information" msgstr "informations sur le compte du client" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:28 -#, fuzzy, python-format -#| msgid "Denied scan: %(date)s" +#, python-format msgid "Issued on %(date)s" -msgstr "Scan refusé : %(date)s" +msgstr "Émise le %(date)s" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:38 -#, fuzzy, python-format -#| msgid "Expired since" +#, python-format msgid "Expired since %(date)s" -msgstr "Expiré depuis" +msgstr "Expiré depuis le %(date)s" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:46 -#, fuzzy, python-format -#| msgid "Valid until %(datetime)s" +#, python-format msgid "Valid until %(date)s" -msgstr "Valable jusqu’au %(datetime)s" +msgstr "Valable jusqu'au %(date)s" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:66 -#, fuzzy -#| msgid "Remaining balance" msgid "Remaining value:" -msgstr "Solde restant" +msgstr "Valeur restante :" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:76 -#, fuzzy -#| msgid "You don’t have any orders in your account yet." msgid "You don’t have any gift cards in your account currently." -msgstr "Vous n'avez pas encore réalisé de commande avec votre compte." +msgstr "Vous n'avez actuellement aucune carte cadeau dans votre compte." #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:77 msgid "" "Currently, only gift cards resulting from refunds show up here, any " "purchased gift cards show up under the orders tab." msgstr "" +"Actuellement, seules les cartes-cadeaux résultant de remboursements " +"apparaissent ici. Les cartes-cadeaux achetées apparaissent sous l'onglet « " +"Commandes »." #: pretix/presale/templates/pretixpresale/organizers/customer_info.html:6 msgid "Account information" @@ -36723,6 +36714,7 @@ msgstr "Une facture a été générée." #: pretix/presale/views/order.py:751 pretix/presale/views/order.py:831 msgid "Invoice generation has failed, please reach out to the organizer." msgstr "" +"La génération de la facture a échoué, veuillez contacter l'organisateur." #: pretix/presale/views/order.py:866 pretix/presale/views/order.py:938 msgid "You cannot modify this order" From ff42c1fe5cdb681e3327b7a3198673f4d5bc2eae Mon Sep 17 00:00:00 2001 From: CVZ-es Date: Wed, 22 Oct 2025 10:23:57 +0200 Subject: [PATCH 09/33] Translations: Update French Currently translated at 100.0% (254 of 254 strings) Translation: pretix/pretix (JavaScript parts) Translate-URL: https://translate.pretix.eu/projects/pretix/pretix-js/fr/ powered by weblate --- src/pretix/locale/fr/LC_MESSAGES/djangojs.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pretix/locale/fr/LC_MESSAGES/djangojs.po b/src/pretix/locale/fr/LC_MESSAGES/djangojs.po index 6aeaba1bd9..94fba01829 100644 --- a/src/pretix/locale/fr/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/fr/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: French\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-21 07:27+0000\n" -"PO-Revision-Date: 2025-08-28 23:00+0000\n" +"PO-Revision-Date: 2025-10-22 16:00+0000\n" "Last-Translator: CVZ-es \n" "Language-Team: French \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.13\n" +"X-Generator: Weblate 5.13.3\n" #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:56 #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:62 @@ -565,11 +565,11 @@ msgstr "absent" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:289 msgid "Error: Product not found!" -msgstr "" +msgstr "Erreur : produit introuvable !" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:296 msgid "Error: Variation not found!" -msgstr "" +msgstr "Erreur : Variation introuvable !" #: pretix/static/pretixcontrol/js/ui/editor.js:171 msgid "Check-in QR" From bdd47ee32b65f09c9c99293daeaec657c464bf41 Mon Sep 17 00:00:00 2001 From: CVZ-es Date: Wed, 22 Oct 2025 10:15:30 +0200 Subject: [PATCH 10/33] Translations: Update Spanish Currently translated at 100.0% (6094 of 6094 strings) Translation: pretix/pretix Translate-URL: https://translate.pretix.eu/projects/pretix/pretix/es/ powered by weblate --- src/pretix/locale/es/LC_MESSAGES/django.po | 88 ++++++++++------------ 1 file changed, 39 insertions(+), 49 deletions(-) diff --git a/src/pretix/locale/es/LC_MESSAGES/django.po b/src/pretix/locale/es/LC_MESSAGES/django.po index c14f3f2b71..8d7cb528ac 100644 --- a/src/pretix/locale/es/LC_MESSAGES/django.po +++ b/src/pretix/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-21 07:26+0000\n" -"PO-Revision-Date: 2025-10-20 19:00+0000\n" +"PO-Revision-Date: 2025-10-22 16:00+0000\n" "Last-Translator: CVZ-es \n" "Language-Team: Spanish \n" @@ -3757,12 +3757,10 @@ msgid "Remaining amount" msgstr "Importe restante" #: pretix/base/invoicing/pdf.py:930 -#, fuzzy, python-brace-format -#| msgctxt "invoice" -#| msgid "Event date: {date_range}" +#, python-brace-format msgctxt "invoice" msgid "Invoice period: {daterange}" -msgstr "Fecha del evento: {date_range}" +msgstr "Período de facturación: {daterange}" #: pretix/base/invoicing/pdf.py:961 msgctxt "invoice" @@ -5154,10 +5152,8 @@ msgid "Owned by ticket holder" msgstr "Propietario del titular del billete" #: pretix/base/models/giftcards.py:88 -#, fuzzy -#| msgid "View customer account" msgid "Owned by customer account" -msgstr "Ver cuenta de usuario" +msgstr "Propiedad de la cuenta del cliente" #: pretix/base/models/giftcards.py:100 msgid "The gift card code may only contain letters, numbers, dots and dashes." @@ -10394,30 +10390,29 @@ msgid "" "Automatic based on ticket-specific validity, membership validity, event " "series date, or event date" msgstr "" +"Automático, según la validez específica del billete, la validez de la " +"membresía, la fecha de la serie de eventos o la fecha del evento" #: pretix/base/settings.py:1109 pretix/base/settings.py:1120 msgid "Automatic, but prefer invoice date over event date" msgstr "" +"Automático, pero se prefiere la fecha de la factura sobre la fecha del evento" #: pretix/base/settings.py:1112 pretix/base/settings.py:1123 -#, fuzzy -#| msgctxt "invoice" -#| msgid "Invoice date" msgid "Invoice date" msgstr "Fecha de la factura" #: pretix/base/settings.py:1116 -#, fuzzy -#| msgctxt "subevent" -#| msgid "Date ordering" msgid "Date of service" -msgstr "Fecha de pedido" +msgstr "Fecha de servicio" #: pretix/base/settings.py:1125 msgid "" "This controls what dates are shown on the invoice, but is especially " "important for electronic invoicing." msgstr "" +"Esto controla qué fechas se muestran en la factura, pero es especialmente " +"importante para la facturación electrónica." #: pretix/base/settings.py:1136 msgid "Automatically cancel and reissue invoice on address changes" @@ -13201,15 +13196,13 @@ msgid "Contact:" msgstr "Contacto:" #: pretix/base/templates/pretixbase/email/order_details.html:54 -#, fuzzy, python-format -#| msgid "" -#| "You are receiving this email because you placed an order for {event}." +#, python-format msgid "" "You are receiving this email because you placed an order for " "%(event)s." msgstr "" -"Usted está recibiendo este correo electrónico porque realizó un pedido para " -"{event}." +"Está recibiendo este correo electrónico porque realizó un pedido para " +"%(event)s." #: pretix/base/templates/pretixbase/email/order_details.html:93 #: pretix/control/templates/pretixcontrol/organizers/customer.html:23 @@ -15294,7 +15287,7 @@ msgstr "Tamaño" #: pretix/control/forms/item.py:455 msgid "Number of tickets" -msgstr "Número de entradas" +msgstr "Número de billetes" #: pretix/control/forms/item.py:587 msgid "Quota name is required." @@ -15564,10 +15557,10 @@ msgid "Create orders as test mode orders" msgstr "Crear los pedidos en modo de prueba" #: pretix/control/forms/modelimport.py:102 -#, fuzzy -#| msgid "Only orders created in test mode can be deleted." msgid "Orders not created in test mode cannot be deleted again after import." -msgstr "Solamente los pedidos creados en modo de prueba pueden ser eliminados." +msgstr "" +"Los pedidos que no se hayan creado en modo de prueba no se pueden volver a " +"eliminar después de la importación." #: pretix/control/forms/modelimport.py:123 msgid "A grouping cannot be specified for this import mode." @@ -17011,10 +17004,8 @@ msgid "The invoice has been generated." msgstr "Se ha generado la factura." #: pretix/control/logdisplay.py:525 -#, fuzzy -#| msgid "The invoice has been generated." msgid "The invoice could not be generated." -msgstr "Se ha generado la factura." +msgstr "No se ha podido generar la factura." #: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 msgid "The invoice has been regenerated." @@ -20249,6 +20240,9 @@ msgid "" "be shown. Therefore, we recommend that you set the date of service to a " "different option." msgstr "" +"Ha configurado su tienda para que no sea un evento y que la fecha del evento " +"no se muestre. Por lo tanto, le recomendamos que establezca la fecha del " +"servicio en otra opción." #: pretix/control/templates/pretixcontrol/event/invoicing.html:40 msgid "Address form" @@ -21576,13 +21570,12 @@ msgstr "Información" #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:15 msgid "The following gift cards are available in your customer account:" msgstr "" +"Las siguientes tarjetas de regalo están disponibles en su cuenta de cliente:" #: pretix/control/templates/pretixcontrol/giftcards/checkout.html:25 #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:29 -#, fuzzy -#| msgid "Issued gift cards" msgid "Use gift card" -msgstr "Tarjetas regalo emitidas" +msgstr "Canjear tarjeta de regalo" #: pretix/control/templates/pretixcontrol/giftcards/checkout.html:27 #: pretix/control/templates/pretixcontrol/pdf/index.html:156 @@ -34090,12 +34083,11 @@ msgstr "Seleccione cómo desea pagar el saldo restante:" #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:110 #: pretix/presale/templates/pretixpresale/event/order_pay_change.html:45 -#, fuzzy, python-format -#| msgid "%(num)s available" +#, python-format msgid "(%(count)s available)" msgid_plural "(%(count)s available)" -msgstr[0] "%(num)s disponible" -msgstr[1] "%(num)s disponible" +msgstr[0] "(%(count)s disponible)" +msgstr[1] "(%(count)s disponibles)" #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:129 msgid "This sales channel does not provide support for test mode." @@ -36027,40 +36019,36 @@ msgid "customer account information" msgstr "información sobre la cuenta de cliente" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:28 -#, fuzzy, python-format -#| msgid "Denied scan: %(date)s" +#, python-format msgid "Issued on %(date)s" -msgstr "Escaneo denegado: %(date)s" +msgstr "Emitido el %(date)s" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:38 -#, fuzzy, python-format -#| msgid "Expired since" +#, python-format msgid "Expired since %(date)s" -msgstr "Caducado desde" +msgstr "Vencido desde el %(date)s" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:46 -#, fuzzy, python-format -#| msgid "Valid until %(datetime)s" +#, python-format msgid "Valid until %(date)s" -msgstr "Válido hasta %(datetime)s" +msgstr "Válido hasta el %(date)s" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:66 -#, fuzzy -#| msgid "Remaining balance" msgid "Remaining value:" -msgstr "Saldo pendiente" +msgstr "Valor restante:" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:76 -#, fuzzy -#| msgid "You don’t have any orders in your account yet." msgid "You don’t have any gift cards in your account currently." -msgstr "Aún no tiene ningún pedido en su cuenta." +msgstr "Actualmente, no tiene ninguna tarjeta de regalo en su cuenta." #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:77 msgid "" "Currently, only gift cards resulting from refunds show up here, any " "purchased gift cards show up under the orders tab." msgstr "" +"Actualmente, aquí solo se muestran las tarjetas de regalo resultantes de " +"reembolsos; las tarjetas de regalo compradas aparecen en la pestaña de " +"pedidos." #: pretix/presale/templates/pretixpresale/organizers/customer_info.html:6 msgid "Account information" @@ -36408,6 +36396,8 @@ msgstr "Se ha generado una factura." #: pretix/presale/views/order.py:751 pretix/presale/views/order.py:831 msgid "Invoice generation has failed, please reach out to the organizer." msgstr "" +"La generación de la factura ha fallado; por favor, póngase en contacto con " +"el organizador." #: pretix/presale/views/order.py:866 pretix/presale/views/order.py:938 msgid "You cannot modify this order" From 04075cfc45693510957eb3cfc6240d76afc88f4d Mon Sep 17 00:00:00 2001 From: CVZ-es Date: Wed, 22 Oct 2025 10:03:06 +0200 Subject: [PATCH 11/33] Translations: Update Spanish Currently translated at 100.0% (254 of 254 strings) Translation: pretix/pretix (JavaScript parts) Translate-URL: https://translate.pretix.eu/projects/pretix/pretix-js/es/ powered by weblate --- src/pretix/locale/es/LC_MESSAGES/djangojs.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pretix/locale/es/LC_MESSAGES/djangojs.po b/src/pretix/locale/es/LC_MESSAGES/djangojs.po index 13ad2a92ee..704116b9a2 100644 --- a/src/pretix/locale/es/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/es/LC_MESSAGES/djangojs.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-21 07:27+0000\n" -"PO-Revision-Date: 2025-05-30 11:15+0000\n" +"PO-Revision-Date: 2025-10-22 16:00+0000\n" "Last-Translator: CVZ-es \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.11.4\n" +"X-Generator: Weblate 5.13.3\n" #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:56 #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:62 @@ -564,11 +564,11 @@ msgstr "ausente" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:289 msgid "Error: Product not found!" -msgstr "" +msgstr "Error: ¡Producto no encontrado!" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:296 msgid "Error: Variation not found!" -msgstr "" +msgstr "Error: ¡Variación no encontrada!" #: pretix/static/pretixcontrol/js/ui/editor.js:171 msgid "Check-in QR" From 3746077881048a8cc1a6eb24c578c26974688e2e Mon Sep 17 00:00:00 2001 From: Jan Van Haver Date: Sun, 26 Oct 2025 10:32:29 +0100 Subject: [PATCH 12/33] Translations: Update Dutch Currently translated at 97.6% (5952 of 6094 strings) Translation: pretix/pretix Translate-URL: https://translate.pretix.eu/projects/pretix/pretix/nl/ powered by weblate --- src/pretix/locale/nl/LC_MESSAGES/django.po | 31 +++++++++++----------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/pretix/locale/nl/LC_MESSAGES/django.po b/src/pretix/locale/nl/LC_MESSAGES/django.po index 463da1a6f0..97e0af6bef 100644 --- a/src/pretix/locale/nl/LC_MESSAGES/django.po +++ b/src/pretix/locale/nl/LC_MESSAGES/django.po @@ -7,16 +7,16 @@ msgstr "" "Project-Id-Version: 1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-21 07:26+0000\n" -"PO-Revision-Date: 2025-10-13 06:00+0000\n" -"Last-Translator: Tim Maurizio Dullaart \n" -"Language-Team: Dutch \n" +"PO-Revision-Date: 2025-10-26 18:00+0000\n" +"Last-Translator: Jan Van Haver \n" +"Language-Team: Dutch " +"\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.13.3\n" +"X-Generator: Weblate 5.14\n" #: pretix/_base_settings.py:87 msgid "English" @@ -3737,12 +3737,10 @@ msgid "Remaining amount" msgstr "Openstaand bedrag" #: pretix/base/invoicing/pdf.py:930 -#, fuzzy, python-brace-format -#| msgctxt "invoice" -#| msgid "Event date: {date_range}" +#, python-brace-format msgctxt "invoice" msgid "Invoice period: {daterange}" -msgstr "Evenementdatum: {date_range}" +msgstr "Facturatieperiode: {daterange}" #: pretix/base/invoicing/pdf.py:961 msgctxt "invoice" @@ -9138,6 +9136,8 @@ msgid "" "The grouping \"%(value)s\" occurs on non-consecutive lines (seen again on " "line %(row)s)." msgstr "" +"De groepering \"%(value)s\" komt voor op niet opeenvolgende regels " +"(is ook het geval op regel %(row)s)." #: pretix/base/services/modelimport.py:154 #, python-brace-format @@ -9145,6 +9145,8 @@ msgid "" "Inconsistent data in row {row}: Column {col} contains value \"{val_line}\", " "but for this order, the value has already been set to \"{val_order}\"." msgstr "" +"Inconsistente gegevens in rij {row}: Kolom {col} bevat waarde \"{val_line}\"" +", maar voor deze bestelling is de waarde al ingesteld op \"{val_order}\"." #: pretix/base/services/modelimport.py:168 #: pretix/base/services/modelimport.py:289 @@ -10287,17 +10289,13 @@ msgstr "Toon de startdatum van de voorverkoop voor de voorverkoop is begonnen." #: pretix/base/settings.py:1037 pretix/base/settings.py:1045 #: pretix/base/settings.py:1059 pretix/base/settings.py:1068 -#, fuzzy -#| msgid "Default tax code" msgid "Use default tax rate" -msgstr "Standaard belastingstarief" +msgstr "Gebruik het standaard belastingstarief" #: pretix/base/settings.py:1038 pretix/base/settings.py:1046 #: pretix/base/settings.py:1057 pretix/base/settings.py:1066 -#, fuzzy -#| msgid "Charge updated." msgid "Charge no taxes" -msgstr "Transactie bijgewerkt." +msgstr "Reken geen belasting aan" #: pretix/base/settings.py:1042 #, fuzzy @@ -10360,10 +10358,13 @@ msgid "" "Automatic based on ticket-specific validity, membership validity, event " "series date, or event date" msgstr "" +"Automatisch op basis van ticket-specifieke geldigheid, geldigheid " +"lidmaatschap, datum reeks evenement of datum evenement" #: pretix/base/settings.py:1109 pretix/base/settings.py:1120 msgid "Automatic, but prefer invoice date over event date" msgstr "" +"Automatisch, maar geef de voorkeur aan factuurdatum boven evenementdatum" #: pretix/base/settings.py:1112 pretix/base/settings.py:1123 #, fuzzy From ca1efc0a58f3b15a01b990154b119ddc3ea7df4b Mon Sep 17 00:00:00 2001 From: Yasunobu YesNo Kawaguchi Date: Mon, 27 Oct 2025 04:21:37 +0100 Subject: [PATCH 13/33] Translations: Update Japanese Currently translated at 100.0% (6094 of 6094 strings) Translation: pretix/pretix Translate-URL: https://translate.pretix.eu/projects/pretix/pretix/ja/ powered by weblate --- src/pretix/locale/ja/LC_MESSAGES/django.po | 95 +++++++++------------- 1 file changed, 37 insertions(+), 58 deletions(-) diff --git a/src/pretix/locale/ja/LC_MESSAGES/django.po b/src/pretix/locale/ja/LC_MESSAGES/django.po index d5ddfe911c..c54d1c29b0 100644 --- a/src/pretix/locale/ja/LC_MESSAGES/django.po +++ b/src/pretix/locale/ja/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-21 07:26+0000\n" -"PO-Revision-Date: 2025-10-03 20:00+0000\n" +"PO-Revision-Date: 2025-10-27 12:00+0000\n" "Last-Translator: Yasunobu YesNo Kawaguchi \n" "Language-Team: Japanese \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.13.3\n" +"X-Generator: Weblate 5.14\n" #: pretix/_base_settings.py:87 msgid "English" @@ -3723,12 +3723,10 @@ msgid "Remaining amount" msgstr "残高" #: pretix/base/invoicing/pdf.py:930 -#, fuzzy, python-brace-format -#| msgctxt "invoice" -#| msgid "Event date: {date_range}" +#, python-brace-format msgctxt "invoice" msgid "Invoice period: {daterange}" -msgstr "イベントの日程: {date_range}" +msgstr "請求期間: {daterange}" #: pretix/base/invoicing/pdf.py:961 msgctxt "invoice" @@ -5091,10 +5089,8 @@ msgid "Owned by ticket holder" msgstr "チケット保持者が所有" #: pretix/base/models/giftcards.py:88 -#, fuzzy -#| msgid "View customer account" msgid "Owned by customer account" -msgstr "顧客アカウントを表示します" +msgstr "顧客アカウントが保持" #: pretix/base/models/giftcards.py:100 msgid "The gift card code may only contain letters, numbers, dots and dashes." @@ -7788,11 +7784,11 @@ msgid "" "12345 Any City\n" "Atlantis" msgstr "" -"John Doe\n" -"Sample company\n" -"Sesame Street 42\n" -"12345 Any City\n" -"Atlantis" +"山田 太郎\n" +"サンプル株式会社\n" +"丸の内1-2-3\n" +"100-0001 東京都千代田区\n" +"日本" #: pretix/base/pdf.py:198 msgid "Attendee street" @@ -10122,31 +10118,26 @@ msgstr "無料の注文については、請求書は自動的に生成されま msgid "" "Automatic based on ticket-specific validity, membership validity, event " "series date, or event date" -msgstr "" +msgstr "チケット固有の有効期限、会員資格の有効期限、イベントシリーズの日付、またはイ" +"ベントの日付に基づいて自動設定" #: pretix/base/settings.py:1109 pretix/base/settings.py:1120 msgid "Automatic, but prefer invoice date over event date" -msgstr "" +msgstr "自動、ただしイベントの日付より請求書の日付を優先" #: pretix/base/settings.py:1112 pretix/base/settings.py:1123 -#, fuzzy -#| msgctxt "invoice" -#| msgid "Invoice date" msgid "Invoice date" msgstr "請求日" #: pretix/base/settings.py:1116 -#, fuzzy -#| msgctxt "subevent" -#| msgid "Date ordering" msgid "Date of service" -msgstr "日付の順序付け" +msgstr "サービス提供日" #: pretix/base/settings.py:1125 msgid "" "This controls what dates are shown on the invoice, but is especially " "important for electronic invoicing." -msgstr "" +msgstr "これは請求書に表示される日付を制御しますが、特に電子請求において重要です。" #: pretix/base/settings.py:1136 msgid "Automatically cancel and reissue invoice on address changes" @@ -12826,13 +12817,11 @@ msgid "Contact:" msgstr "連絡先:" #: pretix/base/templates/pretixbase/email/order_details.html:54 -#, fuzzy, python-format -#| msgid "" -#| "You are receiving this email because you placed an order for {event}." +#, python-format msgid "" "You are receiving this email because you placed an order for " "%(event)s." -msgstr "「{event}」の注文をいただいたため、このメールをお送りしています。" +msgstr "%(event)sの注文をされたため、このメールを受信しています。" #: pretix/base/templates/pretixbase/email/order_details.html:93 #: pretix/control/templates/pretixcontrol/organizers/customer.html:23 @@ -15144,10 +15133,9 @@ msgid "Create orders as test mode orders" msgstr "テストモードの注文を作成" #: pretix/control/forms/modelimport.py:102 -#, fuzzy -#| msgid "Only orders created in test mode can be deleted." msgid "Orders not created in test mode cannot be deleted again after import." -msgstr "テストモードで作成された注文のみ削除できます。" +msgstr "テストモードで作成されていない注文は、インポート後に削除することはできません" +"。" #: pretix/control/forms/modelimport.py:123 msgid "A grouping cannot be specified for this import mode." @@ -16546,10 +16534,8 @@ msgid "The invoice has been generated." msgstr "請求書が生成されました。" #: pretix/control/logdisplay.py:525 -#, fuzzy -#| msgid "The invoice has been generated." msgid "The invoice could not be generated." -msgstr "請求書が生成されました。" +msgstr "請求書を生成できませんでした。" #: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 msgid "The invoice has been regenerated." @@ -19702,6 +19688,8 @@ msgid "" "be shown. Therefore, we recommend that you set the date of service to a " "different option." msgstr "" +"ショップがイベントではなく、イベントの日付を表示しないように設定されています" +"。そのため、サービス提供日を別のオプションに設定することをお勧めします。" #: pretix/control/templates/pretixcontrol/event/invoicing.html:40 msgid "Address form" @@ -20980,14 +20968,12 @@ msgstr "情報" #: pretix/control/templates/pretixcontrol/giftcards/checkout.html:10 #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:15 msgid "The following gift cards are available in your customer account:" -msgstr "" +msgstr "顧客アカウントで以下のギフトカードが利用可能です:" #: pretix/control/templates/pretixcontrol/giftcards/checkout.html:25 #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:29 -#, fuzzy -#| msgid "Issued gift cards" msgid "Use gift card" -msgstr "発行されたギフトカード" +msgstr "ギフトカードを使用" #: pretix/control/templates/pretixcontrol/giftcards/checkout.html:27 #: pretix/control/templates/pretixcontrol/pdf/index.html:156 @@ -33173,11 +33159,10 @@ msgstr "残額を支払う方法を選択:" #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:110 #: pretix/presale/templates/pretixpresale/event/order_pay_change.html:45 -#, fuzzy, python-format -#| msgid "%(num)s available" +#, python-format msgid "(%(count)s available)" msgid_plural "(%(count)s available)" -msgstr[0] "%(num)s 提供可能" +msgstr[0] "(%(count)s枚利用可能)" #: pretix/presale/templates/pretixpresale/event/checkout_payment.html:129 msgid "This sales channel does not provide support for test mode." @@ -35067,40 +35052,34 @@ msgid "customer account information" msgstr "国" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:28 -#, fuzzy, python-format -#| msgid "Denied scan: %(date)s" +#, python-format msgid "Issued on %(date)s" -msgstr "スキャンは拒否されました: %(date)s" +msgstr "発行日: %(date)s" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:38 -#, fuzzy, python-format -#| msgid "Expired since" +#, python-format msgid "Expired since %(date)s" -msgstr "期限切れです" +msgstr "%(date)s以降失効" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:46 -#, fuzzy, python-format -#| msgid "Valid until %(datetime)s" +#, python-format msgid "Valid until %(date)s" -msgstr "%(datetime)s まで有効" +msgstr "%(date)s以降期限切れ" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:66 -#, fuzzy -#| msgid "Remaining balance" msgid "Remaining value:" -msgstr "残高" +msgstr "残高:" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:76 -#, fuzzy -#| msgid "You don’t have any orders in your account yet." msgid "You don’t have any gift cards in your account currently." -msgstr "まだアカウントに注文はありません。" +msgstr "現在、アカウントにギフトカードはありません。" #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:77 msgid "" "Currently, only gift cards resulting from refunds show up here, any " "purchased gift cards show up under the orders tab." -msgstr "" +msgstr "現在、ここには払い戻しによるギフトカードのみが表示されます。購入したギフトカ" +"ードは注文タブに表示されます。" #: pretix/presale/templates/pretixpresale/organizers/customer_info.html:6 msgid "Account information" @@ -35436,7 +35415,7 @@ msgstr "請求書が生成されました。" #: pretix/presale/views/order.py:751 pretix/presale/views/order.py:831 msgid "Invoice generation has failed, please reach out to the organizer." -msgstr "" +msgstr "請求書の生成に失敗しました。主催者にお問い合わせください。" #: pretix/presale/views/order.py:866 pretix/presale/views/order.py:938 msgid "You cannot modify this order" From d54807073a757cefa278a0299a1a7c0eda33735b Mon Sep 17 00:00:00 2001 From: Hijiri Umemoto Date: Mon, 27 Oct 2025 04:43:54 +0100 Subject: [PATCH 14/33] Translations: Update Japanese Currently translated at 100.0% (254 of 254 strings) Translation: pretix/pretix (JavaScript parts) Translate-URL: https://translate.pretix.eu/projects/pretix/pretix-js/ja/ powered by weblate --- src/pretix/locale/ja/LC_MESSAGES/djangojs.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pretix/locale/ja/LC_MESSAGES/djangojs.po b/src/pretix/locale/ja/LC_MESSAGES/djangojs.po index df17592d0c..e56e320a43 100644 --- a/src/pretix/locale/ja/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/ja/LC_MESSAGES/djangojs.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-21 07:27+0000\n" -"PO-Revision-Date: 2025-09-25 03:00+0000\n" +"PO-Revision-Date: 2025-10-27 12:00+0000\n" "Last-Translator: Hijiri Umemoto \n" -"Language-Team: Japanese \n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.13.3\n" +"X-Generator: Weblate 5.14\n" #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:56 #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:62 @@ -563,11 +563,11 @@ msgstr "欠席" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:289 msgid "Error: Product not found!" -msgstr "" +msgstr "エラー:製品が見つかりません!" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:296 msgid "Error: Variation not found!" -msgstr "" +msgstr "エラー:バリエーションが見つかりません!" #: pretix/static/pretixcontrol/js/ui/editor.js:171 msgid "Check-in QR" From 2d0b657d0f9c3816f431d2b2cbf2bd9a3fbf923c Mon Sep 17 00:00:00 2001 From: Sven Muhlen Date: Mon, 27 Oct 2025 15:26:37 +0100 Subject: [PATCH 15/33] Translations: Update Luxembourgish Currently translated at 100.0% (254 of 254 strings) Translation: pretix/pretix (JavaScript parts) Translate-URL: https://translate.pretix.eu/projects/pretix/pretix-js/lb/ powered by weblate --- src/pretix/locale/lb/LC_MESSAGES/djangojs.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pretix/locale/lb/LC_MESSAGES/djangojs.po b/src/pretix/locale/lb/LC_MESSAGES/djangojs.po index 5b1e3a5619..8749247ff9 100644 --- a/src/pretix/locale/lb/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/lb/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-21 07:27+0000\n" -"PO-Revision-Date: 2025-10-21 17:00+0000\n" +"PO-Revision-Date: 2025-10-27 21:00+0000\n" "Last-Translator: Sven Muhlen \n" "Language-Team: Luxembourgish \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.13.3\n" +"X-Generator: Weblate 5.14\n" #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:56 #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:62 @@ -275,7 +275,7 @@ msgstr "Sortie enregistréiert" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:56 msgid "Ticket already used" -msgstr "Ticket schonns benotzt" +msgstr "Ticket scho benotzt" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:57 msgid "Information required" @@ -287,7 +287,7 @@ msgstr "Onbekannten Ticket" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:59 msgid "Ticket type not allowed here" -msgstr "Ticket-Typ hei net erlaabt" +msgstr "Typ vum Ticket hei net erlabt" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:61 msgid "Entry not allowed" From b2aca033e0f23099841213b68cc14100cf5bac15 Mon Sep 17 00:00:00 2001 From: Sven Muhlen Date: Mon, 27 Oct 2025 15:42:06 +0100 Subject: [PATCH 16/33] Translations: Update Luxembourgish Currently translated at 20.4% (1247 of 6094 strings) Translation: pretix/pretix Translate-URL: https://translate.pretix.eu/projects/pretix/pretix/lb/ powered by weblate --- src/pretix/locale/lb/LC_MESSAGES/django.po | 496 +++++++++++++-------- 1 file changed, 313 insertions(+), 183 deletions(-) diff --git a/src/pretix/locale/lb/LC_MESSAGES/django.po b/src/pretix/locale/lb/LC_MESSAGES/django.po index 57ec709c26..85fa2f81a2 100644 --- a/src/pretix/locale/lb/LC_MESSAGES/django.po +++ b/src/pretix/locale/lb/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-21 07:26+0000\n" -"PO-Revision-Date: 2025-10-21 17:00+0000\n" +"PO-Revision-Date: 2025-10-27 21:00+0000\n" "Last-Translator: Sven Muhlen \n" "Language-Team: Luxembourgish \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.13.3\n" +"X-Generator: Weblate 5.14\n" #: pretix/_base_settings.py:87 msgid "English" @@ -1636,6 +1636,10 @@ msgid "" "this payment provider. Note that this might include some invoices of orders " "which in the end have been fully or partially paid with a different provider." msgstr "" +"Nëmme Rechnunge fir Bestellungen, déi mindestens ee Bezuelversuch mat dësem " +"Fournisseur vun der Bezuelung hunn. Opgepasst. Dës kann och Rechnunge fir " +"Bestellungen enthalen, déi schlussendlech mat engem anere Fournisseur " +"bezuelt goufen." #: pretix/base/exporters/invoices.py:126 msgid "All invoices" @@ -1657,6 +1661,10 @@ msgid "" "The spreadsheet includes two sheets, one with a line for every invoice, and " "one with a line for every position of every invoice." msgstr "" +"Tabell (Excel oder CSV) mat allen Donnéeën aus alle Rechnungen, déi mam " +"System erstallt goufen, eroflueden. D'Tabell enthält zwou Säiten, déi éischt " +"mat enger Zeil fir all Rechnung, an déi zweet mat enger Zeil fir all " +"Positioun vun der Rechnung." #: pretix/base/exporters/invoices.py:193 pretix/base/shredder.py:579 #: pretix/control/templates/pretixcontrol/order/index.html:268 @@ -2169,6 +2177,8 @@ msgid "" "Download a structured JSON representation of all orders. This might be " "useful for the import in third-party systems." msgstr "" +"E strukturéierten JSON-Fichier mat alle Bestellungen eroflueden. Kann fir " +"den Import an engem System vun Drëtter nëtzlech sinn." #: pretix/base/exporters/mail.py:52 msgid "Email addresses (text file)" @@ -2179,6 +2189,8 @@ msgid "" "Download a text file with all email addresses collected either from buyers " "or from ticket holders." msgstr "" +"Textfichier mat alle E-Mails-Adressen, déi vu Keefer a Participante " +"gesammelt goufen, eroflueden." #: pretix/base/exporters/mail.py:76 pretix/plugins/reports/exporters.py:498 #: pretix/plugins/reports/exporters.py:681 @@ -2191,6 +2203,10 @@ msgid "" "sheets, one with a line for every order, one with a line for every order " "position, and one with a line for every additional fee charged in an order." msgstr "" +"Tabell (Excel oder CSV) mat alle Bestellungen. D'Tabell huet dräi Säiten, " +"déi éischt enthält eng Ziel fir all Bestellung, déi zweet eng Zeil fir all " +"Positioun vun der Bestellung an déi drëtt eng Zeil fir all zousätzlech " +"Fraisen." #: pretix/base/exporters/orderlist.py:102 pretix/base/models/orders.py:332 #: pretix/control/navigation.py:255 pretix/control/navigation.py:362 @@ -2245,6 +2261,8 @@ msgid "" "Only include orders including at least one ticket for a date in this range. " "Will also include other dates in case of mixed orders!" msgstr "" +"Nëmme Bestellungen, déi mindestens een Ticket fir en Datum an dëser Period " +"enthalen. Enthält och aner Datumer, wann et gemëschte Bestellunge ginn!" #: pretix/base/exporters/orderlist.py:263 #: pretix/base/exporters/orderlist.py:450 @@ -2610,10 +2628,14 @@ msgid "" "changes to products, prices or tax rates. The information is only accurate " "for changes made with pretix versions released after October 2021." msgstr "" +"Tabell (Excel oder CSV) mat alle substanziellen Ännerungen zu Bestellungen " +"eroflueden, dat heescht all Ännerunge vu Produiten, Präisser oder " +"Steiersätz. D'Informatioune sinn nëmmen zouverlässeg fir Ännerungen, déi mat " +"enger pretix-Versioun vun no Oktober 2021 erstallt goufen." #: pretix/base/exporters/orderlist.py:860 msgid "Only include transactions created within this date range." -msgstr "" +msgstr "Nëmmen Transaktiounen, déi an dëser Period erstallt goufen." #: pretix/base/exporters/orderlist.py:895 pretix/base/models/event.py:695 #: pretix/base/models/items.py:468 pretix/base/models/items.py:2060 @@ -2697,6 +2719,8 @@ msgid "" "This value is supplied for informational purposes, it is not part of the " "original transaction data and might have changed since the transaction." msgstr "" +"Dës Valeur ass just fir Informatiounszwecker uginn. Si ass net Deel vun den " +"originalen Transaktiounsdonnéeën a kéint säit der Transaktioun geännert hunn." #: pretix/base/exporters/orderlist.py:959 msgid "Converted from legacy version" @@ -2709,6 +2733,8 @@ msgstr "Bezuelungen a Remboursementer" #: pretix/base/exporters/orderlist.py:1023 msgid "Download a spreadsheet of all payments or refunds of every order." msgstr "" +"Tabell (Excel oder CSV) mat allen Donnéeën zu Bezuelungen a Remboursementer " +"vun all Bestellung eroflueden." #: pretix/base/exporters/orderlist.py:1033 msgid "Date range (payment date)" @@ -2719,18 +2745,20 @@ msgid "" "Note that using this will exclude any non-confirmed payments or non-" "completed refunds." msgstr "" +"Beuecht wgl. datt dës all net-confirméiert Bezuelungen an net-confirméiert " +"Remboursementer ausschléisst." #: pretix/base/exporters/orderlist.py:1040 msgid "Date range (start of transaction)" -msgstr "" +msgstr "Period (Start vun der Transaktioun)" #: pretix/base/exporters/orderlist.py:1046 msgid "Payment states" -msgstr "" +msgstr "Status vun der Bezuelung" #: pretix/base/exporters/orderlist.py:1054 msgid "Refund states" -msgstr "" +msgstr "Status vum Remboursement" #: pretix/base/exporters/orderlist.py:1097 #: pretix/base/exporters/orderlist.py:1239 @@ -2754,7 +2782,7 @@ msgstr "Bestellung" #: pretix/plugins/paypal/templates/pretixplugins/paypal/control.html:5 #: pretix/plugins/paypal2/templates/pretixplugins/paypal2/control_legacy.html:5 msgid "Payment ID" -msgstr "" +msgstr "ID vun der Bezuelung" #: pretix/base/exporters/orderlist.py:1097 #: pretix/base/exporters/orderlist.py:1380 @@ -2762,16 +2790,16 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/giftcard.html:30 #: pretix/control/templates/pretixcontrol/organizers/giftcards.html:59 msgid "Creation date" -msgstr "" +msgstr "Datum vun der Erstellung" #: pretix/base/exporters/orderlist.py:1097 #: pretix/control/templates/pretixcontrol/order/index.html:887 msgid "Completion date" -msgstr "" +msgstr "Datum vum Ofschloss" #: pretix/base/exporters/orderlist.py:1098 msgid "Status code" -msgstr "" +msgstr "Status vum Code" #: pretix/base/exporters/orderlist.py:1098 #: pretix/base/exporters/orderlist.py:1237 @@ -2799,35 +2827,37 @@ msgstr "Montant" #: pretix/plugins/reports/accountingreport.py:496 #: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_confirm.html:29 msgid "Payment method" -msgstr "" +msgstr "Bezuelungsmethod" #: pretix/base/exporters/orderlist.py:1098 msgid "Matching ID" -msgstr "" +msgstr "ID fir d'Zouuerdnung" #: pretix/base/exporters/orderlist.py:1098 #: pretix/control/templates/pretixcontrol/order/refund_choose.html:38 msgid "Payment details" -msgstr "" +msgstr "Detailer vun der Bezuelung" #: pretix/base/exporters/orderlist.py:1148 msgid "Quota availabilities" -msgstr "" +msgstr "Disponibilitéite vun de Contingenten" #: pretix/base/exporters/orderlist.py:1150 msgid "" "Download a spreadsheet of all quotas including their current availability." msgstr "" +"Tabell (Excel oder CSV) mat alle Contingenten an där hirer aktueller " +"Disponibilitéit eroflueden." #: pretix/base/exporters/orderlist.py:1155 #: pretix/control/templates/pretixcontrol/items/quotas.html:45 msgid "Quota name" -msgstr "" +msgstr "Numm vum Contingent" #: pretix/base/exporters/orderlist.py:1155 #: pretix/control/templates/pretixcontrol/items/quota.html:56 msgid "Total quota" -msgstr "" +msgstr "Total vum Contingent" #: pretix/base/exporters/orderlist.py:1155 #: pretix/control/templates/pretixcontrol/event/cancel.html:20 @@ -2951,6 +2981,8 @@ msgstr "Remisen iwwer Bongen" msgid "" "Download a spreadsheet of all payments or refunds that involve gift cards." msgstr "" +"Tabell (Excel oder CSV) mat alle Bezuelungen a Remboursementer, déi e Bong " +"involvéieren, eroflueden." #: pretix/base/exporters/orderlist.py:1282 #: pretix/control/templates/pretixcontrol/giftcards/payment.html:16 @@ -2971,14 +3003,17 @@ msgstr "Bongen" #: pretix/base/exporters/orderlist.py:1312 msgid "Download a spreadsheet of all gift cards including their current value." msgstr "" +"Tabell (Excel oder CSV) mat alle Bongen an där hirer aktueller Valeur " +"eroflueden." #: pretix/base/exporters/orderlist.py:1319 msgid "Show value at" -msgstr "" +msgstr "Valeur uweisen um Dag" #: pretix/base/exporters/orderlist.py:1322 msgid "Defaults to the time of report." msgstr "" +"Standardméisseg gëtt den Zäitpunkt vun der Erstellung vum Rapport benotzt." #: pretix/base/exporters/orderlist.py:1327 #: pretix/base/exporters/orderlist.py:1337 pretix/control/forms/filter.py:550 @@ -3089,6 +3124,8 @@ msgstr "Reutilisabele Medium" msgid "" "Download a spread sheet with the data of all reusable medias on your account." msgstr "" +"Tabell (Excel oder CSV) mat den Donnéeë vun alle reutilisabele Medien an " +"dësem Organisateurskont eroflueden." #: pretix/base/exporters/reusablemedia.py:47 pretix/base/models/media.py:67 msgctxt "reusable_medium" @@ -3131,6 +3168,7 @@ msgstr "Waardelëscht" #: pretix/base/exporters/waitinglist.py:43 msgid "Download a spread sheet with all your waiting list data." msgstr "" +"Tabell (Excel oder CSV) mat allen Donnéeë vun der Waardelëscht eroflueden." #: pretix/base/exporters/waitinglist.py:50 #: pretix/control/templates/pretixcontrol/waitinglist/index.html:102 @@ -3190,7 +3228,7 @@ msgstr "Dir kënnt {markup_name} an dësem Feld notzen." msgid "" "Due to technical reasons you cannot set inputs, that need to be masked (e.g. " "passwords), to %(value)s." -msgstr "" +msgstr "Aus technesche Grënn kann dës Feld net op %(value)s gesat ginn." #: pretix/base/forms/auth.py:61 pretix/base/forms/auth.py:179 msgid "Keep me logged in" @@ -3256,28 +3294,34 @@ msgid "" "You uploaded an image in landscape orientation. Please upload an image in " "portrait orientation." msgstr "" +"Dir hutt e Bild am Queeschformat eropgelueden. Luet wgl. e Bild am " +"Héichformat erop." #: pretix/base/forms/questions.py:504 msgid "Please upload an image where the width is 3/4 of the height." -msgstr "" +msgstr "Luet wgl. e Bild erop, bei deem d'Breet 3/4 vun der Héicht ass." #: pretix/base/forms/questions.py:507 msgid "" "The file you uploaded has a very large number of pixels, please upload an " "image no larger than 10000 x 10000 pixels." msgstr "" +"D'Bild, dat Dir eropgelued hutt, huet eng grouss Unzuel u Pixelen. Maximal " +"dierf et 10000 x 10000 Pixelen hunn." #: pretix/base/forms/questions.py:510 pretix/helpers/images.py:75 msgid "" "Upload a valid image. The file you uploaded was either not an image or a " "corrupted image." msgstr "" +"De Fichier, deen Dir eropgelueden hutt, ass kee Bild oder ass beschiedegt." #: pretix/base/forms/questions.py:653 pretix/base/forms/questions.py:662 msgid "" "If you keep this empty, the ticket will be valid starting at the time of " "purchase." msgstr "" +"Wann dëst Feld eidel bleift, ass den Ticket ab dem Zäitpunkt vum Kaf gülteg." #: pretix/base/forms/questions.py:709 pretix/base/forms/questions.py:1102 msgid "Street and Number" @@ -3288,16 +3332,21 @@ msgid "" "Optional, but depending on the country you reside in we might need to charge " "you additional taxes if you do not enter it." msgstr "" +"Optionell, mee ofhängeg vum Land, an deem Dir Iech befannt, musse mir " +"zousätzlech Steieren erhiewen, wann Dir keng Nummer ugitt." #: pretix/base/forms/questions.py:1168 pretix/base/forms/questions.py:1174 msgid "If you are registered in Switzerland, you can enter your UID instead." -msgstr "" +msgstr "Wann Dir an der Schwäiz registréiert sidd, gitt wgl. Är UID un." #: pretix/base/forms/questions.py:1172 msgid "" "Optional, but it might be required for you to claim tax benefits on your " "invoice depending on your and the seller’s country of residence." msgstr "" +"Optionell, mee ofhängeg vun Ärem Land an dem Land vum Verkaf ass et " +"eventuell obligatoresch, fir datt Dir d'Rechnung steierlech gëlteg maache " +"kënnt." #: pretix/base/forms/questions.py:1181 msgid "No invoice requested" @@ -3305,7 +3354,7 @@ msgstr "Keng Rechnung ugefrot" #: pretix/base/forms/questions.py:1183 msgid "Invoice transmission method" -msgstr "" +msgstr "Iwwerdroung vun der Rechnung" #: pretix/base/forms/questions.py:1329 msgid "You need to provide a company name." @@ -3320,84 +3369,98 @@ msgid "" "If you enter an invoice address, you also need to select an invoice " "transmission method." msgstr "" +"Wann Dir eng Rechnungsadress ugitt, musst Dir och eng Method fir " +"d'Iwwerdroung ausfëllen." #: pretix/base/forms/questions.py:1385 msgid "" "The selected transmission type is not available in your country or for your " "type of address." msgstr "" +"Déi ausgewielte Method fir d'Iwwerdroung ass an Ärem Land oder fir Är Aart " +"vun Adress net méiglech." #: pretix/base/forms/questions.py:1394 msgid "" "The selected type of invoice transmission requires a field that is currently " "not available, please reach out to the organizer." msgstr "" +"Déi ausgewielte Method fir d'Iwwerdroung erfuerdert e Feld, dat den Ament " +"net disponibel ass. Kontaktéiert wgl. den Organisateur." #: pretix/base/forms/questions.py:1398 msgid "This field is required for the selected type of invoice transmission." msgstr "" +"Dës Feld ass obligatoresch fir déi ausgewielte Method vun der Iwwerdroung " +"vun der Rechnung." #: pretix/base/forms/user.py:51 pretix/control/forms/users.py:43 msgid "" "There already is an account associated with this email address. Please " "choose a different one." msgstr "" +"Et existéiert schonn e Kont, dee mat dëser E-Mails-Adress verbonnen ass. " +"Wielt wgl. eng aner." #: pretix/base/forms/user.py:53 msgid "" "Please enter your current password if you want to change your email address " "or password." msgstr "" +"Gitt wgl. Äert aktuellt Passwuert an, wann Dir Är E-Mails-Adress oder Är " +"Passwuert ännere wëllt." #: pretix/base/forms/user.py:55 pretix/presale/forms/customer.py:383 #: pretix/presale/forms/customer.py:456 msgid "The current password you entered was not correct." -msgstr "" +msgstr "Dat aktuellt Passwuert, dat Dir aginn hutt, ass net korrekt." #: pretix/base/forms/user.py:58 msgid "Please choose a password different to your current one." -msgstr "" +msgstr "Wielt wgl. e Passwuert, dat anescht ass wéi Äert aktuellt." #: pretix/base/forms/user.py:63 pretix/presale/forms/customer.py:392 #: pretix/presale/forms/customer.py:461 msgid "Your current password" -msgstr "" +msgstr "Aktuellt Passwuert" #: pretix/base/forms/user.py:67 pretix/control/forms/users.py:50 #: pretix/presale/forms/customer.py:397 msgid "New password" -msgstr "" +msgstr "Neit Passwuert" #: pretix/base/forms/user.py:71 pretix/control/forms/users.py:54 msgid "Repeat new password" -msgstr "" +msgstr "Neit Passwuert widderhuelen" #: pretix/base/forms/user.py:75 pretix/control/forms/organizer.py:458 #: pretix/control/forms/users.py:58 msgid "Default timezone" -msgstr "" +msgstr "Standard-Zäitzon" #: pretix/base/forms/user.py:76 pretix/control/forms/users.py:59 msgid "" "Only used for views that are not bound to an event. For all event views, the " "event timezone is used instead." msgstr "" +"Gëtt nëmme fir Usiichte benotzt, déi net zu engem Evenement gehéieren. Fir " +"all Usiichten zu eenzelnen Evenementer gëtt d'Zäitzon vum Evenement benotzt." #: pretix/base/forms/user.py:175 msgid "Device name" -msgstr "" +msgstr "Numm vum Apparat" #: pretix/base/forms/user.py:176 msgid "Device type" -msgstr "" +msgstr "Typ vum Apparat" #: pretix/base/forms/user.py:177 msgid "Smartphone with the Authenticator application" -msgstr "" +msgstr "Smartphone mat Authenticator-App" #: pretix/base/forms/user.py:178 msgid "WebAuthn-compatible hardware token (e.g. Yubikey)" -msgstr "" +msgstr "WebAuthn-kompatibelen Hardware-Token (z.B. Yubikey)" #: pretix/base/forms/validators.py:51 msgid "" @@ -3406,11 +3469,15 @@ msgid "" "up. Please note: to use literal \"{\" or \"}\", you need to double them as " "\"{{\" and \"}}\"." msgstr "" +"Et ass e Feeler an Ärer Platzhalter-Syntax. Iwwerpréift wgl., datt " +"d'Klammeren, déi opmaachen \"{\" an zoumaachen \"}\" zesummepassen. Fir " +"d'Klammeren \"{\" an \"}\" am text ze benotzen, musst Dir se duebelt setzen:" +" \"{{\" an \"}}\"." #: pretix/base/forms/validators.py:72 pretix/control/views/event.py:851 #, python-format msgid "Invalid placeholder: {%(value)s}" -msgstr "" +msgstr "Ongültege Platzhalter: {%(value)s}" #: pretix/base/forms/widgets.py:68 #, python-format @@ -3439,46 +3506,48 @@ msgstr "Private Client" #: pretix/base/invoicing/email.py:50 msgid "Email invoice directly to accounting department" -msgstr "" +msgstr "D'Rechnung direkt un d'Comptabilitéit schécken" #: pretix/base/invoicing/email.py:51 msgid "" "If not selected, the invoice will be sent to you using the email address " "listed above." msgstr "" +"Wann dës Optioun net ausgewielt ass, schécke mir d'Rechnung un déi E-Mails-" +"Adress déi uewen uginn ass." #: pretix/base/invoicing/email.py:55 msgid "Email address for invoice" -msgstr "" +msgstr "E-Mails-Adress fir Rechnungen" #: pretix/base/invoicing/email.py:91 msgid "PDF via email" -msgstr "" +msgstr "PDF via E-Mail" #: pretix/base/invoicing/national.py:37 msgctxt "italian_invoice" msgid "Italian Exchange System (SdI)" -msgstr "" +msgstr "Italieenescht Austauschsystem (SdI)" #: pretix/base/invoicing/national.py:38 msgctxt "italian_invoice" msgid "Exchange System (SdI)" -msgstr "" +msgstr "Austauschsystem (SdI)" #: pretix/base/invoicing/national.py:49 msgctxt "italian_invoice" msgid "Fiscal code" -msgstr "" +msgstr "Steiernummer" #: pretix/base/invoicing/national.py:53 msgctxt "italian_invoice" msgid "Address for certified electronic mail" -msgstr "" +msgstr "Adress fir zertifizéiert elektronesch Mail" #: pretix/base/invoicing/national.py:57 msgctxt "italian_invoice" msgid "Recipient code" -msgstr "" +msgstr "Empfänger-Code" #: pretix/base/invoicing/national.py:81 msgctxt "italian_invoice" @@ -3488,62 +3557,66 @@ msgid "" "in accordance with the procedures and terms set forth in No. 89757/2018 of " "April 30, 2018, issued by the Director of the Revenue Agency." msgstr "" +"Dëse PDF-Fichier ass eng visuell Kopie vun der Rechnung an ass keng Rechnung " +"fir Steierzwecker. D'Rechnung gouf am XML-Format ausgestallt am Aklang mat " +"den Demarchen a Modalitéiten no Nr. 89757/2018 vum 30. Abrëll, vum Direkter " +"vun der Finanzverwaltung." #: pretix/base/invoicing/pdf.py:142 #, python-format msgctxt "invoice" msgid "Page %d of %d" -msgstr "" +msgstr "Säit %d vun %d" #: pretix/base/invoicing/pdf.py:383 msgctxt "invoice" msgid "Classic renderer (pretix 1.0)" -msgstr "" +msgstr "Klassesch (pretix 1.0)" #: pretix/base/invoicing/pdf.py:427 msgctxt "invoice" msgid "Invoice from" -msgstr "" +msgstr "Rechnung vun" #: pretix/base/invoicing/pdf.py:433 msgctxt "invoice" msgid "Invoice to" -msgstr "" +msgstr "Rechnung fir" #: pretix/base/invoicing/pdf.py:470 pretix/base/invoicing/pdf.py:1143 msgctxt "invoice" msgid "Order code" -msgstr "" +msgstr "Nummer vun der Bestellung" #: pretix/base/invoicing/pdf.py:479 pretix/base/invoicing/pdf.py:1156 msgctxt "invoice" msgid "Cancellation number" -msgstr "" +msgstr "Nummer vun der Korrektur" #: pretix/base/invoicing/pdf.py:485 pretix/base/invoicing/pdf.py:1158 msgctxt "invoice" msgid "Original invoice" -msgstr "" +msgstr "Ursprénglech Rechnung" #: pretix/base/invoicing/pdf.py:490 pretix/base/invoicing/pdf.py:1163 msgctxt "invoice" msgid "Invoice number" -msgstr "" +msgstr "Nummer vun der Rechnung" #: pretix/base/invoicing/pdf.py:498 pretix/base/invoicing/pdf.py:1178 msgctxt "invoice" msgid "Cancellation date" -msgstr "" +msgstr "Datum vun der Korrektur" #: pretix/base/invoicing/pdf.py:504 msgctxt "invoice" msgid "Original invoice date" -msgstr "" +msgstr "Ursprénglechen Datum vun der Rechnung" #: pretix/base/invoicing/pdf.py:511 pretix/base/invoicing/pdf.py:1180 msgctxt "invoice" msgid "Invoice date" -msgstr "" +msgstr "Datum vun der Rechnung" #: pretix/base/invoicing/pdf.py:527 msgctxt "invoice" @@ -3557,23 +3630,25 @@ msgid "" "{from_date}\n" "until {to_date}" msgstr "" +"{from_date}\n" +"bis {to_date}" #: pretix/base/invoicing/pdf.py:608 pretix/base/services/mail.py:511 #, python-brace-format msgctxt "invoice" msgid "Invoice {num}" -msgstr "" +msgstr "Rechnung {num}" #: pretix/base/invoicing/pdf.py:660 #, python-brace-format msgctxt "invoice" msgid "Customer reference: {reference}" -msgstr "" +msgstr "Referenz vum Client: {reference}" #: pretix/base/invoicing/pdf.py:668 msgctxt "invoice" msgid "Customer VAT ID" -msgstr "" +msgstr "TVA-Nummer vum Client" #: pretix/base/invoicing/pdf.py:675 msgctxt "invoice" @@ -3583,7 +3658,7 @@ msgstr "Beneficiaire" #: pretix/base/invoicing/pdf.py:708 msgctxt "invoice" msgid "Tax Invoice" -msgstr "" +msgstr "Steier-Rechnung" #: pretix/base/invoicing/pdf.py:709 msgctxt "invoice" @@ -3611,7 +3686,7 @@ msgstr "Qtéit" #: pretix/base/invoicing/pdf.py:734 pretix/base/invoicing/pdf.py:960 msgctxt "invoice" msgid "Tax rate" -msgstr "" +msgstr "Steiersaz" #: pretix/base/invoicing/pdf.py:735 msgctxt "invoice" @@ -3632,54 +3707,54 @@ msgstr "Montant" #, python-brace-format msgctxt "invoice" msgid "Single price: {net_price} net / {gross_price} gross" -msgstr "" +msgstr "Eenzelpräis: {net_price} netto / {gross_price} brutto" #: pretix/base/invoicing/pdf.py:842 #, python-brace-format msgctxt "invoice" msgid "Single price: {price}" -msgstr "" +msgstr "Eenzelpräis: {price}" #: pretix/base/invoicing/pdf.py:863 pretix/base/invoicing/pdf.py:869 msgctxt "invoice" msgid "Invoice total" -msgstr "" +msgstr "Total vun der Rechnung" #: pretix/base/invoicing/pdf.py:879 msgctxt "invoice" msgid "Received payments" -msgstr "" +msgstr "Bezuelungen, déi schonn era komm sinn" #: pretix/base/invoicing/pdf.py:884 msgctxt "invoice" msgid "Outstanding payments" -msgstr "" +msgstr "Montanten, déi nach op stinn" #: pretix/base/invoicing/pdf.py:901 msgctxt "invoice" msgid "Paid by gift card" -msgstr "" +msgstr "Mat Bong bezuelt" #: pretix/base/invoicing/pdf.py:906 msgctxt "invoice" msgid "Remaining amount" -msgstr "" +msgstr "Reschtleche Montant" #: pretix/base/invoicing/pdf.py:930 #, python-brace-format msgctxt "invoice" msgid "Invoice period: {daterange}" -msgstr "" +msgstr "Rechungsperiod: {daterange}" #: pretix/base/invoicing/pdf.py:961 msgctxt "invoice" msgid "Net value" -msgstr "" +msgstr "Netto" #: pretix/base/invoicing/pdf.py:962 msgctxt "invoice" msgid "Gross value" -msgstr "" +msgstr "Brutto" #: pretix/base/invoicing/pdf.py:963 msgctxt "invoice" @@ -3689,7 +3764,7 @@ msgstr "Steier" #: pretix/base/invoicing/pdf.py:993 msgctxt "invoice" msgid "Included taxes" -msgstr "" +msgstr "Steieren, déi abegraff sinn" #: pretix/base/invoicing/pdf.py:1021 #, python-brace-format @@ -3697,7 +3772,7 @@ msgctxt "invoice" msgid "" "Using the conversion rate of 1:{rate} as published by the {authority} on " "{date}, this corresponds to:" -msgstr "" +msgstr "Mam Wiesselcours vun 1:{rate} ({authority}, {date}) entsprécht dëst:" #: pretix/base/invoicing/pdf.py:1036 #, python-brace-format @@ -3706,30 +3781,34 @@ msgid "" "Using the conversion rate of 1:{rate} as published by the {authority} on " "{date}, the invoice total corresponds to {total}." msgstr "" +"Mam Wiesselcours vun 1:{rate} ({authority}, {date}) entsprécht den Total vun " +"der Rechnung {total}." #: pretix/base/invoicing/pdf.py:1050 msgid "Default invoice renderer (European-style letter)" -msgstr "" +msgstr "Standard-Rechnungslayout (europäesche Bréif-Stil)" #: pretix/base/invoicing/pdf.py:1139 msgctxt "invoice" msgid "(Please quote at all times.)" -msgstr "" +msgstr "(Wgl. ëmmer mat uginn)" #: pretix/base/invoicing/pdf.py:1186 msgid "Simplified invoice renderer" -msgstr "" +msgstr "Vereinfachte Rechnungslayout" #: pretix/base/invoicing/pdf.py:1205 #, python-brace-format msgctxt "invoice" msgid "Event date: {date_range}" -msgstr "" +msgstr "Datum vum Evenement: {date_range}" #: pretix/base/invoicing/peppol.py:128 msgid "" "A Peppol participant ID always starts with a prefix, followed by a colon (:)." msgstr "" +"Eng Peppol-ID fänkt ëmmer mat engem Präfix un, nodeem en Doppelpunkt kënnt " +"(:)." #: pretix/base/invoicing/peppol.py:132 #, python-format @@ -3737,6 +3816,8 @@ msgid "" "The Peppol participant ID prefix %(number)s is not known to our system. " "Please reach out to us if you are sure this ID is correct." msgstr "" +"De Präfix %(number)s vun der Peppol-ID ass an eisem System net bekannt. " +"Kontaktéiert eis wgl., wann Dir sécher sidd, datt dës ID korrekt ass." #: pretix/base/invoicing/peppol.py:136 #, python-format @@ -3744,15 +3825,17 @@ msgid "" "The Peppol participant ID does not match the validation rules for the prefix " "%(number)s. Please reach out to us if you are sure this ID is correct." msgstr "" +"D'Peppol-ID passt net zu de Validéierungsreegele fir de Präfix %(number)s. " +"Kontaktéiert eis wgl., wann Dir sécher sidd, datt dës ID korrekt ass." #: pretix/base/invoicing/peppol.py:156 msgid "Peppol participant ID" -msgstr "" +msgstr "Peppol-ID" #: pretix/base/invoicing/peppol.py:170 msgctxt "peppol_invoice" msgid "Visual copy" -msgstr "" +msgstr "Visuell Kopie" #: pretix/base/invoicing/peppol.py:175 msgctxt "peppol_invoice" @@ -3761,16 +3844,21 @@ msgid "" "invoice for VAT purposes. The original invoice is issued in XML format and " "transmitted through the Peppol network." msgstr "" +"Dëse PDF-Fichier ass eng visuell Kopie vun der Rechnung an ass keng Rechnung " +"fir Steierzwecker. D'original Rechnung gouf am XML-Format ausgestallt a mam " +"Peppol-Netzwierk iwwermëttelt." #: pretix/base/logentrytype_registry.py:43 msgid "" "The relevant plugin is currently not active. To activate it, click here to " "go to the plugin settings." msgstr "" +"Den noutwennege Plugin ass net aktiv. Fir en ze aktivéieren, klickt hei oder " +"gitt bei d'Astellungen." #: pretix/base/logentrytype_registry.py:53 msgid "The relevant plugin is currently not active." -msgstr "" +msgstr "Den noutwennege Plugin ass net aktiv." #: pretix/base/logentrytypes.py:49 msgid "(deleted)" @@ -3843,33 +3931,33 @@ msgstr "Eidel loossen" #: pretix/base/modelimport.py:146 #, python-brace-format msgid "Invalid setting for column \"{header}\"." -msgstr "" +msgstr "Ongëlteg Astellung fir d'Kolonn \"{header}\"." #: pretix/base/modelimport.py:206 #, python-brace-format msgid "Could not parse {value} as a yes/no value." -msgstr "" +msgstr "{value} konnt net als Jo/Nee-Valeur erkannt ginn." #: pretix/base/modelimport.py:229 #, python-brace-format msgid "Could not parse {value} as a date and time." -msgstr "" +msgstr "{value} konnt net als Datum an Zäit erkannt ginn." #: pretix/base/modelimport.py:239 pretix/control/views/orders.py:1173 #: pretix/control/views/orders.py:1202 pretix/control/views/orders.py:1247 #: pretix/control/views/orders.py:1282 pretix/control/views/orders.py:1305 msgid "You entered an invalid number." -msgstr "" +msgstr "Dir hutt eng ongëlteg Zuel aginn." #: pretix/base/modelimport.py:286 pretix/base/modelimport.py:298 msgctxt "subevent" msgid "No matching date was found." -msgstr "" +msgstr "Et gouf kee passenden Datum fonnt." #: pretix/base/modelimport.py:288 pretix/base/modelimport.py:300 msgctxt "subevent" msgid "Multiple matching dates were found." -msgstr "" +msgstr "Et goufe méi passend Datumer fonnt." #: pretix/base/modelimport_orders.py:73 msgid "Grouping" @@ -3884,7 +3972,7 @@ msgstr "" #: pretix/base/modelimport_orders.py:101 msgid "Enter a valid phone number." -msgstr "" +msgstr "Gitt wgl. eng gülteg Telefonsnummer un." #: pretix/base/modelimport_orders.py:114 msgctxt "subevents" @@ -3892,26 +3980,31 @@ msgid "" "The date can be specified through its full name, full date and time, or " "internal ID, provided only one date in the system matches the input." msgstr "" +"Den Datum kann iwwer säi ganzen Numm, d'vollstännegt Datum an Auerzäit, oder " +"seng intern ID referenzéiert ginn, esou laang wéi d'Referenzéierung " +"eendeiteg ass." #: pretix/base/modelimport_orders.py:120 pretix/presale/views/waiting.py:157 msgctxt "subevent" msgid "You need to select a date." -msgstr "" +msgstr "Dir musst en Datum auswielen." #: pretix/base/modelimport_orders.py:131 msgid "" "The product can be specified by its internal ID, full name or internal name." msgstr "" +"Dëse Produit kann iwwer seng intern ID, säi ganzen Numm oder säin internen " +"Numm referenzéiert ginn." #: pretix/base/modelimport_orders.py:149 #: pretix/base/modelimport_vouchers.py:194 msgid "No matching product was found." -msgstr "" +msgstr "Et konnt kee passende Produit fonnt ginn." #: pretix/base/modelimport_orders.py:151 #: pretix/base/modelimport_vouchers.py:196 msgid "Multiple matching products were found." -msgstr "" +msgstr "Et konnte méi passend Produite fonnt ginn." #: pretix/base/modelimport_orders.py:160 #: pretix/base/modelimport_vouchers.py:205 pretix/base/models/items.py:1257 @@ -3922,46 +4015,50 @@ msgstr "Variant vum Produit" #: pretix/base/modelimport_orders.py:161 msgid "The variation can be specified by its internal ID or full name." msgstr "" +"D'Variant kann iwwer hir intern ID oder hire vollstännegen Numm " +"referenzéiert ginn." #: pretix/base/modelimport_orders.py:181 #: pretix/base/modelimport_vouchers.py:225 #: pretix/base/modelimport_vouchers.py:259 msgid "No matching variation was found." -msgstr "" +msgstr "Et konnt keng passend Variant fonnt ginn." #: pretix/base/modelimport_orders.py:183 #: pretix/base/modelimport_vouchers.py:227 #: pretix/base/modelimport_vouchers.py:261 msgid "Multiple matching variations were found." -msgstr "" +msgstr "Et konnten méi passend Variante fonnt ginn." #: pretix/base/modelimport_orders.py:186 msgid "You need to select a variation for this product." -msgstr "" +msgstr "Dir musst fir dëse Produit eng Variant auswielen." #: pretix/base/modelimport_orders.py:265 pretix/base/modelimport_orders.py:417 msgid "The country needs to be specified using a two-letter country code." -msgstr "" +msgstr "D'Land muss mat engem zweestellege Lännercode ugi ginn." #: pretix/base/modelimport_orders.py:281 pretix/base/modelimport_orders.py:432 msgid "Please enter a valid country code." -msgstr "" +msgstr "Gitt wgl. e gültege Lännercode an." #: pretix/base/modelimport_orders.py:290 pretix/base/modelimport_orders.py:441 msgid "The state can be specified by its short form or full name." msgstr "" +"De Staat kann iwwer eng Kuerzform oder iwwer de vollen Numm spezifizéiert " +"ginn." #: pretix/base/modelimport_orders.py:300 pretix/base/modelimport_orders.py:450 msgid "States are not supported for this country." -msgstr "" +msgstr "Staate gi fir dëst Land net ënnerstëtzt." #: pretix/base/modelimport_orders.py:308 pretix/base/modelimport_orders.py:458 msgid "Please enter a valid state." -msgstr "" +msgstr "Wielt wgl. e gültege Staat aus." #: pretix/base/modelimport_orders.py:359 pretix/control/forms/filter.py:683 msgid "Attendee email address" -msgstr "" +msgstr "E-Mails-Adress vum Participant" #: pretix/base/modelimport_orders.py:375 pretix/base/modelimport_orders.py:386 #: pretix/base/modelimport_orders.py:397 pretix/base/modelimport_orders.py:408 @@ -3973,7 +4070,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:193 #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:196 msgid "Attendee address" -msgstr "" +msgstr "Adress vum Participant" #: pretix/base/modelimport_orders.py:445 msgid "State" @@ -3981,49 +4078,51 @@ msgstr "Staat" #: pretix/base/modelimport_orders.py:468 msgid "Calculate from product" -msgstr "" +msgstr "Aus den Donnéeë vum Produit berechnen" #: pretix/base/modelimport_orders.py:486 #: pretix/control/templates/pretixcontrol/checkin/index.html:111 #: pretix/control/templates/pretixcontrol/order/index.html:531 msgid "Ticket code" -msgstr "" +msgstr "Ticket-Code" #: pretix/base/modelimport_orders.py:487 msgid "Generate automatically" -msgstr "" +msgstr "Automatesch generéieren" #: pretix/base/modelimport_orders.py:496 msgid "You cannot assign a position secret that already exists." -msgstr "" +msgstr "Dir kënnt keen Ticket-Code benotzen, dee schonn existéiert." #: pretix/base/modelimport_orders.py:528 msgid "Please enter a valid language code." -msgstr "" +msgstr "Gitt wgl. e gültege Sproochecode an." #: pretix/base/modelimport_orders.py:581 msgid "" "The sales channel can be specified by it's internal identifier or its full " "name." msgstr "" +"De Verkafskanal kann iwwer seng intern ID oder säi vollen Numm referenzéiert " +"ginn." #: pretix/base/modelimport_orders.py:599 pretix/base/modelimport_orders.py:601 msgid "Please enter a valid sales channel." -msgstr "" +msgstr "Gitt wgl. e gültege Verkafskanal un." #: pretix/base/modelimport_orders.py:611 msgid "The seat needs to be specified by its internal ID." -msgstr "" +msgstr "D'Sëtzplaz muss mat enger interner ID referenzéiert ginn." #: pretix/base/modelimport_orders.py:626 #: pretix/base/modelimport_vouchers.py:291 msgid "Multiple matching seats were found." -msgstr "" +msgstr "Et konnte méi passend Sëtzplazen fonnt ginn." #: pretix/base/modelimport_orders.py:628 #: pretix/base/modelimport_vouchers.py:293 msgid "No matching seat was found." -msgstr "" +msgstr "Et konnt keng passend Sëtzplaz fonnt ginn." #: pretix/base/modelimport_orders.py:631 #: pretix/base/modelimport_vouchers.py:296 pretix/base/services/cart.py:213 @@ -4032,10 +4131,12 @@ msgstr "" msgid "" "The seat you selected has already been taken. Please select a different seat." msgstr "" +"Dës Sëtzplaz gouf a Tëschenzäit vun engem anere Client reservéiert. Wielt " +"wgl. eng aner." #: pretix/base/modelimport_orders.py:634 pretix/base/services/cart.py:210 msgid "You need to select a specific seat." -msgstr "" +msgstr "Dir musst eng Sëtzplaz auswielen." #: pretix/base/modelimport_orders.py:691 pretix/base/models/items.py:1671 #: pretix/base/models/items.py:1766 pretix/control/forms/item.py:147 @@ -4048,11 +4149,11 @@ msgstr "Fro" #: pretix/base/modelimport_orders.py:701 pretix/base/modelimport_orders.py:709 #: pretix/base/models/items.py:1830 pretix/base/models/items.py:1848 msgid "Invalid option selected." -msgstr "" +msgstr "Ongëlteg Optioun ausgewielt." #: pretix/base/modelimport_orders.py:703 pretix/base/modelimport_orders.py:711 msgid "Ambiguous option selected." -msgstr "" +msgstr "Méideiteg Optioun ausgewielt." #: pretix/base/modelimport_orders.py:742 pretix/base/models/orders.py:239 msgid "Customer" @@ -4060,55 +4161,57 @@ msgstr "Client" #: pretix/base/modelimport_orders.py:756 msgid "No matching customer was found." -msgstr "" +msgstr "Et konnt kee passende Client fonnt ginn." #: pretix/base/modelimport_vouchers.py:50 pretix/base/models/vouchers.py:491 msgid "A voucher with this code already exists." -msgstr "" +msgstr "E Bong mat dësem Code existéiert schonn." #: pretix/base/modelimport_vouchers.py:68 pretix/base/models/memberships.py:57 #: pretix/base/models/vouchers.py:199 pretix/control/views/vouchers.py:120 #: pretix/presale/templates/pretixpresale/organizers/customer_membership.html:52 msgid "Maximum usages" -msgstr "" +msgstr "Maximal Notzungen" #: pretix/base/modelimport_vouchers.py:79 msgid "The maximum number of usages must be set." -msgstr "" +msgstr "Déi maximal Unzuel un Notzungen muss definéiert ginn." #: pretix/base/modelimport_vouchers.py:88 pretix/base/models/vouchers.py:208 msgid "Minimum usages" -msgstr "" +msgstr "Minimal Notzungen" #: pretix/base/modelimport_vouchers.py:103 pretix/base/models/vouchers.py:216 msgid "Maximum discount budget" -msgstr "" +msgstr "Maximale Budget vu Remisen" #: pretix/base/modelimport_vouchers.py:119 pretix/base/models/vouchers.py:228 #: pretix/control/forms/filter.py:2130 msgid "Reserve ticket from quota" -msgstr "" +msgstr "Am Contingent reservéieren" #: pretix/base/modelimport_vouchers.py:127 pretix/base/models/vouchers.py:236 msgid "Allow to bypass quota" -msgstr "" +msgstr "Contingent ignoréieren" #: pretix/base/modelimport_vouchers.py:135 pretix/base/models/vouchers.py:242 msgid "Price mode" -msgstr "" +msgstr "Präisberechnung" #: pretix/base/modelimport_vouchers.py:150 #, python-brace-format msgid "Could not parse {value} as a price mode, use one of {options}." msgstr "" +"{value} konnt net am Präis-Modus erkannt ginn. Disponibel Optiounen: " +"{options}." #: pretix/base/modelimport_vouchers.py:160 pretix/base/models/vouchers.py:248 msgid "Voucher value" -msgstr "" +msgstr "Valeur vum Bong" #: pretix/base/modelimport_vouchers.py:165 msgid "It is pointless to set a value without a price mode." -msgstr "" +msgstr "Et ass e Widdersproch, eng Valeur ouni e Präis-Modus ze setzen." #: pretix/base/modelimport_vouchers.py:237 pretix/base/models/items.py:2121 #: pretix/base/models/vouchers.py:275 @@ -4119,24 +4222,25 @@ msgstr "Contingent" #: pretix/base/modelimport_vouchers.py:253 msgid "You cannot specify a quota if you specified a product." -msgstr "" +msgstr "Dir kënnt net gläichzäiteg e Contingent an e Produit auswielen." #: pretix/base/modelimport_vouchers.py:282 pretix/base/models/vouchers.py:498 msgid "You need to choose a date if you select a seat." -msgstr "" +msgstr "Dir musst en Datum wielen, wann eng Sëtzplaz ausgewielt ass." #: pretix/base/modelimport_vouchers.py:299 pretix/base/models/vouchers.py:516 msgid "You need to choose a specific product if you select a seat." -msgstr "" +msgstr "Dir musst e konkrete Produit wielen, wann eng Sëtzplaz ausgewielt ass." #: pretix/base/modelimport_vouchers.py:302 pretix/base/models/vouchers.py:519 msgid "Seat-specific vouchers can only be used once." msgstr "" +"Bonge fir déi eng Sëtzplaz zougewisen ass kënnen nëmmen eemol benotzt ginn." #: pretix/base/modelimport_vouchers.py:306 pretix/base/models/vouchers.py:522 #, python-brace-format msgid "You need to choose the product \"{prod}\" for this seat." -msgstr "" +msgstr "Dir musst de Produit \"{prod}\" fir dës Sëtzplaz auswielen." #: pretix/base/modelimport_vouchers.py:318 pretix/base/models/vouchers.py:288 #: pretix/control/templates/pretixcontrol/vouchers/index.html:129 @@ -4147,45 +4251,47 @@ msgstr "Tag" #: pretix/base/modelimport_vouchers.py:334 pretix/base/models/vouchers.py:300 msgid "Shows hidden products that match this voucher" -msgstr "" +msgstr "Weist verstoppte Produiten un, déi zu dësem Bong passen" #: pretix/base/modelimport_vouchers.py:343 pretix/base/models/vouchers.py:304 msgid "Offer all add-on products for free when redeeming this voucher" -msgstr "" +msgstr "All Zousazproduite gratis ubidden, wann dëse Bong ageléist gëtt" #: pretix/base/modelimport_vouchers.py:351 pretix/base/models/vouchers.py:308 msgid "" "Include all bundled products without a designated price when redeeming this " "voucher" msgstr "" +"All enthale Produiten ouni separaten Präisundeel ausweisen, wann dëse Bong " +"ageléist gëtt" #: pretix/base/models/auth.py:248 msgid "Is active" -msgstr "" +msgstr "Ass aktivéiert" #: pretix/base/models/auth.py:250 msgid "Is site admin" -msgstr "" +msgstr "Ass Administrateur vum System" #: pretix/base/models/auth.py:252 msgid "Date joined" -msgstr "" +msgstr "Datum vun der Registréierung" #: pretix/base/models/auth.py:254 msgid "Force user to select a new password" -msgstr "" +msgstr "Den Notzer forcéieren en neit Passwuert ze setzen" #: pretix/base/models/auth.py:264 msgid "Two-factor authentication is required to log in" -msgstr "" +msgstr "Zwee-Faktor-Authentifizéierung ass noutwenneg fir de Log-In" #: pretix/base/models/auth.py:268 msgid "Receive notifications according to my settings below" -msgstr "" +msgstr "Notifikatiounen erhalen, déi den Astellungen ënnen entspriechen" #: pretix/base/models/auth.py:269 msgid "If turned off, you will not get any notifications." -msgstr "" +msgstr "Wann dës Astellung aus ass, kritt Dir keng Notifikatiounen." #: pretix/base/models/auth.py:283 #: pretix/control/templates/pretixcontrol/orders/bulk_action.html:23 @@ -4207,21 +4313,21 @@ msgstr "Benotzeren" #: pretix/base/models/auth.py:342 msgid "Account information changed" -msgstr "" +msgstr "Informatiounen vum Kont goufe geännert" #: pretix/base/models/auth.py:360 #: pretix/control/templates/pretixcontrol/auth/forgot.html:7 msgid "Password recovery" -msgstr "" +msgstr "Reinitialiséierung vum Passwuert" #: pretix/base/models/checkin.py:55 msgid "All products (including newly created ones)" -msgstr "" +msgstr "All Produiten (och nei erstallten)" #: pretix/base/models/checkin.py:56 pretix/plugins/badges/exporters.py:436 #: pretix/plugins/checkinlists/exporters.py:854 msgid "Limit to products" -msgstr "" +msgstr "Op Produite limitéieren" #: pretix/base/models/checkin.py:60 msgid "" @@ -4233,33 +4339,39 @@ msgstr "" #: pretix/base/models/checkin.py:65 msgctxt "checkin" msgid "Ignore check-ins on this list in statistics" -msgstr "" +msgstr "Check-ins op dëser Lëscht fir Statistiken ignoréieren" #: pretix/base/models/checkin.py:69 msgctxt "checkin" msgid "Tickets with a check-in on this list should be considered \"used\"" msgstr "" +"Ticketen mat engem Check-in op dëser Lëscht sollen als \"benotzt\" gëllen" #: pretix/base/models/checkin.py:70 msgid "" "This is relevant in various situations, e.g. for deciding if a ticket can " "still be canceled by the customer." msgstr "" +"Dës ass fir verschidden Entscheedunge relevant, z.B. ob en Ticket vun engem " +"Client selwer annuléiert ka ginn." #: pretix/base/models/checkin.py:74 msgctxt "checkin" msgid "Include pending orders" -msgstr "" +msgstr "Bestellungen, fir déi d'Bezuelung nach opsteet, mat aschléissen" #: pretix/base/models/checkin.py:76 msgid "" "With this option, people will be able to check in even if the order has not " "been paid." msgstr "" +"Mat dëser Optioun kann en Check-in och méiglech sinn, wann eng Bestellung " +"nach net bezuelt gouf." #: pretix/base/models/checkin.py:79 msgid "Allow checking in add-on tickets by scanning the main ticket" msgstr "" +"Den Check-in vun Zousazproduiten duerch d'Scannen vum Haaptticket erlaben" #: pretix/base/models/checkin.py:81 msgid "" @@ -4267,6 +4379,9 @@ msgid "" "there is always exactly one matching add-on ticket. Ambiguous scans will be " "rejected.." msgstr "" +"E Scann ass just méiglech, wann d'Check-in-Lëscht esou konfiguréiert ass, " +"datt et ëmmer genau ee passenden Zousazproduit gëtt. Zweedeiteg Scanns gi " +"refuséiert." #: pretix/base/models/checkin.py:85 pretix/control/navigation.py:652 #: pretix/control/templates/pretixcontrol/organizers/gates.html:5 @@ -4278,23 +4393,27 @@ msgid "" "Does not have any effect for the validation of tickets, only for the " "automatic configuration of check-in devices." msgstr "" +"Huet keen Effekt op d'Gültegkeet vun Ticketen, gëtt just fir eng automatesch " +"Konfiguratioun vu Check-in-Apparater benotzt." #: pretix/base/models/checkin.py:90 msgid "Allow re-entering after an exit scan" -msgstr "" +msgstr "Eng nei Entrée erlaben, wann eng Sortie scho gescannt gouf" #: pretix/base/models/checkin.py:94 msgid "Allow multiple entries per ticket" -msgstr "" +msgstr "Méi Entréeë pro Ticket erlaben" #: pretix/base/models/checkin.py:95 msgid "" "Use this option to turn off warnings if a ticket is scanned a second time." msgstr "" +"Mat dëser Optioun kënnt Dir d'Warnunge bei enger neier Entrée mam " +"nämmlechten Ticket desaktivéieren." #: pretix/base/models/checkin.py:99 msgid "Automatically check out everyone at" -msgstr "" +msgstr "Jiddereen automatesch auschecken um" #: pretix/base/models/checkin.py:336 msgid "Entry" @@ -4306,31 +4425,31 @@ msgstr "Sortie" #: pretix/base/models/checkin.py:356 msgid "Unknown ticket" -msgstr "" +msgstr "Onbekannten Ticket" #: pretix/base/models/checkin.py:357 msgid "Ticket not paid" -msgstr "" +msgstr "Ticket net bezuelt" #: pretix/base/models/checkin.py:358 msgid "Forbidden by custom rule" -msgstr "" +msgstr "Verbueden wéinst enger Reegel" #: pretix/base/models/checkin.py:359 msgid "Ticket code revoked/changed" -msgstr "" +msgstr "Ticket-Code gespaart/geännert" #: pretix/base/models/checkin.py:360 msgid "Information required" -msgstr "" +msgstr "Informatiounen noutwenneg" #: pretix/base/models/checkin.py:361 msgid "Ticket already used" -msgstr "" +msgstr "Ticket scho benotzt" #: pretix/base/models/checkin.py:362 msgid "Ticket type not allowed here" -msgstr "" +msgstr "Typ vum Ticket hei net erlabt" #: pretix/base/models/checkin.py:363 msgid "Ticket code is ambiguous on list" @@ -4338,11 +4457,11 @@ msgstr "Ticket-Code ass net eendeiteg op der Lëscht" #: pretix/base/models/checkin.py:364 msgid "Server error" -msgstr "" +msgstr "Feeler vum Server" #: pretix/base/models/checkin.py:365 msgid "Ticket blocked" -msgstr "" +msgstr "Ticket gespaart" #: pretix/base/models/checkin.py:366 msgid "Order not approved" @@ -4350,23 +4469,23 @@ msgstr "Bestellung net autoriséiert" #: pretix/base/models/checkin.py:367 msgid "Ticket not valid at this time" -msgstr "" +msgstr "Ticket aktuell net gülteg" #: pretix/base/models/checkin.py:368 msgid "Check-in annulled" -msgstr "" +msgstr "Check-in annuléiert" #: pretix/base/models/customers.py:62 msgid "Provider name" -msgstr "" +msgstr "Numm vum Fournisseur" #: pretix/base/models/customers.py:67 msgid "Login button label" -msgstr "" +msgstr "Numm vum Login-Knäppchen" #: pretix/base/models/customers.py:71 msgid "Single-sign-on method" -msgstr "" +msgstr "Single-Sign-On-Method" #: pretix/base/models/customers.py:92 pretix/base/models/devices.py:71 #: pretix/base/models/items.py:1676 pretix/base/models/items.py:1952 @@ -4374,12 +4493,18 @@ msgid "" "You can enter any value here to make it easier to match the data with other " "sources. If you do not input one, we will generate one automatically." msgstr "" +"Dir kënnt hei egal wéi eng Valeur aginn, deen et vereinfacht d'Donnéeë mat " +"anere Sourcen ofzegläichen. Wann Dir näischt agitt, generéiere mir eng " +"automatesch Valeur." #: pretix/base/models/customers.py:97 msgid "" "The identifier may only contain letters, numbers, dots, dashes, and " "underscores. It must start and end with a letter or number." msgstr "" +"Dës Feld dierf just Buschtawen, Zuelen, Punkten, Bindestrécher an " +"Ënnerstrécher enthalen. Et muss mat enger Zuel oder engem Buschtaf ufänken " +"an ophalen." #: pretix/base/models/customers.py:202 pretix/control/forms/filter.py:1529 #: pretix/control/forms/filter.py:1601 @@ -4393,13 +4518,13 @@ msgstr "desaktivéiert" #: pretix/base/models/customers.py:330 pretix/base/models/orders.py:1538 #: pretix/base/models/orders.py:3294 pretix/base/settings.py:1179 msgid "Company name" -msgstr "" +msgstr "Numm vun der Firma" #: pretix/base/models/customers.py:334 pretix/base/models/orders.py:1542 #: pretix/base/models/orders.py:3301 pretix/base/settings.py:83 #: pretix/plugins/stripe/payment.py:272 msgid "Select country" -msgstr "" +msgstr "Land auswielen" #: pretix/base/models/customers.py:401 msgctxt "openidconnect" @@ -4414,7 +4539,7 @@ msgstr "Ëffentlech" #: pretix/base/models/customers.py:408 msgctxt "openidconnect" msgid "Authorization code" -msgstr "" +msgstr "Autoriséierungscode" #: pretix/base/models/customers.py:409 msgctxt "openidconnect" @@ -4423,55 +4548,56 @@ msgstr "Implizit" #: pretix/base/models/customers.py:413 msgid "OpenID Connect access (required)" -msgstr "" +msgstr "OpenID Connect Accès (obligatoresch)" #: pretix/base/models/customers.py:414 msgid "Profile data (name, addresses)" -msgstr "" +msgstr "Donnéeë vum Profil (Numm, Adress)" #: pretix/base/models/customers.py:434 msgid "Client type" -msgstr "" +msgstr "Aart vum Client" #: pretix/base/models/customers.py:437 msgid "Grant type" -msgstr "" +msgstr "Aart vum Grant" #: pretix/base/models/customers.py:440 msgid "Require PKCE extension" -msgstr "" +msgstr "PKCE-Erweiderung erfuerderen" #: pretix/base/models/customers.py:452 msgid "Allowed access scopes" -msgstr "" +msgstr "Erlaabten Zugrëffsberäicher" #: pretix/base/models/customers.py:453 msgid "Separate multiple values with spaces" -msgstr "" +msgstr "Méi Valeuren mat engem Espace trennen" #: pretix/base/models/datasync.py:53 msgid "Temporary error, auto-retry limit exceeded" -msgstr "" +msgstr "Temporäre Feeler, Unzuel un automatesch Versich gouf iwwerschratt" #: pretix/base/models/datasync.py:54 msgid "Provider reported a permanent error" -msgstr "" +msgstr "Endgültege Feeler gouf zréckginn" #: pretix/base/models/datasync.py:55 msgid "Misconfiguration, please check provider settings" msgstr "" +"Falsch Konfiguratioun, kontrolléiert wgl. d'Synchroniséierungsastellungen" #: pretix/base/models/datasync.py:56 pretix/base/models/datasync.py:57 msgid "System error, needs manual intervention" -msgstr "" +msgstr "Systemfeeler, erfuerdert eng manuell Interventioun" #: pretix/base/models/devices.py:70 pretix/base/models/items.py:1675 msgid "Internal identifier" -msgstr "" +msgstr "Intern Referenz" #: pretix/base/models/devices.py:90 pretix/base/models/items.py:1788 msgid "This identifier is already used for a different question." -msgstr "" +msgstr "Dës Referenz gëtt scho benotzt, wielt wgl. eng aner." #: pretix/base/models/devices.py:113 pretix/control/forms/checkin.py:196 #: pretix/control/forms/checkin.py:217 pretix/control/forms/filter.py:2421 @@ -4485,26 +4611,26 @@ msgstr "Statioun" #: pretix/base/models/devices.py:131 #: pretix/control/templates/pretixcontrol/organizers/devices.html:83 msgid "Setup date" -msgstr "" +msgstr "Datum vun der Installatioun" #: pretix/base/models/devices.py:134 msgid "Initialization date" -msgstr "" +msgstr "Datum vun der Initialisatioun" #: pretix/base/models/discount.py:49 msgctxt "subevent" msgid "Dates can be mixed without limitation" -msgstr "" +msgstr "Datumer kënnen ouni Limitt gemëscht ginn" #: pretix/base/models/discount.py:50 msgctxt "subevent" msgid "All matching products must be for the same date" -msgstr "" +msgstr "All passend Produite musse fir dee selwechten Datum gëllen" #: pretix/base/models/discount.py:51 msgctxt "subevent" msgid "Each matching product must be for a different date" -msgstr "" +msgstr "All passend Produite musse fir verschidden Datumer gëllen" #: pretix/base/models/discount.py:69 pretix/base/models/items.py:1161 #: pretix/base/models/items.py:1481 pretix/base/models/items.py:1708 @@ -4514,31 +4640,31 @@ msgstr "Positioun" #: pretix/base/models/discount.py:72 msgid "All supported sales channels" -msgstr "" +msgstr "All ënnerstëtzte Verkafskanäl" #: pretix/base/models/discount.py:93 msgid "Event series handling" -msgstr "" +msgstr "Behandlung vun Evenement-Serien" #: pretix/base/models/discount.py:101 msgid "Apply to all products (including newly created ones)" -msgstr "" +msgstr "Fir all Produiten uwennen (inkl. nei erstallte Produiten)" #: pretix/base/models/discount.py:105 msgid "Apply to specific products" -msgstr "" +msgstr "Fir bestëmmte Produiten uwennen" #: pretix/base/models/discount.py:110 msgid "Count add-on products" -msgstr "" +msgstr "Zousazproduiten matzielen" #: pretix/base/models/discount.py:111 pretix/base/models/discount.py:166 msgid "Discounts never apply to bundled products" -msgstr "" +msgstr "Automatesch Remisë gëllen ni fir gruppéiert Produiten" #: pretix/base/models/discount.py:115 pretix/base/models/discount.py:170 msgid "Ignore products discounted by a voucher" -msgstr "" +msgstr "Produiten ignoréieren, déi duerch e Bong eng Remise kruten" #: pretix/base/models/discount.py:116 msgid "" @@ -4547,18 +4673,22 @@ msgid "" "use a voucher only to e.g. unlock a hidden product or gain access to sold-" "out quota will still be considered." msgstr "" +"Wann dës Optioun aktiv ass, kënne Produiten, déi schonn duerch e Bong eng " +"Remise kruten, net fir weider Remisë berücksichtegt ginn. Wann de Bong awer " +"just z.B. fir d'Fräischaltung vun engem verstoppte Produit oder engem " +"ausverkaafte Contingent benotzt gëtt, gëtt dëse berücksichtegt." #: pretix/base/models/discount.py:121 msgid "Minimum number of matching products" -msgstr "" +msgstr "Minimal Unzuel u passende Produiten" #: pretix/base/models/discount.py:125 msgid "Minimum gross value of matching products" -msgstr "" +msgstr "Minimale Brutto-Montant vu passende Produiten" #: pretix/base/models/discount.py:133 msgid "Apply discount to same set of products" -msgstr "" +msgstr "Remise fir déi selwecht Auswiel u Produiten uwennen" #: pretix/base/models/discount.py:134 msgid "" From b9ca68c0beec588f518afd918f7738ef71fefe1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=C3=BAria=20Masclans?= Date: Tue, 28 Oct 2025 14:22:06 +0100 Subject: [PATCH 17/33] Translations: Update Catalan Currently translated at 62.2% (158 of 254 strings) Translation: pretix/pretix (JavaScript parts) Translate-URL: https://translate.pretix.eu/projects/pretix/pretix-js/ca/ powered by weblate --- src/pretix/locale/ca/LC_MESSAGES/djangojs.po | 319 ++++++++++--------- 1 file changed, 165 insertions(+), 154 deletions(-) diff --git a/src/pretix/locale/ca/LC_MESSAGES/djangojs.po b/src/pretix/locale/ca/LC_MESSAGES/djangojs.po index e26d3ad0c7..ca80654709 100644 --- a/src/pretix/locale/ca/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/ca/LC_MESSAGES/djangojs.po @@ -8,22 +8,22 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-21 07:27+0000\n" -"PO-Revision-Date: 2020-12-19 07:00+0000\n" -"Last-Translator: albert \n" -"Language-Team: Catalan \n" +"PO-Revision-Date: 2025-10-28 17:00+0000\n" +"Last-Translator: Núria Masclans \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 5.14\n" #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:56 #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:62 #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:68 msgid "Marked as paid" -msgstr "" +msgstr "Marcat com a pagat" #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:76 msgid "Comment:" @@ -31,110 +31,110 @@ msgstr "Comentari:" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:34 msgid "PayPal" -msgstr "" +msgstr "PayPal" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:35 msgid "Venmo" -msgstr "" +msgstr "Venmo" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:36 #: pretix/static/pretixpresale/js/walletdetection.js:38 msgid "Apple Pay" -msgstr "" +msgstr "Apple Pay" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:37 msgid "Itaú" -msgstr "" +msgstr "Itaú" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:38 msgid "PayPal Credit" -msgstr "" +msgstr "PayPal Credit" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:39 msgid "Credit Card" -msgstr "" +msgstr "Targeta de crèdit" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:40 msgid "PayPal Pay Later" -msgstr "" +msgstr "PayPal Pay Later" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:41 msgid "iDEAL" -msgstr "" +msgstr "iDEAL" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:42 msgid "SEPA Direct Debit" -msgstr "" +msgstr "SEPA Direct Debit" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:43 msgid "Bancontact" -msgstr "" +msgstr "Bancontact" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:44 msgid "giropay" -msgstr "" +msgstr "giropay" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:45 msgid "SOFORT" -msgstr "" +msgstr "SOFORT" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:46 msgid "eps" -msgstr "" +msgstr "eps" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:47 msgid "MyBank" -msgstr "" +msgstr "MyBank" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:48 msgid "Przelewy24" -msgstr "" +msgstr "Przelewy24" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:49 msgid "Verkkopankki" -msgstr "" +msgstr "Verkkopankki" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:50 msgid "PayU" -msgstr "" +msgstr "PayU" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:51 msgid "BLIK" -msgstr "" +msgstr "BLIK" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:52 msgid "Trustly" -msgstr "" +msgstr "Trustly" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:53 msgid "Zimpler" -msgstr "" +msgstr "Zimpler" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:54 msgid "Maxima" -msgstr "" +msgstr "Maxima" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:55 msgid "OXXO" -msgstr "" +msgstr "OXXO" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:56 msgid "Boleto" -msgstr "" +msgstr "Boleto" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:57 msgid "WeChat Pay" -msgstr "" +msgstr "WeChat Pay" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:58 msgid "Mercado Pago" -msgstr "" +msgstr "Mercado Pago" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:167 #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:50 #: pretix/static/pretixpresale/js/ui/cart.js:89 msgid "Continue" -msgstr "" +msgstr "Continua" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225 #: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244 @@ -143,224 +143,225 @@ msgstr "" #: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:317 #: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:341 msgid "Confirming your payment …" -msgstr "" +msgstr "Confirmant el teu pagament…" #: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:254 msgid "Payment method unavailable" -msgstr "" +msgstr "El mètode de pagament no està disponible" #: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:15 #: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:39 msgid "Placed orders" -msgstr "" +msgstr "Comanda realitzada" #: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:15 #: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:39 msgid "Paid orders" -msgstr "" +msgstr "Comandes pagades" #: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:27 msgid "Total revenue" -msgstr "" +msgstr "Facturació total" #: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:15 msgid "Contacting Stripe …" -msgstr "" +msgstr "S'està contactant amb Stripe…" #: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:72 msgid "Total" -msgstr "" +msgstr "Total" #: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291 msgid "Contacting your bank …" -msgstr "" +msgstr "Contactant amb el teu banc…" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:30 msgid "Select a check-in list" -msgstr "" +msgstr "Selecciona una llista d'acreditació" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:31 msgid "No active check-in lists found." -msgstr "" +msgstr "No s'ha trobat cap lllista d'acreditació activa." #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:32 msgid "Switch check-in list" -msgstr "" +msgstr "Canvia la llista d'acreditació" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:33 msgid "Search results" -msgstr "" +msgstr "Resultats de la cerca" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:34 msgid "No tickets found" -msgstr "" +msgstr "No s'han trobat entrades" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:35 msgid "Result" -msgstr "" +msgstr "Resultat" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:36 msgid "This ticket requires special attention" -msgstr "" +msgstr "Aquesta entrada requereix atenció especial" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:37 msgid "Switch direction" -msgstr "" +msgstr "Canvia la direcció" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:38 msgid "Entry" -msgstr "" +msgstr "Entrada" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:39 msgid "Exit" -msgstr "" +msgstr "Sortida" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:40 msgid "Scan a ticket or search and press return…" -msgstr "" +msgstr "Escaneja l'entrada o cerca i prem Retorn…" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:41 msgid "Load more" -msgstr "" +msgstr "Mostra'n més" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:42 msgid "Valid" -msgstr "" +msgstr "Vàlid" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:43 msgid "Unpaid" -msgstr "" +msgstr "No pagat" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:44 #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:45 msgid "Canceled" -msgstr "" +msgstr "Cancel·lat" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:46 msgid "Confirmed" -msgstr "" +msgstr "Confirmat" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:47 msgid "Approval pending" -msgstr "" +msgstr "Pendent d'aprovació" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48 msgid "Redeemed" -msgstr "" +msgstr "Reemborsat" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:49 msgid "Cancel" -msgstr "" +msgstr "Cancel·lar" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:51 #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:60 msgid "Ticket not paid" -msgstr "" +msgstr "Entrada no pagada" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:52 msgid "This ticket is not yet paid. Do you want to continue anyways?" -msgstr "" +msgstr "Aquesta entrada no està pagada. Vols continuar igualment?" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:53 msgid "Additional information required" -msgstr "" +msgstr "Cal informació addicional" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:54 msgid "Valid ticket" -msgstr "" +msgstr "Entrada vàlida" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:55 msgid "Exit recorded" -msgstr "" +msgstr "Sortida registrada" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:56 msgid "Ticket already used" -msgstr "" +msgstr "Entrada ja utilitzada" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:57 msgid "Information required" -msgstr "" +msgstr "Informació requerida" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:58 msgid "Unknown ticket" -msgstr "" +msgstr "Entrada desconeguda" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:59 msgid "Ticket type not allowed here" -msgstr "" +msgstr "Tipus d'entrada no permès aquí" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:61 msgid "Entry not allowed" -msgstr "" +msgstr "Entrada no permesa" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:62 msgid "Ticket code revoked/changed" -msgstr "" +msgstr "Codi d’entrada anul·lat o modificat" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:63 msgid "Ticket blocked" -msgstr "" +msgstr "Entrada bloquejada" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:64 msgid "Ticket not valid at this time" -msgstr "" +msgstr "Entrada no vàlida en aquest moment" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:65 msgid "Order canceled" -msgstr "" +msgstr "S'ha cancel·lat la comanda" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:66 msgid "Ticket code is ambiguous on list" -msgstr "" +msgstr "Codi de l’entrada ambigu a la llista" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:67 msgid "Order not approved" -msgstr "" +msgstr "Comanda no aprovada" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:68 msgid "Checked-in Tickets" -msgstr "" +msgstr "Entrades registrades" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:69 msgid "Valid Tickets" -msgstr "" +msgstr "Entrades vàlides" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:70 msgid "Currently inside" -msgstr "" +msgstr "Actualment dins" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:71 #: pretix/static/pretixcontrol/js/ui/question.js:136 #: pretix/static/pretixpresale/js/ui/questions.js:271 msgid "Yes" -msgstr "" +msgstr "Sí" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:72 #: pretix/static/pretixcontrol/js/ui/question.js:137 #: pretix/static/pretixpresale/js/ui/questions.js:271 msgid "No" -msgstr "" +msgstr "No" #: pretix/static/lightbox/js/lightbox.js:96 msgid "close" -msgstr "" +msgstr "Tanca" #: pretix/static/pretixbase/js/addressform.js:90 #: pretix/static/pretixpresale/js/ui/main.js:525 -#, fuzzy -#| msgid "Cart expired" msgid "required" -msgstr "Cistella expirada" +msgstr "requerit" #: pretix/static/pretixbase/js/asynctask.js:13 msgid "" "Your request is currently being processed. Depending on the size of your " "event, this might take up to a few minutes." msgstr "" +"“La teva sol·licitud s’està processant. Depenent de la mida del " +"l'esdeveniment, aquesta acció pot trigar uns minuts." #: pretix/static/pretixbase/js/asynctask.js:17 msgid "Your request has been queued on the server and will soon be processed." msgstr "" +"La teva sol·licitud s’ha posat en cua al servidor i es processarà aviat." #: pretix/static/pretixbase/js/asynctask.js:21 msgid "" @@ -368,30 +369,36 @@ msgid "" "If this takes longer than two minutes, please contact us or go back in your " "browser and try again." msgstr "" +"La teva sol·licitud ha arribat al servidor, estem esperant que es processi. " +"Si aquesta acció triga més de 2 minuts, contacta'ns o torna enrere al " +"navegador i prova-ho de nou." #: pretix/static/pretixbase/js/asynctask.js:125 #: pretix/static/pretixbase/js/asynctask.js:182 #: pretix/static/pretixbase/js/asynctask.js:186 #: pretix/static/pretixcontrol/js/ui/mail.js:24 msgid "An error of type {code} occurred." -msgstr "" +msgstr "S'ha produït un error de tipus {code}." #: pretix/static/pretixbase/js/asynctask.js:128 msgid "" "We currently cannot reach the server, but we keep trying. Last error code: " "{code}" msgstr "" +"Actualment no podem connectar amb el servidor, però seguim intentant-ho. " +"Últim codi d’error: {code}" #: pretix/static/pretixbase/js/asynctask.js:162 #: pretix/static/pretixcontrol/js/ui/mail.js:21 msgid "The request took too long. Please try again." -msgstr "" +msgstr "Temps d’espera esgotat. Torna-ho a provar." #: pretix/static/pretixbase/js/asynctask.js:188 #: pretix/static/pretixcontrol/js/ui/mail.js:26 msgid "" "We currently cannot reach the server. Please try again. Error code: {code}" msgstr "" +"No es pot connectar amb el servidor. Torna-ho a provar. Codi d’error: {code}" #: pretix/static/pretixbase/js/asynctask.js:216 msgid "We are processing your request …" @@ -403,198 +410,200 @@ msgid "" "than one minute, please check your internet connection and then reload this " "page and try again." msgstr "" +"Hem enviat la teva petició al servidor. Si triga més d'1 minut, comprova la " +"connexió, recarrega la pàgina i torna-ho a provar." #: pretix/static/pretixbase/js/asynctask.js:276 msgid "If this takes longer than a few minutes, please contact us." -msgstr "" +msgstr "Si triga més de pocs minuts, contacta'ns." #: pretix/static/pretixbase/js/asynctask.js:331 msgid "Close message" -msgstr "" +msgstr "Tanca el missatge" #: pretix/static/pretixcontrol/js/clipboard.js:23 msgid "Copied!" -msgstr "" +msgstr "Copiat!" #: pretix/static/pretixcontrol/js/clipboard.js:29 msgid "Press Ctrl-C to copy!" -msgstr "" +msgstr "Prem Ctrl-C per copiar!" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:12 #: pretix/static/pretixcontrol/js/ui/checkinrules.js:18 #: pretix/static/pretixcontrol/js/ui/checkinrules.js:24 msgid "is one of" -msgstr "" +msgstr "forma part de" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:30 msgid "is before" -msgstr "" +msgstr "abans de" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:34 msgid "is after" -msgstr "" +msgstr "després de" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:40 msgid "=" -msgstr "" +msgstr "=" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:99 msgid "Product" -msgstr "" +msgstr "Producte" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:103 msgid "Product variation" -msgstr "" +msgstr "Variació del producte" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:107 msgid "Gate" -msgstr "" +msgstr "Porta" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:111 msgid "Current date and time" -msgstr "" +msgstr "Data i hora actuals" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:115 msgid "Current day of the week (1 = Monday, 7 = Sunday)" -msgstr "" +msgstr "Dia actual de la setmana (1 = Dilluns, 7 = Diumenge)" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:119 msgid "Current entry status" -msgstr "" +msgstr "Estat actual de l'entrada" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:123 msgid "Number of previous entries" -msgstr "" +msgstr "Nombre d'entrades anteriors" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:127 msgid "Number of previous entries since midnight" -msgstr "" +msgstr "Nombre d’entrades anteriors des de la mitjanit" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:131 msgid "Number of previous entries since" -msgstr "" +msgstr "Nombre d’entrades anteriors des de" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:135 msgid "Number of previous entries before" -msgstr "" +msgstr "Nombre d’entrades anteriors abans de" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:139 msgid "Number of days with a previous entry" -msgstr "" +msgstr "Nombre de dies amb una entrada anterior" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:143 msgid "Number of days with a previous entry since" -msgstr "" +msgstr "Nombre de dies amb una entrada anterior des de" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:147 msgid "Number of days with a previous entry before" -msgstr "" +msgstr "Nombre de dies amb una entrada anterior abans de" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:151 msgid "Minutes since last entry (-1 on first entry)" -msgstr "" +msgstr "Minuts des de l'última entrada (-1 per la primera entrada)" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:155 msgid "Minutes since first entry (-1 on first entry)" -msgstr "" +msgstr "Minuts des de la primera entrada (-1 a la primera entrada)" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:182 msgid "All of the conditions below (AND)" -msgstr "" +msgstr "Complir totes les condicions següents" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:183 msgid "At least one of the conditions below (OR)" -msgstr "" +msgstr "Complir almenys una de les condicions següents" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:184 msgid "Event start" -msgstr "" +msgstr "Inici de l'esdeveniment" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:185 msgid "Event end" -msgstr "" +msgstr "Finalització de l'esdeveniment" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:186 msgid "Event admission" -msgstr "" +msgstr "Admissió de l'esdeveniment" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:187 msgid "custom date and time" -msgstr "" +msgstr "Data i hora personalitzades" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:188 msgid "custom time" -msgstr "" +msgstr "Hora personalitzada" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:189 msgid "Tolerance (minutes)" -msgstr "" +msgstr "Tolerància (minuts)" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:190 msgid "Add condition" -msgstr "" +msgstr "Afegeix condició" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:191 msgid "minutes" -msgstr "" +msgstr "en minuts" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:192 msgid "Duplicate" -msgstr "" +msgstr "Duplicat" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:193 msgctxt "entry_status" msgid "present" -msgstr "" +msgstr "present" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:194 msgctxt "entry_status" msgid "absent" -msgstr "" +msgstr "absent" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:289 msgid "Error: Product not found!" -msgstr "" +msgstr "Error: Producte no trobat!" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:296 msgid "Error: Variation not found!" -msgstr "" +msgstr "Error: Variació no trobada!" #: pretix/static/pretixcontrol/js/ui/editor.js:171 msgid "Check-in QR" -msgstr "" +msgstr "Registre amb codi QR" #: pretix/static/pretixcontrol/js/ui/editor.js:549 msgid "The PDF background file could not be loaded for the following reason:" -msgstr "" +msgstr "No s'ha pogut carregar el PDF de fons pel següent motiu:" #: pretix/static/pretixcontrol/js/ui/editor.js:904 msgid "Group of objects" -msgstr "" +msgstr "Grup d'objectes" #: pretix/static/pretixcontrol/js/ui/editor.js:909 msgid "Text object (deprecated)" -msgstr "" +msgstr "Objecte de text (obsolet)" #: pretix/static/pretixcontrol/js/ui/editor.js:911 msgid "Text box" -msgstr "" +msgstr "Quadre de text" #: pretix/static/pretixcontrol/js/ui/editor.js:913 msgid "Barcode area" -msgstr "" +msgstr "Àrea del codi de barres" #: pretix/static/pretixcontrol/js/ui/editor.js:915 msgid "Image area" -msgstr "" +msgstr "Àrea de la imatge" #: pretix/static/pretixcontrol/js/ui/editor.js:917 msgid "Powered by pretix" -msgstr "" +msgstr "Impulsat per pretix" #: pretix/static/pretixcontrol/js/ui/editor.js:919 msgid "Object" -msgstr "" +msgstr "Objecte" #: pretix/static/pretixcontrol/js/ui/editor.js:923 msgid "Ticket design" @@ -602,38 +611,40 @@ msgstr "Disseny del tiquet" #: pretix/static/pretixcontrol/js/ui/editor.js:1292 msgid "Saving failed." -msgstr "" +msgstr "Error en desar." #: pretix/static/pretixcontrol/js/ui/editor.js:1361 #: pretix/static/pretixcontrol/js/ui/editor.js:1412 msgid "Error while uploading your PDF file, please try again." -msgstr "" +msgstr "Error en pujar el fitxer PDF, torna-ho a provar." #: pretix/static/pretixcontrol/js/ui/editor.js:1395 msgid "Do you really want to leave the editor without saving your changes?" -msgstr "" +msgstr "Estàs segur que vols abandonar l'editor sense desar els canvis?" #: pretix/static/pretixcontrol/js/ui/mail.js:19 msgid "An error has occurred." -msgstr "" +msgstr "S'ha produït un error." #: pretix/static/pretixcontrol/js/ui/mail.js:52 msgid "Generating messages …" -msgstr "" +msgstr "Generant missatges…" #: pretix/static/pretixcontrol/js/ui/main.js:69 msgid "Unknown error." -msgstr "" +msgstr "Error desconegut." #: pretix/static/pretixcontrol/js/ui/main.js:292 msgid "Your color has great contrast and will provide excellent accessibility." -msgstr "" +msgstr "El teu color té molt contrast i garanteix bona accessibilitat." #: pretix/static/pretixcontrol/js/ui/main.js:296 msgid "" "Your color has decent contrast and is sufficient for minimum accessibility " "requirements." msgstr "" +"El teu color té un contrast acceptable i compleix els requisits mínims " +"d’accessibilitat." #: pretix/static/pretixcontrol/js/ui/main.js:300 msgid "" @@ -644,51 +655,51 @@ msgstr "" #: pretix/static/pretixcontrol/js/ui/main.js:417 #: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "Search query" -msgstr "" +msgstr "Consulta de cerca" #: pretix/static/pretixcontrol/js/ui/main.js:435 msgid "All" -msgstr "" +msgstr "Tots" #: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "None" -msgstr "" +msgstr "Cap" #: pretix/static/pretixcontrol/js/ui/main.js:440 msgid "Selected only" -msgstr "" +msgstr "Només seleccionats" #: pretix/static/pretixcontrol/js/ui/main.js:813 msgid "Enter page number between 1 and %(max)s." -msgstr "" +msgstr "Introdueix un número de pàgina entre 1 i %(max)s." #: pretix/static/pretixcontrol/js/ui/main.js:816 msgid "Invalid page number." -msgstr "" +msgstr "Número de pàgina no vàlid." #: pretix/static/pretixcontrol/js/ui/main.js:974 msgid "Use a different name internally" -msgstr "" +msgstr "Utilitza un nom diferent internament" #: pretix/static/pretixcontrol/js/ui/main.js:1014 msgid "Click to close" -msgstr "" +msgstr "Prem per tancar" #: pretix/static/pretixcontrol/js/ui/main.js:1095 msgid "You have unsaved changes!" -msgstr "" +msgstr "Tens canvis sense desar!" #: pretix/static/pretixcontrol/js/ui/orderchange.js:25 msgid "Calculating default price…" -msgstr "" +msgstr "Calculant el preu per defecte…" #: pretix/static/pretixcontrol/js/ui/plugins.js:69 msgid "No results" -msgstr "" +msgstr "Cap resultat" #: pretix/static/pretixcontrol/js/ui/question.js:41 msgid "Others" -msgstr "" +msgstr "Altres" #: pretix/static/pretixcontrol/js/ui/question.js:81 msgid "Count" @@ -697,8 +708,8 @@ msgstr "Quantitat" #: pretix/static/pretixcontrol/js/ui/subevent.js:112 msgid "(one more date)" msgid_plural "({num} more dates)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "(una data més)" +msgstr[1] "({num} dates més)" #: pretix/static/pretixpresale/js/ui/cart.js:47 #, fuzzy From 8676033fe1bb034c506b0cde590b23e1bdb7f9ec Mon Sep 17 00:00:00 2001 From: Sven Muhlen Date: Tue, 28 Oct 2025 10:31:11 +0100 Subject: [PATCH 18/33] Translations: Update Luxembourgish Currently translated at 100.0% (254 of 254 strings) Translation: pretix/pretix (JavaScript parts) Translate-URL: https://translate.pretix.eu/projects/pretix/pretix-js/lb/ powered by weblate --- src/pretix/locale/lb/LC_MESSAGES/djangojs.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pretix/locale/lb/LC_MESSAGES/djangojs.po b/src/pretix/locale/lb/LC_MESSAGES/djangojs.po index 8749247ff9..7aa98e053b 100644 --- a/src/pretix/locale/lb/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/lb/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-21 07:27+0000\n" -"PO-Revision-Date: 2025-10-27 21:00+0000\n" +"PO-Revision-Date: 2025-10-28 17:00+0000\n" "Last-Translator: Sven Muhlen \n" "Language-Team: Luxembourgish \n" @@ -242,7 +242,7 @@ msgstr "Confirméiert" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:47 msgid "Approval pending" -msgstr "Zouloossung steet op" +msgstr "Fräischaltung steet op" #: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48 msgid "Redeemed" From e386ed43524519f3e52880e56d81fc17d6439dec Mon Sep 17 00:00:00 2001 From: Sven Muhlen Date: Tue, 28 Oct 2025 10:42:42 +0100 Subject: [PATCH 19/33] Translations: Update Luxembourgish Currently translated at 26.8% (1639 of 6094 strings) Translation: pretix/pretix Translate-URL: https://translate.pretix.eu/projects/pretix/pretix/lb/ powered by weblate --- src/pretix/locale/lb/LC_MESSAGES/django.po | 786 ++++++++++----------- 1 file changed, 393 insertions(+), 393 deletions(-) diff --git a/src/pretix/locale/lb/LC_MESSAGES/django.po b/src/pretix/locale/lb/LC_MESSAGES/django.po index 85fa2f81a2..297d9a3507 100644 --- a/src/pretix/locale/lb/LC_MESSAGES/django.po +++ b/src/pretix/locale/lb/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-21 07:26+0000\n" -"PO-Revision-Date: 2025-10-27 21:00+0000\n" +"PO-Revision-Date: 2025-10-28 17:00+0000\n" "Last-Translator: Sven Muhlen \n" "Language-Team: Luxembourgish \n" @@ -4839,11 +4839,11 @@ msgstr "Pluginen" #: pretix/presale/templates/pretixpresale/fragment_event_list_status.html:7 #: pretix/presale/views/widget.py:728 msgid "Event series" -msgstr "" +msgstr "Evenement-Serie" #: pretix/base/models/event.py:676 pretix/base/models/event.py:1568 msgid "Seating plan" -msgstr "" +msgstr "Sëtzplang" #: pretix/base/models/event.py:683 pretix/base/models/items.py:675 msgid "Sell on all sales channels" @@ -4923,7 +4923,7 @@ msgstr "" #: pretix/base/models/event.py:1565 pretix/base/settings.py:3145 msgid "Frontpage text" -msgstr "" +msgstr "Text op der Startsäit" #: pretix/base/models/event.py:1582 msgid "Date in event series" @@ -4947,7 +4947,7 @@ msgstr "" #: pretix/base/models/event.py:1764 msgid "Default value" -msgstr "" +msgstr "Standard-Valeur" #: pretix/base/models/event.py:1766 #: pretix/control/templates/pretixcontrol/organizers/properties.html:50 @@ -4966,7 +4966,7 @@ msgstr "" #: pretix/base/models/event.py:1775 pretix/base/models/items.py:2253 msgid "Valid values" -msgstr "" +msgstr "Erlaabte Valeuren" #: pretix/base/models/event.py:1778 #: pretix/control/templates/pretixcontrol/organizers/properties.html:45 @@ -4982,7 +4982,7 @@ msgstr "" #: pretix/base/models/event.py:1782 pretix/control/forms/organizer.py:269 #: pretix/control/forms/organizer.py:273 msgid "Public name" -msgstr "" +msgstr "Ëffentlechen Numm" #: pretix/base/models/event.py:1786 #: pretix/control/templates/pretixcontrol/organizers/properties.html:40 @@ -5002,11 +5002,11 @@ msgstr "" #: pretix/base/models/event.py:1877 pretix/base/models/organizer.py:582 msgid "Link text" -msgstr "" +msgstr "Linktext" #: pretix/base/models/event.py:1880 pretix/base/models/organizer.py:585 msgid "Link URL" -msgstr "" +msgstr "Link-URL" #: pretix/base/models/exports.py:42 pretix/control/navigation.py:229 #: pretix/control/navigation.py:662 @@ -5015,7 +5015,7 @@ msgstr "Export" #: pretix/base/models/exports.py:59 msgid "Additional recipients" -msgstr "" +msgstr "Zousätzlech Empfänger" #: pretix/base/models/exports.py:61 pretix/base/models/exports.py:66 #: pretix/base/models/exports.py:71 pretix/control/forms/event.py:989 @@ -5083,11 +5083,11 @@ msgstr "" #: pretix/base/models/giftcards.py:227 pretix/base/models/giftcards.py:231 msgid "Manual transaction" -msgstr "" +msgstr "Manuell Transaktioun" #: pretix/base/models/invoices.py:122 msgid "pending transmission" -msgstr "" +msgstr "waart op Iwwerdroung" #: pretix/base/models/invoices.py:123 msgid "currently being transmitted" @@ -5120,11 +5120,11 @@ msgstr "" #, python-format msgctxt "invoice" msgid "VAT-ID: %s" -msgstr "" +msgstr "TVA-Nummer: %s" #: pretix/base/models/items.py:93 msgid "Category name" -msgstr "" +msgstr "Numm vun der Kategorie" #: pretix/base/models/items.py:97 pretix/base/models/items.py:484 msgid "" @@ -5133,7 +5133,7 @@ msgstr "" #: pretix/base/models/items.py:101 msgid "Category description" -msgstr "" +msgstr "Beschreiwung vun der Kategorie" #: pretix/base/models/items.py:108 msgid "Products in this category are add-on products" @@ -5149,7 +5149,7 @@ msgstr "" #: pretix/base/models/items.py:114 pretix/base/models/items.py:159 #: pretix/control/forms/item.py:97 msgid "Normal category" -msgstr "" +msgstr "Normal Kategorie" #: pretix/base/models/items.py:115 pretix/control/forms/item.py:110 msgid "Normal + cross-selling category" @@ -5157,7 +5157,7 @@ msgstr "" #: pretix/base/models/items.py:116 pretix/control/forms/item.py:105 msgid "Cross-selling category" -msgstr "" +msgstr "Cross-Selling-Kategorie" #: pretix/base/models/items.py:124 msgid "Always show in cross-selling step" @@ -5174,7 +5174,7 @@ msgstr "" #: pretix/base/models/items.py:129 msgid "Cross-selling condition" -msgstr "" +msgstr "Cross-Selling-Konditioun" #: pretix/base/models/items.py:137 msgid "Cross-selling condition products" @@ -5185,16 +5185,16 @@ msgstr "" #: pretix/control/templates/pretixcontrol/items/categories.html:5 #: pretix/control/templates/pretixcontrol/items/categories.html:33 msgid "Product categories" -msgstr "" +msgstr "Kategorie vu Produiten" #: pretix/base/models/items.py:149 #, python-brace-format msgid "{category} ({category_type})" -msgstr "" +msgstr "{category} ({category_type})" #: pretix/base/models/items.py:155 msgid "Add-on category" -msgstr "" +msgstr "Kategorie vu Zousazproduiten" #: pretix/base/models/items.py:222 pretix/base/models/items.py:278 msgid "Disable product for this date" @@ -5220,7 +5220,7 @@ msgstr "" #: pretix/base/models/items.py:438 msgid "Dynamic validity" -msgstr "" +msgstr "Dynamesch Gültegkeet" #: pretix/base/models/items.py:444 pretix/control/forms/item.py:668 #: pretix/control/templates/pretixcontrol/subevents/fragment_unavail_mode_indicator.html:3 @@ -5280,7 +5280,7 @@ msgstr "" #: pretix/base/models/items.py:512 pretix/base/models/items.py:1176 msgid "Suggested price" -msgstr "" +msgstr "Proposéierte Präis" #: pretix/base/models/items.py:513 pretix/base/models/items.py:1177 msgid "" @@ -5321,7 +5321,7 @@ msgstr "" #: pretix/base/models/items.py:556 pretix/control/forms/item.py:633 msgid "Product picture" -msgstr "" +msgstr "Bild vum Produit" #: pretix/base/models/items.py:585 msgctxt "hidden_if_available_legacy" @@ -5609,7 +5609,7 @@ msgstr "" #: pretix/base/models/items.py:1183 msgid "Require approval" -msgstr "" +msgstr "Muss fräigeschalt ginn" #: pretix/base/models/items.py:1185 msgid "" @@ -5623,7 +5623,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/membershiptypes.html:4 #: pretix/control/templates/pretixcontrol/organizers/membershiptypes.html:6 msgid "Membership types" -msgstr "" +msgstr "Aarte vu Memberschaften" #: pretix/base/models/items.py:1207 msgid "This variation will not be sold before the given date." @@ -5657,15 +5657,15 @@ msgstr "" #: pretix/base/models/items.py:1258 #: pretix/control/templates/pretixcontrol/item/create.html:111 msgid "Product variations" -msgstr "" +msgstr "Varianten" #: pretix/base/models/items.py:1463 msgid "Minimum number" -msgstr "" +msgstr "Minimal Unzuel" #: pretix/base/models/items.py:1467 msgid "Maximum number" -msgstr "" +msgstr "Maximal Unzuel" #: pretix/base/models/items.py:1471 msgid "Add-Ons are included in the price" @@ -5703,11 +5703,11 @@ msgstr "" #: pretix/base/models/items.py:1543 msgid "Bundled item" -msgstr "" +msgstr "Gruppéierte Produit" #: pretix/base/models/items.py:1549 msgid "Bundled variation" -msgstr "" +msgstr "Gruppéiert Variant" #: pretix/base/models/items.py:1560 msgid "Designated price part" @@ -5747,7 +5747,7 @@ msgstr "" #: pretix/base/models/items.py:1650 msgid "Multiline text" -msgstr "" +msgstr "Text (méi Zeilen)" #: pretix/base/models/items.py:1651 msgid "Yes/No" @@ -5763,7 +5763,7 @@ msgstr "" #: pretix/base/models/items.py:1654 msgid "File upload" -msgstr "" +msgstr "Upload vu Fichieren" #: pretix/base/models/items.py:1657 #: pretix/control/templates/pretixcontrol/event/settings.html:240 @@ -5783,7 +5783,7 @@ msgstr "" #: pretix/base/models/items.py:1686 msgid "Help text" -msgstr "" +msgstr "Hëllefstext" #: pretix/base/models/items.py:1687 msgid "If the question needs to be explained or clarified, do it here!" @@ -5791,12 +5791,12 @@ msgstr "" #: pretix/base/models/items.py:1693 msgid "Question type" -msgstr "" +msgstr "Aart vun der Äntwert" #: pretix/base/models/items.py:1697 #: pretix/control/templates/pretixcontrol/items/questions.html:55 msgid "Required question" -msgstr "" +msgstr "Äntwert obligatoresch" #: pretix/base/models/items.py:1704 msgid "This question will be asked to buyers of the selected products" @@ -5817,7 +5817,7 @@ msgstr "" #: pretix/base/models/items.py:1721 #: pretix/control/templates/pretixcontrol/items/questions.html:66 msgid "Hidden question" -msgstr "" +msgstr "Verstoppte Fro" #: pretix/base/models/items.py:1722 msgid "This question will only show up in the backend." @@ -5830,7 +5830,7 @@ msgstr "" #: pretix/base/models/items.py:1734 pretix/base/models/items.py:1740 #: pretix/base/models/items.py:1746 msgid "Minimum value" -msgstr "" +msgstr "Minimal Valeur" #: pretix/base/models/items.py:1735 pretix/base/models/items.py:1738 #: pretix/base/models/items.py:1741 pretix/base/models/items.py:1744 @@ -5842,11 +5842,11 @@ msgstr "" #: pretix/base/models/items.py:1737 pretix/base/models/items.py:1743 #: pretix/base/models/items.py:1749 msgid "Maximum value" -msgstr "" +msgstr "Maximal Valeur" #: pretix/base/models/items.py:1752 msgid "Maximum length" -msgstr "" +msgstr "Maximal Längt" #: pretix/base/models/items.py:1758 msgid "Validate file to be a portrait" @@ -5929,16 +5929,16 @@ msgstr "" #: pretix/base/models/items.py:1988 msgid "Question option" -msgstr "" +msgstr "Option vun der Fro" #: pretix/base/models/items.py:1989 msgid "Question options" -msgstr "" +msgstr "Optiounen vun der Fro" #: pretix/base/models/items.py:2074 pretix/control/forms/event.py:1725 #: pretix/control/templates/pretixcontrol/items/quotas.html:56 msgid "Total capacity" -msgstr "" +msgstr "Gesamtkapazitéit" #: pretix/base/models/items.py:2076 pretix/control/forms/item.py:456 msgid "Leave empty for an unlimited number of tickets." @@ -6076,7 +6076,7 @@ msgstr "Annuléiert" #: pretix/control/templates/pretixcontrol/organizers/customer.html:117 #: pretix/presale/templates/pretixpresale/organizers/customer_membership.html:28 msgid "Membership type" -msgstr "" +msgstr "Typ vu Memberschaft" #: pretix/base/models/orders.py:202 msgid "pending" @@ -6100,7 +6100,7 @@ msgstr "Sprooch" #: pretix/base/models/orders.py:269 pretix/control/forms/filter.py:603 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/refund_export.html:57 msgid "Total amount" -msgstr "" +msgstr "Komplette Montant" #: pretix/base/models/orders.py:273 pretix/base/models/vouchers.py:296 msgid "" @@ -6128,7 +6128,7 @@ msgstr "" #: pretix/base/models/orders.py:301 pretix/base/models/orders.py:1526 msgid "Meta information" -msgstr "" +msgstr "Meta-Informatiounen" #: pretix/base/models/orders.py:305 msgid "API meta information" @@ -6137,12 +6137,12 @@ msgstr "" #: pretix/base/models/orders.py:414 pretix/plugins/sendmail/forms.py:236 #: pretix/plugins/sendmail/forms.py:389 pretix/plugins/sendmail/views.py:269 msgid "approval pending" -msgstr "" +msgstr "Fräischaltung steet op" #: pretix/base/models/orders.py:416 msgctxt "order state" msgid "pending (confirmed)" -msgstr "" +msgstr "steet op (confirméiert)" #: pretix/base/models/orders.py:418 msgid "canceled (paid fee)" @@ -6225,12 +6225,12 @@ msgstr "rembourséiert" #: pretix/base/models/orders.py:1756 pretix/base/models/orders.py:2195 #: pretix/base/shredder.py:633 msgid "Payment information" -msgstr "" +msgstr "Bezuelungs-Informatiounen" #: pretix/base/models/orders.py:2136 msgctxt "refund_state" msgid "started externally" -msgstr "" +msgstr "extern gestart" #: pretix/base/models/orders.py:2137 msgctxt "refund_state" @@ -6240,7 +6240,7 @@ msgstr "erstallt" #: pretix/base/models/orders.py:2138 msgctxt "refund_state" msgid "in transit" -msgstr "" +msgstr "ënnerwee" #: pretix/base/models/orders.py:2139 msgctxt "refund_state" @@ -6275,7 +6275,7 @@ msgstr "Extern" #: pretix/base/models/orders.py:2190 #: pretix/control/templates/pretixcontrol/order/refund_choose.html:198 msgid "Refund reason" -msgstr "" +msgstr "Grond fir de Remboursement" #: pretix/base/models/orders.py:2191 #: pretix/control/templates/pretixcontrol/order/refund_choose.html:199 @@ -6286,32 +6286,32 @@ msgstr "" #: pretix/base/models/orders.py:2311 msgid "Service fee" -msgstr "" +msgstr "Beaarbechtungskäschten" #: pretix/base/models/orders.py:2312 msgid "Payment fee" -msgstr "" +msgstr "Bezuelungskäschten" #: pretix/base/models/orders.py:2313 msgid "Shipping fee" -msgstr "" +msgstr "Versandkäschten" #: pretix/base/models/orders.py:2314 #: pretix/control/templates/pretixcontrol/order/index.html:157 msgid "Cancellation fee" -msgstr "" +msgstr "Annuléierungskäschten" #: pretix/base/models/orders.py:2315 msgid "Insurance fee" -msgstr "" +msgstr "Versécherungskäschten" #: pretix/base/models/orders.py:2316 msgid "Late fee" -msgstr "" +msgstr "Manungskäschten" #: pretix/base/models/orders.py:2317 msgid "Other fees" -msgstr "" +msgstr "Aner Käschten" #: pretix/base/models/orders.py:2318 pretix/base/payment.py:1374 #: pretix/base/payment.py:1450 pretix/base/settings.py:992 @@ -6321,7 +6321,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/order_giftcard.html:7 #: pretix/presale/templates/pretixpresale/event/position_giftcard.html:7 msgid "Gift card" -msgstr "" +msgstr "Bong" #: pretix/base/models/orders.py:2323 #: pretix/control/templates/pretixcontrol/organizers/giftcard.html:82 @@ -6333,7 +6333,7 @@ msgstr "Valeur" #: pretix/base/models/orders.py:2571 msgid "Order position" -msgstr "" +msgstr "Positioun vun der Bestellung" #: pretix/base/models/orders.py:3116 msgid "Cart ID (e.g. session key)" @@ -6345,15 +6345,15 @@ msgstr "" #: pretix/base/models/orders.py:3156 msgid "Cart position" -msgstr "" +msgstr "Positioun am Weenchen" #: pretix/base/models/orders.py:3157 msgid "Cart positions" -msgstr "" +msgstr "Produiten am Weenchen" #: pretix/base/models/orders.py:3293 msgid "Business customer" -msgstr "" +msgstr "Professionelle Client" #: pretix/base/models/orders.py:3309 msgid "This reference will be printed on your invoice for your convenience." @@ -6361,7 +6361,7 @@ msgstr "" #: pretix/base/models/orders.py:3436 msgid "Transmission type" -msgstr "" +msgstr "Aart vun der Iwwerdroung" #: pretix/base/models/orders.py:3534 #: pretix/plugins/badges/templates/pretixplugins/badges/control_order_position_buttons.html:9 @@ -6401,12 +6401,12 @@ msgstr "Organisateuren" #: pretix/base/models/organizer.py:350 #: pretix/control/templates/pretixcontrol/organizers/teams.html:35 msgid "Team name" -msgstr "" +msgstr "Numm vum Team" #: pretix/base/models/organizer.py:351 #: pretix/control/templates/pretixcontrol/organizers/team_members.html:13 msgid "Team members" -msgstr "" +msgstr "Memberen vum Team" #: pretix/base/models/organizer.py:355 msgid "Require all members of this team to use two-factor authentication" @@ -6538,26 +6538,26 @@ msgstr "" #: pretix/base/models/seating.py:199 #, python-brace-format msgid "Row {number}" -msgstr "" +msgstr "Rei {number}" #: pretix/base/models/seating.py:204 #, python-brace-format msgid "Seat {number}" -msgstr "" +msgstr "Plaz {number}" #: pretix/base/models/tax.py:144 msgid "Standard rates" -msgstr "" +msgstr "Standard-Tariffer" #: pretix/base/models/tax.py:148 msgctxt "tax_code" msgid "Standard rate" -msgstr "" +msgstr "Standard-Tarif" #: pretix/base/models/tax.py:152 msgctxt "tax_code" msgid "Reduced rate" -msgstr "" +msgstr "Reduzéierten Tarif" #: pretix/base/models/tax.py:156 msgctxt "tax_code" @@ -6568,11 +6568,11 @@ msgstr "" #: pretix/base/models/tax.py:164 msgctxt "tax_code" msgid "Reverse charge" -msgstr "" +msgstr "Autoliquidatioun" #: pretix/base/models/tax.py:168 msgid "Tax free" -msgstr "" +msgstr "Steierfräi" #: pretix/base/models/tax.py:171 msgctxt "tax_code" @@ -6587,7 +6587,7 @@ msgstr "" #: pretix/base/models/tax.py:177 msgctxt "tax_code" msgid "Zero-rated goods" -msgstr "" +msgstr "Produit mat Steiersaz vu 0%" #: pretix/base/models/tax.py:180 msgctxt "tax_code" @@ -6601,7 +6601,7 @@ msgstr "" #: pretix/base/models/tax.py:187 msgid "Special cases" -msgstr "" +msgstr "Speziell Fäll" #: pretix/base/models/tax.py:189 msgctxt "tax_code" @@ -6688,7 +6688,7 @@ msgstr "" #: pretix/base/models/tax.py:325 msgid "Official name" -msgstr "" +msgstr "Offiziellen Numm" #: pretix/base/models/tax.py:326 msgid "Should be short, e.g. \"VAT\"" @@ -6697,7 +6697,7 @@ msgstr "" #: pretix/base/models/tax.py:330 pretix/control/forms/event.py:1523 #: pretix/control/templates/pretixcontrol/order/transactions.html:22 msgid "Tax code" -msgstr "" +msgstr "Steiercodéierung" #: pretix/base/models/tax.py:331 msgid "" @@ -6742,7 +6742,7 @@ msgstr "" #: pretix/base/models/tax.py:374 pretix/plugins/stripe/payment.py:299 msgid "Merchant country" -msgstr "" +msgstr "Land vum Händler" #: pretix/base/models/tax.py:376 msgid "" @@ -6793,7 +6793,7 @@ msgstr "" #: pretix/base/models/vouchers.py:171 msgid "No effect" -msgstr "" +msgstr "Keng Ännerung" #: pretix/base/models/vouchers.py:172 msgid "Set product price to" @@ -6862,7 +6862,7 @@ msgstr "" #: pretix/base/models/vouchers.py:284 msgid "Specific seat" -msgstr "" +msgstr "Zougewise Sëtzplaz" #: pretix/base/models/vouchers.py:291 msgid "" @@ -6962,7 +6962,7 @@ msgstr "" #: pretix/base/models/waitinglist.py:84 msgid "Assigned voucher" -msgstr "" +msgstr "Zougewisene Bong" #: pretix/base/models/waitinglist.py:93 msgid "The product the user waits for." @@ -7028,15 +7028,15 @@ msgstr "Datumer" #: pretix/plugins/reports/accountingreport.py:318 #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442 msgid "Net total" -msgstr "" +msgstr "Total (netto)" #: pretix/base/notifications.py:202 msgid "Pending amount" -msgstr "" +msgstr "Oppene Montant" #: pretix/base/notifications.py:222 msgid "Purchased products" -msgstr "" +msgstr "Bestellte Produiten" #: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384 #: pretix/base/services/placeholders.py:393 @@ -7105,7 +7105,7 @@ msgstr "" #: pretix/base/notifications.py:299 msgid "Refund requested" -msgstr "" +msgstr "Remboursement ugefrot" #: pretix/base/notifications.py:300 #, python-brace-format @@ -7115,12 +7115,12 @@ msgstr "" #: pretix/base/payment.py:86 msgctxt "payment" msgid "Apple Pay" -msgstr "" +msgstr "Apple Pay" #: pretix/base/payment.py:87 msgctxt "payment" msgid "Google Pay" -msgstr "" +msgstr "Google Pay" #: pretix/base/payment.py:119 pretix/base/payment.py:1610 msgid "You cannot pay with gift cards when buying a gift card." @@ -7170,7 +7170,7 @@ msgstr "" #: pretix/base/payment.py:315 #: pretix/presale/templates/pretixpresale/event/order.html:116 msgid "Pay now" -msgstr "" +msgstr "Elo bezuelen" #: pretix/base/payment.py:389 msgid "Enable payment method" @@ -7210,11 +7210,11 @@ msgstr "" #: pretix/base/payment.py:428 pretix/base/payment.py:437 msgid "Additional fee" -msgstr "" +msgstr "Zousätzlech Käschten" #: pretix/base/payment.py:429 msgid "Absolute value" -msgstr "" +msgstr "Absolut Valeur" #: pretix/base/payment.py:438 msgid "Percentage of the order total." @@ -7315,14 +7315,14 @@ msgstr "" #: pretix/base/payment.py:1168 msgid "Box office" -msgstr "" +msgstr "Guichet" #: pretix/base/payment.py:1216 pretix/base/payment.py:1235 #: pretix/plugins/manualpayment/apps.py:30 #: pretix/plugins/manualpayment/apps.py:33 #: pretix/plugins/manualpayment/apps.py:39 msgid "Manual payment" -msgstr "" +msgstr "Manuell Bezuelung" #: pretix/base/payment.py:1221 pretix/plugins/banktransfer/payment.py:195 msgid "" @@ -7416,24 +7416,24 @@ msgstr "" #: pretix/base/pdf.py:123 pretix/control/forms/event.py:1778 #: pretix/control/templates/pretixcontrol/items/index.html:38 msgid "Product name" -msgstr "" +msgstr "Numm vum Produit" #: pretix/base/pdf.py:124 pretix/base/services/tickets.py:98 #: pretix/control/views/event.py:888 pretix/control/views/pdf.py:94 msgid "Sample product" -msgstr "" +msgstr "Beispill vun engem Produit" #: pretix/base/pdf.py:128 msgid "Variation name" -msgstr "" +msgstr "Numm vun der Variant" #: pretix/base/pdf.py:129 msgid "Sample variation" -msgstr "" +msgstr "Beispill vun enger Variant" #: pretix/base/pdf.py:133 msgid "Product description" -msgstr "" +msgstr "Beschreiwung vum Produit" #: pretix/base/pdf.py:134 pretix/base/services/tickets.py:99 #: pretix/control/views/event.py:889 pretix/control/views/pdf.py:95 @@ -7458,11 +7458,11 @@ msgstr "" #: pretix/base/pdf.py:154 msgid "Ticket category" -msgstr "" +msgstr "Kategorie vum Ticket" #: pretix/base/pdf.py:161 pretix/base/pdf.py:166 pretix/base/pdf.py:175 msgid "123.45 EUR" -msgstr "" +msgstr "123,45 EUR" #: pretix/base/pdf.py:165 msgid "Price including bundled products" @@ -7479,14 +7479,14 @@ msgstr "" #: pretix/base/services/placeholders.py:669 #: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:890 msgid "John Doe" -msgstr "" +msgstr "Maus Ketti" #: pretix/base/pdf.py:189 pretix/base/pdf.py:347 #: pretix/base/services/tickets.py:116 pretix/control/views/pdf.py:110 #: pretix/control/views/pdf.py:116 pretix/control/views/pdf.py:123 #: pretix/control/views/pdf.py:128 msgid "Sample company" -msgstr "" +msgstr "Beispillsfirma s.à.r.l." #: pretix/base/pdf.py:193 msgid "Full attendee address" @@ -7503,7 +7503,7 @@ msgstr "" #: pretix/base/pdf.py:198 msgid "Attendee street" -msgstr "" +msgstr "Strooss vum Participant" #: pretix/base/pdf.py:203 msgid "Attendee ZIP code" @@ -7511,15 +7511,15 @@ msgstr "" #: pretix/base/pdf.py:208 msgid "Attendee city" -msgstr "" +msgstr "Stad vum Participant" #: pretix/base/pdf.py:213 msgid "Attendee state" -msgstr "" +msgstr "Staat vum Participant" #: pretix/base/pdf.py:218 msgid "Attendee country" -msgstr "" +msgstr "Land vum Participant" #: pretix/base/pdf.py:230 msgid "Pseudonymization ID (lead scanning)" @@ -7547,7 +7547,7 @@ msgstr "" #: pretix/base/pdf.py:256 msgid "2017-05-31 20:00" -msgstr "" +msgstr "31.05.2016 20:00" #: pretix/base/pdf.py:263 msgid "Event begin date" @@ -7582,7 +7582,7 @@ msgstr "" #: pretix/base/pdf.py:282 msgid "2017-05-31 22:00" -msgstr "" +msgstr "31.05.2016 22:00" #: pretix/base/pdf.py:298 msgid "22:00" @@ -7599,7 +7599,7 @@ msgstr "" #: pretix/base/pdf.py:311 pretix/base/pdf.py:407 pretix/base/pdf.py:431 #: pretix/base/pdf.py:455 pretix/base/pdf.py:479 pretix/base/pdf.py:522 msgid "2017-05-31 19:00" -msgstr "" +msgstr "31.05.2016 19:00" #: pretix/base/pdf.py:318 msgid "Event admission time" @@ -7612,11 +7612,11 @@ msgstr "19:00" #: pretix/base/pdf.py:326 msgid "Event location" -msgstr "" +msgstr "Plaz vum Evenement" #: pretix/base/pdf.py:327 pretix/base/settings.py:1201 msgid "Random City" -msgstr "" +msgstr "Iergendeng Stad" #: pretix/base/pdf.py:352 msgid "Sesame Street 42" @@ -7628,7 +7628,7 @@ msgstr "12345" #: pretix/base/pdf.py:362 pretix/base/services/invoices.py:576 msgid "Sample city" -msgstr "" +msgstr "Beispill vun enger Stad" #: pretix/base/pdf.py:366 msgid "Invoice address state" @@ -7636,7 +7636,7 @@ msgstr "" #: pretix/base/pdf.py:367 msgid "Sample State" -msgstr "" +msgstr "Beispill vun engem Staat" #: pretix/base/pdf.py:372 msgid "Atlantis" @@ -7656,7 +7656,7 @@ msgstr "" #: pretix/control/forms/filter.py:1411 #: pretix/control/templates/pretixcontrol/organizers/index.html:42 msgid "Organizer name" -msgstr "" +msgstr "Numm vum Organisateur" #: pretix/base/pdf.py:384 msgid "Event organizer company" @@ -7676,7 +7676,7 @@ msgstr "" #: pretix/base/pdf.py:398 msgid "Printing date" -msgstr "" +msgstr "Datum vum Drock" #: pretix/base/pdf.py:406 msgid "Printing date and time" @@ -7684,11 +7684,11 @@ msgstr "" #: pretix/base/pdf.py:414 msgid "Printing time" -msgstr "" +msgstr "Auerzäit vum Drock" #: pretix/base/pdf.py:422 pretix/control/forms/item.py:738 msgid "Purchase date" -msgstr "" +msgstr "Datum vum Kaf" #: pretix/base/pdf.py:430 msgid "Purchase date and time" @@ -7696,7 +7696,7 @@ msgstr "" #: pretix/base/pdf.py:438 msgid "Purchase time" -msgstr "" +msgstr "Auerzäit vum Kaf" #: pretix/base/pdf.py:446 msgid "Validity start date" @@ -7737,19 +7737,19 @@ msgstr "" #: pretix/base/pdf.py:502 pretix/base/pdf.py:508 #: pretix/control/forms/orders.py:344 msgid "General admission" -msgstr "" +msgstr "Fräi Auswiel vun der Sëtzplaz" #: pretix/base/pdf.py:505 msgid "Seat: zone" -msgstr "" +msgstr "Sëtz: Beräich" #: pretix/base/pdf.py:506 msgid "Ground floor" -msgstr "" +msgstr "Rez-de-chaussée" #: pretix/base/pdf.py:511 msgid "Seat: row" -msgstr "" +msgstr "Sëtz: Rei" #: pretix/base/pdf.py:516 msgid "Seat: seat number" @@ -7772,12 +7772,12 @@ msgstr "" #: pretix/plugins/ticketoutputpdf/exporters.py:102 #, python-brace-format msgid "Question: {question}" -msgstr "" +msgstr "Fro: {question}" #: pretix/base/pdf.py:612 pretix/base/pdf.py:618 #, python-brace-format msgid "" -msgstr "" +msgstr "<Äntwert: {question}>" #: pretix/base/pdf.py:659 msgid "Attendee name for salutation" @@ -7787,7 +7787,7 @@ msgstr "" #: pretix/base/services/placeholders.py:696 #: pretix/control/forms/organizer.py:664 msgid "Mr Doe" -msgstr "" +msgstr "Här Mustermann" #: pretix/base/pdf.py:666 pretix/base/pdf.py:673 #: pretix/plugins/badges/exporters.py:501 @@ -7831,7 +7831,7 @@ msgstr "" #: pretix/base/plugins.py:143 msgid "API features" -msgstr "" +msgstr "API-Funktiounen" #: pretix/base/reldate.py:38 msgid "Event start" @@ -7847,11 +7847,11 @@ msgstr "Zougang" #: pretix/base/reldate.py:41 msgid "Presale start" -msgstr "" +msgstr "Start vum Virverkaf" #: pretix/base/reldate.py:42 msgid "Presale end" -msgstr "" +msgstr "Enn vum Virverkaf" #: pretix/base/reldate.py:186 msgid "before" @@ -7863,19 +7863,19 @@ msgstr "no" #: pretix/base/reldate.py:308 pretix/base/reldate.py:472 msgid "Fixed date:" -msgstr "" +msgstr "Festen Datum:" #: pretix/base/reldate.py:309 pretix/base/reldate.py:473 msgid "Relative date:" -msgstr "" +msgstr "Relativen Datum:" #: pretix/base/reldate.py:310 msgid "Relative time:" -msgstr "" +msgstr "Relativ Auerzäit:" #: pretix/base/reldate.py:318 pretix/base/reldate.py:476 msgid "Not set" -msgstr "" +msgstr "Net definéiert" #: pretix/base/secrets.py:119 msgid "Random (default, works with all pretix apps)" @@ -7890,7 +7890,7 @@ msgstr "" #: pretix/base/services/cancelevent.py:230 #: pretix/base/services/cancelevent.py:308 msgid "Event canceled" -msgstr "" +msgstr "Evenement annuléiert" #: pretix/base/services/cart.py:102 pretix/base/services/modelimport.py:247 #: pretix/base/services/orders.py:155 @@ -8183,7 +8183,7 @@ msgstr "" #: pretix/base/services/checkin.py:217 #: pretix/plugins/stripe/templates/pretixplugins/stripe/pending.html:69 msgid "Unknown reason" -msgstr "" +msgstr "Onbekannte Grond" #: pretix/base/services/checkin.py:273 #, python-brace-format @@ -8253,7 +8253,7 @@ msgstr "" #: pretix/base/services/checkin.py:322 msgid "week day" -msgstr "" +msgstr "Wochendag" #: pretix/base/services/checkin.py:358 pretix/control/forms/filter.py:1267 msgid "Monday" @@ -8369,11 +8369,11 @@ msgstr "" #: pretix/base/services/export.py:198 msgid "Export failed" -msgstr "" +msgstr "Export feelgeschloen" #: pretix/base/services/export.py:215 msgid "Permission denied." -msgstr "" +msgstr "Keng Berechtegung." #: pretix/base/services/export.py:234 msgid "Your exported data exceeded the size limit for scheduled exports." @@ -8406,13 +8406,13 @@ msgstr "" #, python-brace-format msgctxt "invoice" msgid "Attendee: {name}" -msgstr "" +msgstr "Participant: {name}" #: pretix/base/services/invoices.py:271 pretix/plugins/reports/exporters.py:309 #, python-brace-format msgctxt "subevent" msgid "Date: {}" -msgstr "" +msgstr "Datum: {}" #: pretix/base/services/invoices.py:566 msgid "A payment provider specific text might appear here." @@ -8477,7 +8477,7 @@ msgstr "" #: pretix/base/services/mail.py:494 msgctxt "attachment_filename" msgid "Calendar invite" -msgstr "" +msgstr "Kalennerinvitatioun" #: pretix/base/services/memberships.py:108 #, python-brace-format @@ -8558,7 +8558,7 @@ msgstr "Start" #: pretix/base/services/memberships.py:232 #: pretix/base/services/memberships.py:234 msgid "open end" -msgstr "" +msgstr "Enn net festgeluecht" #: pretix/base/services/memberships.py:244 #, python-brace-format @@ -8853,7 +8853,7 @@ msgstr "" #: pretix/base/services/placeholders.py:575 msgid "Sample Corporation" -msgstr "" +msgstr "Beispillsfirma" #: pretix/base/services/placeholders.py:615 msgid "Sample Admission Ticket" @@ -8942,7 +8942,7 @@ msgstr "" #: pretix/base/services/tickets.py:100 pretix/control/views/pdf.py:96 msgid "Sample workshop" -msgstr "" +msgstr "Beispillsatelier" #: pretix/base/services/update_check.py:113 msgid "pretix update available" @@ -8973,7 +8973,7 @@ msgstr "" #: pretix/base/services/update_check.py:147 #, python-format msgid "Plugin: %s" -msgstr "" +msgstr "Plugin: %s" #: pretix/base/services/vouchers.py:56 pretix/control/logdisplay.py:580 #, python-brace-format @@ -9359,7 +9359,7 @@ msgstr "" #: pretix/base/settings.py:797 msgid "Reservation period" -msgstr "" +msgstr "Period vun der Reservéierung" #: pretix/base/settings.py:799 msgid "" @@ -9384,7 +9384,7 @@ msgstr "" #: pretix/base/settings.py:834 msgid "Guidance text" -msgstr "" +msgstr "Hëllefstext" #: pretix/base/settings.py:835 msgid "" @@ -9394,11 +9394,11 @@ msgstr "" #: pretix/base/settings.py:846 pretix/base/settings.py:855 msgid "in days" -msgstr "" +msgstr "an Deeg" #: pretix/base/settings.py:847 pretix/base/settings.py:856 msgid "in minutes" -msgstr "" +msgstr "a Minutten" #: pretix/base/settings.py:851 msgid "Set payment term" @@ -9470,7 +9470,7 @@ msgstr "" #: pretix/base/settings.py:958 msgid "Expiration delay" -msgstr "" +msgstr "Verspéidung vum Oflafdatum" #: pretix/base/settings.py:959 msgid "" @@ -9567,7 +9567,7 @@ msgstr "" #: pretix/base/settings.py:1088 msgid "Generate invoices" -msgstr "" +msgstr "Rechungen generéieren" #: pretix/base/settings.py:1092 msgid "Automatically after payment or when required by payment method" @@ -9593,7 +9593,7 @@ msgstr "" #: pretix/base/settings.py:1112 pretix/base/settings.py:1123 msgid "Invoice date" -msgstr "" +msgstr "Datum vun der Rechnun" #: pretix/base/settings.py:1116 msgid "Date of service" @@ -9629,7 +9629,7 @@ msgstr "" #: pretix/base/settings.py:1164 msgid "Address line" -msgstr "" +msgstr "Adress" #: pretix/base/settings.py:1168 msgid "Albert Einstein Road 52" @@ -9653,7 +9653,7 @@ msgstr "" #: pretix/base/settings.py:1246 msgid "Introductory text" -msgstr "" +msgstr "Introduktiounstext" #: pretix/base/settings.py:1247 msgid "Will be printed on every invoice above the invoice rows." @@ -9667,7 +9667,7 @@ msgstr "" #: pretix/base/settings.py:1263 msgid "Additional text" -msgstr "" +msgstr "Zousätzlechen Text" #: pretix/base/settings.py:1264 msgid "Will be printed on every invoice below the invoice total." @@ -9723,11 +9723,11 @@ msgstr "" #: pretix/base/settings.py:1344 msgid "Available languages" -msgstr "" +msgstr "Disponibel Sproochen" #: pretix/base/settings.py:1360 pretix/control/forms/event.py:139 msgid "Default language" -msgstr "" +msgstr "Standard-Sprooch" #: pretix/base/settings.py:1370 msgid "Region" @@ -9847,7 +9847,7 @@ msgstr "" #: pretix/base/settings.py:1521 msgid "Require name" -msgstr "" +msgstr "Numm obligatoresch" #: pretix/base/settings.py:1522 msgid "Require a name when signing up to the waiting list.." @@ -9916,7 +9916,7 @@ msgstr "" #: pretix/base/settings.py:1608 msgid "Download date" -msgstr "" +msgstr "Datum vum Download" #: pretix/base/settings.py:1609 msgid "" @@ -10000,11 +10000,11 @@ msgstr "Lëscht" #: pretix/base/settings.py:1706 pretix/base/settings.py:1714 msgid "Week calendar" -msgstr "" +msgstr "Kalenner (Wochen)" #: pretix/base/settings.py:1707 pretix/base/settings.py:1715 msgid "Month calendar" -msgstr "" +msgstr "Kalenner (Méint)" #: pretix/base/settings.py:1711 msgid "Default overview style" @@ -10266,7 +10266,7 @@ msgstr "" #: pretix/base/settings.py:2054 #: pretix/control/templates/pretixcontrol/order/index.html:149 msgid "Refund method" -msgstr "" +msgstr "Method vum Remboursement" #: pretix/base/settings.py:2080 pretix/base/settings.py:2093 msgid "Terms of cancellation" @@ -10288,7 +10288,7 @@ msgstr "" #: pretix/base/settings.py:2106 pretix/control/forms/event.py:1720 msgid "Contact address" -msgstr "" +msgstr "Kontakt-E-Mail" #: pretix/base/settings.py:2107 pretix/control/forms/event.py:1722 msgid "We'll show this publicly to allow attendees to contact you." @@ -10296,7 +10296,7 @@ msgstr "" #: pretix/base/settings.py:2115 pretix/control/forms/event.py:1714 msgid "Imprint URL" -msgstr "" +msgstr "Impressum (URL)" #: pretix/base/settings.py:2116 pretix/control/forms/event.py:1715 msgid "" @@ -10331,7 +10331,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/base.html:106 #: pretix/presale/templates/pretixpresale/organizers/base.html:111 msgid "Accessibility information" -msgstr "" +msgstr "Informatiounen zur Accessibilitéit" #: pretix/base/settings.py:2150 msgid "Accessibility information title" @@ -10376,7 +10376,7 @@ msgstr "" #: pretix/base/settings.py:2214 msgid "Event description" -msgstr "" +msgstr "Beschreiwung vum Evenement" #: pretix/base/settings.py:2217 msgid "" @@ -10390,7 +10390,7 @@ msgstr "" #: pretix/base/settings.py:2230 msgid "Subject prefix" -msgstr "" +msgstr "Präfix vum Sujet" #: pretix/base/settings.py:2231 msgid "" @@ -10403,7 +10403,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/mail.html:39 #: pretix/control/templates/pretixcontrol/organizers/mail.html:40 msgid "Sender address" -msgstr "" +msgstr "Adress vum Ofsender" #: pretix/base/settings.py:2246 pretix/control/forms/mailsetup.py:38 #: pretix/control/forms/mailsetup.py:120 @@ -10412,7 +10412,7 @@ msgstr "" #: pretix/base/settings.py:2255 msgid "Sender name" -msgstr "" +msgstr "Numm vum Ofsender" #: pretix/base/settings.py:2256 msgid "" @@ -10868,7 +10868,7 @@ msgstr "" #: pretix/base/settings.py:2731 #, python-brace-format msgid "Invoice {invoice_number}" -msgstr "" +msgstr "Rechnung {invoice_number}" #: pretix/base/settings.py:2735 #, python-brace-format @@ -11000,7 +11000,7 @@ msgstr "" #: pretix/base/settings.py:2889 msgid "Primary color" -msgstr "" +msgstr "Haaptfaarf" #: pretix/base/settings.py:2910 msgid "Accent color for success" @@ -11039,7 +11039,7 @@ msgstr "" #: pretix/base/settings.py:3000 pretix/base/settings.py:3044 #: pretix/control/forms/organizer.py:523 msgid "Header image" -msgstr "" +msgstr "Header-Bild" #: pretix/base/settings.py:3003 msgid "" @@ -11107,7 +11107,7 @@ msgstr "" #: pretix/base/settings.py:3125 msgid "Logo image" -msgstr "" +msgstr "Logo" #: pretix/base/settings.py:3129 msgid "We will show your logo with a maximal height and width of 2.5 cm." @@ -11115,7 +11115,7 @@ msgstr "" #: pretix/base/settings.py:3155 pretix/base/settings.py:3261 msgid "Info text" -msgstr "" +msgstr "Info-Text" #: pretix/base/settings.py:3158 pretix/base/settings.py:3263 msgid "" @@ -11145,7 +11145,7 @@ msgstr "" #: pretix/base/settings.py:3193 msgid "Voucher explanation" -msgstr "" +msgstr "Erklärung fir de Bong" #: pretix/base/settings.py:3196 msgid "" @@ -11205,12 +11205,12 @@ msgstr "" #: pretix/base/settings.py:3347 pretix/base/settings.py:3357 msgid "Name (descending)" -msgstr "" +msgstr "Numm (ofsteigend)" #: pretix/base/settings.py:3352 msgctxt "subevent" msgid "Date ordering" -msgstr "" +msgstr "Sortéierung vun den Datumer" #: pretix/base/settings.py:3368 msgid "Link back to organizer overview on all event pages" @@ -11218,7 +11218,7 @@ msgstr "" #: pretix/base/settings.py:3377 msgid "Homepage text" -msgstr "" +msgstr "Text op der Startsäit" #: pretix/base/settings.py:3379 msgid "This will be displayed on the organizer homepage." @@ -11258,7 +11258,7 @@ msgstr "" #: pretix/base/settings.py:3436 msgid "Dialog text" -msgstr "" +msgstr "Dialog-Text" #: pretix/base/settings.py:3443 msgid "" @@ -11274,11 +11274,11 @@ msgstr "" #: pretix/base/settings.py:3457 msgid "Privacy settings" -msgstr "" +msgstr "Dateschutzastellungen" #: pretix/base/settings.py:3462 msgid "Dialog title" -msgstr "" +msgstr "Dialog-Titel" #: pretix/base/settings.py:3468 msgid "Accept all cookies" @@ -11369,25 +11369,25 @@ msgstr "Dr" #: pretix/base/settings.py:3632 pretix/base/settings.py:3649 msgid "First name" -msgstr "" +msgstr "Virnumm" #: pretix/base/settings.py:3633 pretix/base/settings.py:3650 msgid "Middle name" -msgstr "" +msgstr "Zweete Virnumm" #: pretix/base/settings.py:3714 pretix/base/settings.py:3726 #: pretix/control/forms/organizer.py:658 msgctxt "person_name_sample" msgid "John Doe" -msgstr "" +msgstr "Maus Ketti" #: pretix/base/settings.py:3720 msgid "Calling name" -msgstr "" +msgstr "Ruffnumm" #: pretix/base/settings.py:3734 msgid "Latin transcription" -msgstr "" +msgstr "Laténgesch Transkriptioun" #: pretix/base/settings.py:3746 pretix/base/settings.py:3766 #: pretix/base/settings.py:3788 @@ -11467,7 +11467,7 @@ msgstr "" #: pretix/base/shredder.py:257 msgid "Phone numbers" -msgstr "" +msgstr "Telefonsnummeren" #: pretix/base/shredder.py:259 msgid "This will remove all phone numbers from orders." @@ -11492,7 +11492,7 @@ msgstr "" #: pretix/base/shredder.py:421 msgid "Attendee info" -msgstr "" +msgstr "Informatiounen iwwert de Participant" #: pretix/base/shredder.py:423 msgid "" @@ -11502,7 +11502,7 @@ msgstr "" #: pretix/base/shredder.py:501 msgid "Invoice addresses" -msgstr "" +msgstr "Rechnungsadressen" #: pretix/base/shredder.py:504 msgid "" @@ -11512,7 +11512,7 @@ msgstr "" #: pretix/base/shredder.py:538 msgid "Question answers" -msgstr "" +msgstr "Äntwerten op d'Froen" #: pretix/base/shredder.py:540 msgid "" @@ -11543,7 +11543,7 @@ msgstr "" #: pretix/base/templates/400.html:4 pretix/base/templates/400.html:8 msgid "Bad Request" -msgstr "" +msgstr "Bad Request" #: pretix/base/templates/400.html:9 msgid "We were unable to parse your request." @@ -11561,12 +11561,12 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/cookies.html:40 #: pretix/presale/templates/pretixpresale/event/offline.html:14 msgid "Try again" -msgstr "" +msgstr "Nach eemol probéieren" #: pretix/base/templates/400_hostname.html:4 #: pretix/base/templates/400_hostname.html:8 msgid "Unknown host" -msgstr "" +msgstr "Onbekannten Host" #: pretix/base/templates/400_hostname.html:10 #, python-format @@ -11588,7 +11588,7 @@ msgstr "" #: pretix/base/templates/400_hostname.html:26 msgid "Received headers" -msgstr "" +msgstr "Empfaangen Headeren" #: pretix/base/templates/400_hostname.html:32 msgid "ignored" @@ -11606,7 +11606,7 @@ msgstr "" #: pretix/base/templates/403.html:4 pretix/base/templates/403.html:8 msgid "Permission denied" -msgstr "" +msgstr "Keng Berechtegung" #: pretix/base/templates/403.html:9 msgid "You do not have access to this page." @@ -11618,11 +11618,11 @@ msgstr "" #: pretix/control/templates/pretixcontrol/user/staff_session_start.html:6 #: pretix/presale/templates/pretixpresale/event/offline.html:21 msgid "Admin mode" -msgstr "" +msgstr "Admin-Modus" #: pretix/base/templates/404.html:4 pretix/base/templates/404.html:8 msgid "Not found" -msgstr "" +msgstr "Net fonnt" #: pretix/base/templates/404.html:9 msgid "I'm afraid we could not find the the resource you requested." @@ -11646,7 +11646,7 @@ msgstr "" #: pretix/base/templates/csrffail.html:4 pretix/base/templates/csrffail.html:8 msgid "Verification failed" -msgstr "" +msgstr "Verificatioun feelgeschloen" #: pretix/base/templates/csrffail.html:9 msgid "" @@ -11689,7 +11689,7 @@ msgstr "" #: pretix/base/templates/pretixbase/email/export_failed.txt:10 msgid "Configuration link:" -msgstr "" +msgstr "Link fir d'Konfiguratioun:" #: pretix/base/templates/pretixbase/email/notification.html:55 #: pretix/base/templates/pretixbase/email/notification.txt:14 @@ -11724,11 +11724,11 @@ msgstr "Evenement:" #: pretix/base/templates/pretixbase/email/order_details.html:23 msgid "Order code:" -msgstr "" +msgstr "Nummer vun der Bestellung:" #: pretix/base/templates/pretixbase/email/order_details.html:28 msgid "created by" -msgstr "" +msgstr "erstallt vun" #: pretix/base/templates/pretixbase/email/order_details.html:34 msgid "Contact:" @@ -11792,7 +11792,7 @@ msgstr "" #: pretix/base/templates/pretixbase/forms/widgets/portrait_image.html:10 msgid "Upload photo" -msgstr "" +msgstr "Foto eroplueden" #: pretix/base/templates/pretixbase/forms/widgets/reldate.html:14 #, python-format @@ -11832,7 +11832,7 @@ msgstr "" #: pretix/base/templates/source.html:5 pretix/base/templates/source.html:9 msgid "Source code" -msgstr "" +msgstr "Source-Code" #: pretix/base/templates/source.html:10 msgid "" @@ -11846,7 +11846,7 @@ msgstr "" #: pretix/base/ticketoutput.py:200 msgid "Download ticket" -msgstr "" +msgstr "Ticket eroflueden" #: pretix/base/timeframes.py:49 msgctxt "reporting_timeframe" @@ -11859,7 +11859,7 @@ msgstr "Haut" #: pretix/base/timeframes.py:107 msgctxt "reporting_timeframe" msgid "by day" -msgstr "" +msgstr "no Dag" #: pretix/base/timeframes.py:58 msgctxt "reporting_timeframe" @@ -11894,13 +11894,13 @@ msgstr "" #: pretix/base/timeframes.py:112 msgctxt "reporting_timeframe" msgid "Current week" -msgstr "" +msgstr "Dës Woch" #: pretix/base/timeframes.py:116 pretix/base/timeframes.py:125 #: pretix/base/timeframes.py:134 pretix/base/timeframes.py:143 msgctxt "reporting_timeframe" msgid "by week" -msgstr "" +msgstr "No Woch" #: pretix/base/timeframes.py:121 msgctxt "reporting_timeframe" @@ -11910,23 +11910,23 @@ msgstr "" #: pretix/base/timeframes.py:130 msgctxt "reporting_timeframe" msgid "Previous week" -msgstr "" +msgstr "Lescht Woch" #: pretix/base/timeframes.py:139 msgctxt "reporting_timeframe" msgid "Next week" -msgstr "" +msgstr "Nächst Woch" #: pretix/base/timeframes.py:148 msgctxt "reporting_timeframe" msgid "Current month" -msgstr "" +msgstr "Dëse Mount" #: pretix/base/timeframes.py:152 pretix/base/timeframes.py:161 #: pretix/base/timeframes.py:170 pretix/base/timeframes.py:179 msgctxt "reporting_timeframe" msgid "by month" -msgstr "" +msgstr "no Mount" #: pretix/base/timeframes.py:157 msgctxt "reporting_timeframe" @@ -11936,23 +11936,23 @@ msgstr "" #: pretix/base/timeframes.py:166 msgctxt "reporting_timeframe" msgid "Previous month" -msgstr "" +msgstr "Leschte Mount" #: pretix/base/timeframes.py:175 msgctxt "reporting_timeframe" msgid "Next month" -msgstr "" +msgstr "Nächste Mount" #: pretix/base/timeframes.py:184 msgctxt "reporting_timeframe" msgid "Current quarter" -msgstr "" +msgstr "Dës Trimester" #: pretix/base/timeframes.py:188 pretix/base/timeframes.py:197 #: pretix/base/timeframes.py:206 pretix/base/timeframes.py:217 msgctxt "reporting_timeframe" msgid "by quarter" -msgstr "" +msgstr "no Trimester" #: pretix/base/timeframes.py:193 msgctxt "reporting_timeframe" @@ -11962,23 +11962,23 @@ msgstr "" #: pretix/base/timeframes.py:202 msgctxt "reporting_timeframe" msgid "Previous quarter" -msgstr "" +msgstr "Lescht Trimester" #: pretix/base/timeframes.py:211 msgctxt "reporting_timeframe" msgid "Next quarter" -msgstr "" +msgstr "Nächst Trimester" #: pretix/base/timeframes.py:222 msgctxt "reporting_timeframe" msgid "Current year" -msgstr "" +msgstr "Dës Joer" #: pretix/base/timeframes.py:226 pretix/base/timeframes.py:235 #: pretix/base/timeframes.py:244 pretix/base/timeframes.py:253 msgctxt "reporting_timeframe" msgid "by year" -msgstr "" +msgstr "no Joer" #: pretix/base/timeframes.py:231 msgctxt "reporting_timeframe" @@ -11988,12 +11988,12 @@ msgstr "" #: pretix/base/timeframes.py:240 msgctxt "reporting_timeframe" msgid "Previous year" -msgstr "" +msgstr "Lescht Joer" #: pretix/base/timeframes.py:249 msgctxt "reporting_timeframe" msgid "Next year" -msgstr "" +msgstr "Nächst Joer" #: pretix/base/timeframes.py:258 msgctxt "reporting_timeframe" @@ -12026,12 +12026,12 @@ msgstr "" #: pretix/base/timeframes.py:324 msgid "Custom timeframe" -msgstr "" +msgstr "Eege Period" #: pretix/base/timeframes.py:326 msgctxt "reporting_timeframe" msgid "All time" -msgstr "" +msgstr "Ëmmer" #: pretix/base/timeline.py:60 msgctxt "timeline" @@ -12207,7 +12207,7 @@ msgstr "" #: pretix/control/forms/__init__.py:330 msgid "Community translations" -msgstr "" +msgstr "Iwwersetzungen vun der Community" #: pretix/control/forms/__init__.py:332 #, python-brace-format @@ -12220,7 +12220,7 @@ msgstr "" #: pretix/control/forms/__init__.py:343 msgid "Development only" -msgstr "" +msgstr "An Entwécklung" #: pretix/control/forms/__init__.py:344 msgid "" @@ -12241,11 +12241,11 @@ msgstr "Barcode" #: pretix/control/forms/checkin.py:179 msgid "Check-in time" -msgstr "" +msgstr "Check-in-Zäitpunkt" #: pretix/control/forms/checkin.py:183 msgid "Check-in type" -msgstr "" +msgstr "Check-in-Typ" #: pretix/control/forms/checkin.py:187 msgid "Allow check-in of unpaid order (if check-in list permits it)" @@ -12259,7 +12259,7 @@ msgstr "" #: pretix/control/forms/filter.py:2422 pretix/control/forms/filter.py:2464 #: pretix/control/forms/filter.py:2629 msgid "All gates" -msgstr "" +msgstr "All Statiounen" #: pretix/control/forms/checkin.py:222 msgid "I am sure that the check-in state of the entire event should be reset." @@ -12267,7 +12267,7 @@ msgstr "" #: pretix/control/forms/event.py:91 msgid "Use languages" -msgstr "" +msgstr "Sprooche benotzen" #: pretix/control/forms/event.py:93 msgid "Choose all languages that your event should be available in." @@ -12284,7 +12284,7 @@ msgstr "" #: pretix/control/forms/event.py:135 pretix/control/forms/event.py:519 msgid "Event timezone" -msgstr "" +msgstr "Zäitzon vum Evenement" #: pretix/control/forms/event.py:142 msgid "I don't want to specify taxes now" @@ -12350,7 +12350,7 @@ msgstr "" #: pretix/control/forms/subevents.py:411 #, python-brace-format msgid "Default ({value})" -msgstr "" +msgstr "Standard-({value})" #: pretix/control/forms/event.py:384 pretix/control/forms/event.py:397 msgid "Domain" @@ -12377,7 +12377,7 @@ msgstr "" #: pretix/control/forms/event.py:522 pretix/control/forms/organizer.py:461 msgid "Name format" -msgstr "" +msgstr "Format vum Numm" #: pretix/control/forms/event.py:523 pretix/control/forms/organizer.py:462 msgid "" @@ -12388,7 +12388,7 @@ msgstr "" #: pretix/control/forms/event.py:528 pretix/control/forms/organizer.py:467 msgid "Allowed titles" -msgstr "" +msgstr "Titel, déi zur Auswiel stinn" #: pretix/control/forms/event.py:529 pretix/control/forms/organizer.py:468 msgid "" @@ -12437,11 +12437,11 @@ msgstr "" #: pretix/control/forms/event.py:895 msgid "Invoice style" -msgstr "" +msgstr "Layout vun der Rechnung" #: pretix/control/forms/event.py:901 msgid "Invoice language" -msgstr "" +msgstr "Sprooch vun der Rechnung" #: pretix/control/forms/event.py:902 pretix/control/forms/event.py:917 msgid "The user's language" @@ -12486,7 +12486,7 @@ msgstr "" #: pretix/control/forms/event.py:986 pretix/control/forms/organizer.py:583 msgid "Bcc address" -msgstr "" +msgstr "BCC-Adress" #: pretix/control/forms/event.py:988 pretix/control/forms/organizer.py:585 msgid "All emails will be sent to this address as a Bcc copy." @@ -12672,15 +12672,15 @@ msgstr "" #: pretix/control/forms/event.py:1479 msgid "Any country" -msgstr "" +msgstr "Iergendee Land" #: pretix/control/forms/event.py:1480 msgid "European Union" -msgstr "" +msgstr "Europäesch Unioun" #: pretix/control/forms/event.py:1506 msgid "Any customer" -msgstr "" +msgstr "Iergendee Client" #: pretix/control/forms/event.py:1507 msgid "Individual" @@ -12696,11 +12696,11 @@ msgstr "" #: pretix/control/forms/event.py:1515 msgid "Charge VAT" -msgstr "" +msgstr "TVA berechnen" #: pretix/control/forms/event.py:1517 msgid "No VAT" -msgstr "" +msgstr "Keng TVA" #: pretix/control/forms/event.py:1518 msgid "Sale not allowed" @@ -12734,7 +12734,7 @@ msgstr "" #: pretix/control/forms/event.py:1631 msgid "Pre-selected voucher" -msgstr "" +msgstr "Virausgewielte Bong" #: pretix/control/forms/event.py:1633 msgid "" @@ -12746,7 +12746,7 @@ msgstr "" #: pretix/control/forms/event.py:1638 msgid "Compatibility mode" -msgstr "" +msgstr "Kompatibilitéitsmodus" #: pretix/control/forms/event.py:1640 msgid "" @@ -12765,7 +12765,7 @@ msgstr "" #: pretix/control/forms/event.py:1703 msgid "Ticket downloads" -msgstr "" +msgstr "Downloaden vun Ticketen" #: pretix/control/forms/event.py:1704 msgid "Your customers will be able to download their tickets in PDF format." @@ -12807,7 +12807,7 @@ msgstr "" #: pretix/control/forms/event.py:1782 #: pretix/control/templates/pretixcontrol/event/quick_setup.html:45 msgid "Price (optional)" -msgstr "" +msgstr "Präis (optionell)" #: pretix/control/forms/event.py:1787 msgid "Free" @@ -12815,7 +12815,7 @@ msgstr "Gratis" #: pretix/control/forms/event.py:1792 msgid "Quantity available" -msgstr "" +msgstr "Disponibel Unzuel" #: pretix/control/forms/exports.py:56 pretix/control/forms/exports.py:62 #: pretix/control/forms/exports.py:68 @@ -12825,16 +12825,16 @@ msgstr "" #: pretix/control/forms/filter.py:202 pretix/control/forms/filter.py:204 #: pretix/control/forms/filter.py:1018 pretix/control/forms/filter.py:1020 msgid "Search for…" -msgstr "" +msgstr "Sichen no…" #: pretix/control/forms/filter.py:218 pretix/control/navigation.py:205 #: pretix/control/templates/pretixcontrol/items/question.html:25 msgid "All orders" -msgstr "" +msgstr "All Bestellungen" #: pretix/control/forms/filter.py:219 msgid "Valid orders" -msgstr "" +msgstr "Gülteg Bestellungen" #: pretix/control/forms/filter.py:220 msgid "Paid (or canceled with paid fee)" @@ -12865,7 +12865,7 @@ msgstr "Annulatiounen" #: pretix/control/forms/filter.py:226 msgid "Canceled (fully)" -msgstr "" +msgstr "Annuléiert (komplett)" #: pretix/control/forms/filter.py:227 msgid "Canceled (fully or with paid fee)" @@ -12877,7 +12877,7 @@ msgstr "" #: pretix/control/forms/filter.py:229 msgid "Cancellation requested" -msgstr "" +msgstr "Annuléierung ugefrot" #: pretix/control/forms/filter.py:230 msgid "Fully canceled but invoice not canceled" @@ -12885,7 +12885,7 @@ msgstr "" #: pretix/control/forms/filter.py:232 msgid "Payment process" -msgstr "" +msgstr "Prozess vun der Bezuelung" #: pretix/control/forms/filter.py:234 #: pretix/control/templates/pretixcontrol/items/question.html:32 @@ -12895,7 +12895,7 @@ msgstr "" #: pretix/control/forms/filter.py:235 #: pretix/control/templates/pretixcontrol/items/question.html:30 msgid "Pending (overdue)" -msgstr "" +msgstr "Steet op (iwwerfälleg)" #: pretix/control/forms/filter.py:236 msgid "Overpaid" @@ -12903,7 +12903,7 @@ msgstr "Ze vill bezuelt" #: pretix/control/forms/filter.py:237 msgid "Partially paid" -msgstr "" +msgstr "Zum Deel bezuelt" #: pretix/control/forms/filter.py:238 msgid "Underpaid (but confirmed)" @@ -12919,7 +12919,7 @@ msgstr "" #: pretix/control/forms/filter.py:242 msgid "Approval process" -msgstr "" +msgstr "Prozess vun der Fräischaltung" #: pretix/control/forms/filter.py:243 msgid "Approved, payment pending" @@ -12931,15 +12931,15 @@ msgstr "" #: pretix/plugins/reports/exporters.py:391 #: pretix/presale/templates/pretixpresale/event/fragment_order_status.html:7 msgid "Approval pending" -msgstr "" +msgstr "Fräischaltung steet op" #: pretix/control/forms/filter.py:247 msgid "Follow-up configured" -msgstr "" +msgstr "Suivi configuréiert" #: pretix/control/forms/filter.py:248 msgid "Follow-up due" -msgstr "" +msgstr "Suivi ass fälleg" #: pretix/control/forms/filter.py:478 pretix/control/forms/filter.py:1925 #: pretix/control/forms/filter.py:2180 pretix/control/forms/filter.py:2484 @@ -12948,7 +12948,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/waitinglist/index.html:119 #: pretix/plugins/sendmail/models.py:251 msgid "All products" -msgstr "" +msgstr "All Produiten" #: pretix/control/forms/filter.py:482 pretix/control/forms/filter.py:2184 #: pretix/control/forms/filter.py:2488 pretix/control/forms/vouchers.py:139 @@ -12989,7 +12989,7 @@ msgstr "" #: pretix/control/forms/filter.py:628 msgid "Affected quota" -msgstr "" +msgstr "Betraffenen Contingent" #: pretix/control/forms/filter.py:665 pretix/control/forms/filter.py:670 #: pretix/control/forms/filter.py:696 pretix/control/forms/filter.py:701 @@ -13003,15 +13003,15 @@ msgstr "" #: pretix/control/forms/filter.py:1040 pretix/control/forms/filter.py:1045 #: pretix/control/forms/filter.py:1714 pretix/control/forms/filter.py:1719 msgid "All organizers" -msgstr "" +msgstr "All Organisateuren" #: pretix/control/forms/filter.py:1032 pretix/control/forms/filter.py:1698 msgid "All events" -msgstr "" +msgstr "All Evenementer" #: pretix/control/forms/filter.py:1052 msgid "All payments" -msgstr "" +msgstr "All Bezuelungen" #: pretix/control/forms/filter.py:1062 msgid "Payment created from" @@ -13023,11 +13023,11 @@ msgstr "" #: pretix/control/forms/filter.py:1072 msgid "Paid from" -msgstr "" +msgstr "Bezuelt vun" #: pretix/control/forms/filter.py:1077 msgid "Paid until" -msgstr "" +msgstr "Bezuelt bis" #: pretix/control/forms/filter.py:1233 pretix/control/forms/filter.py:1700 msgid "Shop live and presale running" @@ -13049,20 +13049,20 @@ msgstr "" #: pretix/control/templates/pretixcontrol/organizers/detail.html:115 #: pretix/control/templates/pretixcontrol/subevents/index.html:168 msgid "Presale over" -msgstr "" +msgstr "Verkaf eriwwer" #: pretix/control/forms/filter.py:1241 pretix/control/forms/filter.py:1244 #: pretix/control/forms/filter.py:1729 pretix/control/forms/filter.py:1732 #: pretix/control/forms/filter.py:2362 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_form.html:84 msgid "Date from" -msgstr "" +msgstr "Datum vun" #: pretix/control/forms/filter.py:1248 pretix/control/forms/filter.py:1251 #: pretix/control/forms/filter.py:1736 pretix/control/forms/filter.py:1739 #: pretix/control/forms/filter.py:2367 msgid "Date until" -msgstr "" +msgstr "Datum bis" #: pretix/control/forms/filter.py:1255 msgid "Start time from" @@ -13123,7 +13123,7 @@ msgstr "" #: pretix/control/forms/filter.py:1699 msgid "Shop live" -msgstr "" +msgstr "Shop live" #: pretix/control/forms/filter.py:1701 msgid "Shop not live" @@ -13139,17 +13139,17 @@ msgstr "" #: pretix/control/forms/filter.py:1904 pretix/control/forms/filter.py:1906 msgid "Search attendee…" -msgstr "" +msgstr "E Participant sichen…" #: pretix/control/forms/filter.py:1911 #: pretix/plugins/checkinlists/exporters.py:106 msgid "Check-in status" -msgstr "" +msgstr "Check-in-Status" #: pretix/control/forms/filter.py:1913 #: pretix/plugins/checkinlists/exporters.py:108 msgid "All attendees" -msgstr "" +msgstr "All Participanten" #: pretix/control/forms/filter.py:1914 #: pretix/control/templates/pretixcontrol/checkin/index.html:183 @@ -13157,7 +13157,7 @@ msgstr "" #: pretix/plugins/checkinlists/exporters.py:109 #: pretix/plugins/checkinlists/exporters.py:501 msgid "Checked in" -msgstr "" +msgstr "Agecheckt" #: pretix/control/forms/filter.py:1915 #: pretix/plugins/checkinlists/exporters.py:110 @@ -13194,7 +13194,7 @@ msgstr "Administrateur" #: pretix/control/forms/filter.py:2047 msgid "No administrator" -msgstr "" +msgstr "Keen Administrateur" #: pretix/control/forms/filter.py:2117 #: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:51 @@ -13211,7 +13211,7 @@ msgstr "" #: pretix/control/forms/filter.py:2120 msgid "Fully redeemed" -msgstr "" +msgstr "Komplett ageléist" #: pretix/control/forms/filter.py:2122 msgid "Redeemed and checked in with ticket" @@ -13219,7 +13219,7 @@ msgstr "" #: pretix/control/forms/filter.py:2127 msgid "Quota handling" -msgstr "" +msgstr "Astellungen vum Contingent" #: pretix/control/forms/filter.py:2131 msgid "Allow to ignore quota" @@ -13231,7 +13231,7 @@ msgstr "" #: pretix/control/forms/filter.py:2143 pretix/control/forms/filter.py:2145 msgid "Search voucher" -msgstr "" +msgstr "E Bong sichen" #: pretix/control/forms/filter.py:2190 pretix/control/forms/vouchers.py:130 #: pretix/control/views/typeahead.py:782 pretix/control/views/typeahead.py:786 @@ -13242,7 +13242,7 @@ msgstr "" #: pretix/control/forms/filter.py:2312 msgid "Refund status" -msgstr "" +msgstr "Status vum Remboursement" #: pretix/control/forms/filter.py:2314 msgid "All open refunds" @@ -13250,15 +13250,15 @@ msgstr "" #: pretix/control/forms/filter.py:2315 msgid "All refunds" -msgstr "" +msgstr "All Remboursementer" #: pretix/control/forms/filter.py:2353 pretix/plugins/reports/exporters.py:700 msgid "Date filter" -msgstr "" +msgstr "Datums-Filter" #: pretix/control/forms/filter.py:2355 pretix/plugins/reports/exporters.py:702 msgid "Filter by…" -msgstr "" +msgstr "Filteren no…" #: pretix/control/forms/filter.py:2357 pretix/plugins/reports/exporters.py:704 msgid "Date of last successful payment" @@ -13266,25 +13266,25 @@ msgstr "" #: pretix/control/forms/filter.py:2397 msgid "All check-ins" -msgstr "" +msgstr "All Check-Ins" #: pretix/control/forms/filter.py:2398 msgid "Successful check-ins" -msgstr "" +msgstr "Erfollegräich Check-Ins" #: pretix/control/forms/filter.py:2399 msgid "Unsuccessful check-ins" -msgstr "" +msgstr "Feelgeschloen Check-Ins" #: pretix/control/forms/filter.py:2404 #: pretix/control/templates/pretixcontrol/checkin/checkins.html:64 #: pretix/plugins/checkinlists/exporters.py:759 msgid "Scan type" -msgstr "" +msgstr "Typ vum Scan" #: pretix/control/forms/filter.py:2406 msgid "All directions" -msgstr "" +msgstr "All Richtungen" #: pretix/control/forms/filter.py:2415 pretix/control/forms/filter.py:2455 #: pretix/control/templates/pretixcontrol/checkin/checkins.html:67 @@ -13295,17 +13295,17 @@ msgstr "Apparat" #: pretix/control/forms/filter.py:2416 pretix/control/forms/filter.py:2451 #: pretix/control/forms/filter.py:2642 msgid "All devices" -msgstr "" +msgstr "All Apparater" #: pretix/control/forms/filter.py:2430 msgctxt "filter" msgid "Start date" -msgstr "" +msgstr "Ufanksdatum" #: pretix/control/forms/filter.py:2436 msgctxt "filter" msgid "End date" -msgstr "" +msgstr "Schlussdatum" #: pretix/control/forms/filter.py:2478 #: pretix/plugins/checkinlists/exporters.py:883 @@ -13325,7 +13325,7 @@ msgstr "" #: pretix/plugins/checkinlists/exporters.py:758 #: pretix/plugins/checkinlists/exporters.py:846 msgid "Check-in list" -msgstr "" +msgstr "Check-in-Lëscht" #: pretix/control/forms/filter.py:2633 #: pretix/control/templates/pretixcontrol/organizers/devices.html:82 @@ -13334,15 +13334,15 @@ msgstr "Software" #: pretix/control/forms/filter.py:2640 msgid "Device status" -msgstr "" +msgstr "Status vum Apparat" #: pretix/control/forms/filter.py:2643 msgid "Active devices" -msgstr "" +msgstr "Aktiv Apparater" #: pretix/control/forms/filter.py:2644 msgid "Revoked devices" -msgstr "" +msgstr "Gespaarten Apparater" #: pretix/control/forms/global_settings.py:62 msgid "Additional footer text" @@ -13384,7 +13384,7 @@ msgstr "" #: pretix/control/forms/global_settings.py:97 #, python-brace-format msgid "e.g. {sample}" -msgstr "" +msgstr "z.B. {sample}" #: pretix/control/forms/global_settings.py:96 msgid "Leaflet tiles attribution" @@ -13417,7 +13417,7 @@ msgstr "" #: pretix/control/forms/global_settings.py:131 msgid "Email notifications" -msgstr "" +msgstr "E-Mail-Notifikatiounen" #: pretix/control/forms/global_settings.py:132 msgid "" @@ -13465,7 +13465,7 @@ msgstr "" #: pretix/control/forms/global_settings.py:167 msgid "License choice" -msgstr "" +msgstr "Lizenzauswiel" #: pretix/control/forms/global_settings.py:170 msgid "" @@ -13579,7 +13579,7 @@ msgstr "" #: pretix/control/forms/item.py:313 msgid "No products" -msgstr "" +msgstr "Keng Produiten" #: pretix/control/forms/item.py:353 #: pretix/control/templates/pretixcontrol/items/fragment_quota_availability.html:11 @@ -13598,7 +13598,7 @@ msgstr "" #: pretix/control/forms/item.py:402 pretix/control/forms/item.py:728 msgid "No category" -msgstr "" +msgstr "Keng Kategorie" #: pretix/control/forms/item.py:410 msgid "Copy product information" @@ -13606,7 +13606,7 @@ msgstr "" #: pretix/control/forms/item.py:419 msgid "No taxation" -msgstr "" +msgstr "Keng Besteierung" #: pretix/control/forms/item.py:423 msgid "Do not add to a quota now" @@ -13622,7 +13622,7 @@ msgstr "" #: pretix/control/forms/item.py:431 msgid "Quota options" -msgstr "" +msgstr "Optiounen vum Contingent" #: pretix/control/forms/item.py:439 msgid "Add to existing quota" @@ -13651,7 +13651,7 @@ msgstr "" #: pretix/control/forms/item.py:614 pretix/plugins/badges/forms.py:85 #: pretix/plugins/ticketoutputpdf/forms.py:55 msgid "(Event default)" -msgstr "" +msgstr "(Standard vum Evenement)" #: pretix/control/forms/item.py:624 msgid "Choose automatically depending on event settings" @@ -13751,7 +13751,7 @@ msgstr "" #: pretix/control/forms/item.py:1162 msgid "Bundled products" -msgstr "" +msgstr "Gruppéiert Produiten" #: pretix/control/forms/item.py:1212 msgid "You added the same bundled product twice." @@ -13761,7 +13761,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/item/include_bundles.html:23 #: pretix/control/templates/pretixcontrol/item/include_bundles.html:50 msgid "Bundled product" -msgstr "" +msgstr "Gruppéierte Produit" #: pretix/control/forms/item.py:1243 pretix/control/forms/orders.py:379 #: pretix/control/forms/orders.py:568 @@ -13790,7 +13790,7 @@ msgstr "" #: pretix/control/forms/mailsetup.py:70 msgid "Use STARTTLS" -msgstr "" +msgstr "STARTTLS benotzen" #: pretix/control/forms/mailsetup.py:71 msgid "Commonly enabled on port 587." @@ -13798,7 +13798,7 @@ msgstr "" #: pretix/control/forms/mailsetup.py:75 msgid "Use SSL" -msgstr "" +msgstr "SSL benotzen" #: pretix/control/forms/mailsetup.py:76 msgid "Commonly enabled on port 465." @@ -13838,7 +13838,7 @@ msgstr "" #: pretix/control/forms/mapping.py:50 msgid "pretix field" -msgstr "" +msgstr "pretix-Feld" #: pretix/control/forms/modelimport.py:52 #, python-brace-format @@ -13847,7 +13847,7 @@ msgstr "" #: pretix/control/forms/modelimport.py:81 msgid "Import mode" -msgstr "" +msgstr "Import-Modus" #: pretix/control/forms/modelimport.py:83 msgid "Create a separate order for each line" @@ -13903,7 +13903,7 @@ msgstr "" #: pretix/control/forms/orders.py:94 msgid "Overbook quota" -msgstr "" +msgstr "Contingent iwwerbuchen" #: pretix/control/forms/orders.py:95 msgid "" @@ -13976,7 +13976,7 @@ msgstr "" #: pretix/control/forms/orders.py:248 msgid "Payment amount" -msgstr "" +msgstr "Montant vun der Bezuelung" #: pretix/control/forms/orders.py:252 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:24 @@ -13985,7 +13985,7 @@ msgstr "" #: pretix/plugins/reports/exporters.py:693 #: pretix/plugins/reports/exporters.py:898 msgid "Payment date" -msgstr "" +msgstr "Datum vun der Bezuelung" #: pretix/control/forms/orders.py:276 msgid "Please select some events." @@ -13993,7 +13993,7 @@ msgstr "" #: pretix/control/forms/orders.py:297 msgid "Re-calculate taxes" -msgstr "" +msgstr "Steieren nei berechnen" #: pretix/control/forms/orders.py:300 msgid "Do not re-calculate taxes" @@ -14023,7 +14023,7 @@ msgstr "" #: pretix/control/forms/orders.py:316 msgid "Notify user" -msgstr "" +msgstr "Benotzer notifiéieren" #: pretix/control/forms/orders.py:320 msgid "" @@ -14036,7 +14036,7 @@ msgstr "" #: pretix/control/forms/orders.py:340 msgid "Add-on to" -msgstr "" +msgstr "Zousazproduit fir" #: pretix/control/forms/orders.py:345 #: pretix/control/templates/pretixcontrol/checkin/index.html:104 @@ -14078,11 +14078,11 @@ msgstr "" #: pretix/control/forms/orders.py:489 msgid "Validity start" -msgstr "" +msgstr "Start vun der Gültegkeet" #: pretix/control/forms/orders.py:494 msgid "Validity end" -msgstr "" +msgstr "Enn vun der Gültegkeet" #: pretix/control/forms/orders.py:506 msgid "Generate a new secret" @@ -14104,7 +14104,7 @@ msgstr "" #: pretix/control/forms/orders.py:582 msgid "(No membership)" -msgstr "" +msgstr "(Keng Memberschaft)" #: pretix/control/forms/orders.py:613 msgid "Remove this fee" @@ -14124,7 +14124,7 @@ msgstr "" #: pretix/control/forms/orders.py:677 msgid "Invalidate secrets" -msgstr "" +msgstr "Geheim Coden upassen" #: pretix/control/forms/orders.py:678 msgid "" @@ -14135,7 +14135,7 @@ msgstr "" #: pretix/control/forms/orders.py:734 pretix/plugins/sendmail/forms.py:196 msgid "Attach tickets" -msgstr "" +msgstr "Ticketen unhänken" #: pretix/control/forms/orders.py:735 pretix/plugins/sendmail/forms.py:197 msgid "" @@ -14145,7 +14145,7 @@ msgstr "" #: pretix/control/forms/orders.py:742 msgid "Attach invoices" -msgstr "" +msgstr "Rechungen unhänken" #: pretix/control/forms/orders.py:763 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_inspect.html:20 @@ -14156,7 +14156,7 @@ msgstr "Empfänger" #: pretix/control/forms/orders.py:778 #, python-brace-format msgid "Attach {file}" -msgstr "" +msgstr "{file} unhänken" #: pretix/control/forms/orders.py:806 msgid "" @@ -14230,7 +14230,7 @@ msgstr "" #: pretix/control/forms/orders.py:925 msgid "Keep fees" -msgstr "" +msgstr "Fraisen behalen" #: pretix/control/forms/orders.py:928 msgid "" @@ -14251,7 +14251,7 @@ msgstr "" #: pretix/control/forms/orders.py:955 pretix/control/forms/orders.py:981 #, python-brace-format msgid "Canceled: {event}" -msgstr "" +msgstr "Annuléiert: {event}" #: pretix/control/forms/orders.py:966 #, python-brace-format @@ -14364,7 +14364,7 @@ msgstr "" #: pretix/control/forms/organizer.py:688 msgctxt "webhooks" msgid "Event types" -msgstr "" +msgstr "Aarten vun Evenementer" #: pretix/control/forms/organizer.py:722 msgid "Gift card value" @@ -14387,7 +14387,7 @@ msgstr "Telefon" #: pretix/control/forms/organizer.py:1048 msgctxt "sso_oidc" msgid "Base URL" -msgstr "" +msgstr "Basis-URL" #: pretix/control/forms/organizer.py:1052 msgctxt "sso_oidc" @@ -14397,7 +14397,7 @@ msgstr "Clientsnummer" #: pretix/control/forms/organizer.py:1056 msgctxt "sso_oidc" msgid "Client secret" -msgstr "" +msgstr "Client-Secret" #: pretix/control/forms/organizer.py:1060 msgctxt "sso_oidc" @@ -14424,7 +14424,7 @@ msgstr "" #: pretix/control/forms/organizer.py:1072 msgctxt "sso_oidc" msgid "Email field" -msgstr "" +msgstr "E-Mail-Feld" #: pretix/control/forms/organizer.py:1073 msgctxt "sso_oidc" @@ -14437,12 +14437,12 @@ msgstr "" #: pretix/control/forms/organizer.py:1080 msgctxt "sso_oidc" msgid "Phone field" -msgstr "" +msgstr "Telefonsnummeren-Feld" #: pretix/control/forms/organizer.py:1084 msgctxt "sso_oidc" msgid "Query parameters" -msgstr "" +msgstr "Query-Parameter" #: pretix/control/forms/organizer.py:1085 #, python-brace-format @@ -14530,7 +14530,7 @@ msgstr "" #: pretix/control/forms/rrule.py:80 msgid "Last date" -msgstr "" +msgstr "Leschten Datum" #: pretix/control/forms/rrule.py:87 pretix/control/forms/rrule.py:134 msgctxt "rrule" @@ -14559,7 +14559,7 @@ msgstr "Dag" #: pretix/control/forms/rrule.py:113 pretix/control/forms/rrule.py:152 msgid "Weekend day" -msgstr "" +msgstr "Weekendsdag" #: pretix/control/forms/subevents.py:118 msgid "Keep the current values" @@ -15016,7 +15016,7 @@ msgstr "" #: pretix/control/logdisplay.py:492 msgid "Blocked manually" -msgstr "" +msgstr "Manuell blockéiert" #: pretix/control/logdisplay.py:494 msgid "Blocked because of an API integration" @@ -15790,7 +15790,7 @@ msgstr "" #: pretix/control/logdisplay.py:800 pretix/control/logdisplay.py:859 #, python-brace-format msgid "Plugin {val}" -msgstr "" +msgstr "Plugin {val}" #: pretix/control/logdisplay.py:815 msgid "A meta property has been added to this event." @@ -16134,7 +16134,7 @@ msgstr "Ticketen" #: pretix/control/templates/pretixcontrol/event/tax_index.html:3 #: pretix/control/templates/pretixcontrol/event/tax_index.html:5 msgid "Tax rules" -msgstr "" +msgstr "Steierreegelen" #: pretix/control/navigation.py:97 msgid "Invoicing" @@ -16190,7 +16190,7 @@ msgstr "Import" #: pretix/control/navigation.py:276 msgid "All vouchers" -msgstr "" +msgstr "All Bongen" #: pretix/control/navigation.py:284 msgid "Tags" @@ -16205,7 +16205,7 @@ msgstr "Check-in" #: pretix/control/templates/pretixcontrol/checkin/checkins.html:4 #: pretix/control/templates/pretixcontrol/checkin/checkins.html:6 msgid "Check-in history" -msgstr "" +msgstr "Check-in-Protokoll" #: pretix/control/navigation.py:356 #: pretix/control/templates/pretixcontrol/event/plugins.html:20 @@ -16224,7 +16224,7 @@ msgstr "Bezuelungen" #: pretix/control/navigation.py:376 msgid "User settings" -msgstr "" +msgstr "Benotzerastellungen" #: pretix/control/navigation.py:387 #: pretix/control/templates/pretixcontrol/user/settings.html:16 @@ -16237,7 +16237,7 @@ msgstr "2FA" #: pretix/control/navigation.py:397 msgid "Authorized apps" -msgstr "" +msgstr "Autoriséiert Appen" #: pretix/control/navigation.py:402 #: pretix/control/templates/pretixcontrol/user/history.html:4 @@ -16245,35 +16245,35 @@ msgstr "" #: pretix/control/templates/pretixcontrol/user/history.html:10 #: pretix/control/templates/pretixcontrol/user/settings.html:70 msgid "Account history" -msgstr "" +msgstr "Konto-Ännerungen" #: pretix/control/navigation.py:417 msgid "All users" -msgstr "" +msgstr "All Benotzer" #: pretix/control/navigation.py:422 #: pretix/control/templates/pretixcontrol/user/staff_session_list.html:5 #: pretix/control/templates/pretixcontrol/user/staff_session_list.html:7 msgid "Admin sessions" -msgstr "" +msgstr "Admin-Sessiounen" #: pretix/control/navigation.py:429 #: pretix/control/templates/pretixcontrol/global_settings_base.html:5 #: pretix/control/templates/pretixcontrol/global_settings_base.html:7 msgid "Global settings" -msgstr "" +msgstr "Global Astellungen" #: pretix/control/navigation.py:440 msgid "Update check" -msgstr "" +msgstr "Update-Check" #: pretix/control/navigation.py:445 msgid "License check" -msgstr "" +msgstr "Lizenz-Check" #: pretix/control/navigation.py:450 msgid "System report" -msgstr "" +msgstr "Rapport iwwert de System" #: pretix/control/navigation.py:455 pretix/control/navigation.py:675 msgid "Data sync problems" @@ -16282,7 +16282,7 @@ msgstr "" #: pretix/control/navigation.py:506 #: pretix/control/templates/pretixcontrol/organizers/properties.html:5 msgid "Event metadata" -msgstr "" +msgstr "Metadonnéeë vum Evenement" #: pretix/control/navigation.py:527 #: pretix/control/templates/pretixcontrol/organizers/webhooks.html:6 @@ -16303,13 +16303,13 @@ msgstr "Clienten" #: pretix/control/templates/pretixcontrol/organizers/ssoclients.html:4 #: pretix/control/templates/pretixcontrol/organizers/ssoclients.html:6 msgid "SSO clients" -msgstr "" +msgstr "SSO-Clienten" #: pretix/control/navigation.py:609 #: pretix/control/templates/pretixcontrol/organizers/ssoproviders.html:4 #: pretix/control/templates/pretixcontrol/organizers/ssoproviders.html:6 msgid "SSO providers" -msgstr "" +msgstr "SSO-Provideren" #: pretix/control/navigation.py:638 pretix/control/navigation.py:645 msgid "Devices" @@ -28933,7 +28933,7 @@ msgstr "MobilePay" #: pretix/plugins/stripe/payment.py:497 msgid "Destination" -msgstr "" +msgstr "Destinatioun" #: pretix/plugins/stripe/payment.py:527 pretix/plugins/stripe/payment.py:1433 #, python-brace-format @@ -29101,23 +29101,23 @@ msgstr "" #: pretix/plugins/stripe/payment.py:1625 msgid "Germany" -msgstr "" +msgstr "Däitschland" #: pretix/plugins/stripe/payment.py:1626 msgid "Austria" -msgstr "" +msgstr "Éisträich" #: pretix/plugins/stripe/payment.py:1627 msgid "Belgium" -msgstr "" +msgstr "Belsch" #: pretix/plugins/stripe/payment.py:1628 msgid "Netherlands" -msgstr "" +msgstr "Holland" #: pretix/plugins/stripe/payment.py:1629 msgid "Spain" -msgstr "" +msgstr "Spuenien" #: pretix/plugins/stripe/payment.py:1665 #, python-brace-format @@ -29378,7 +29378,7 @@ msgstr "" #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:18 msgid "MOTO" -msgstr "" +msgstr "MOTO" #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:34 @@ -29400,7 +29400,7 @@ msgstr "" #: pretix/plugins/stripe/templates/pretixplugins/stripe/oauth_disconnect.html:16 msgid "Disconnect" -msgstr "" +msgstr "Deconnectéieren" #: pretix/plugins/stripe/templates/pretixplugins/stripe/pending.html:6 msgid "Payment instructions" @@ -29665,7 +29665,7 @@ msgstr "" #: pretix/presale/checkoutflow.py:119 msgctxt "checkoutflow" msgid "Step" -msgstr "" +msgstr "Schratt" #: pretix/presale/checkoutflow.py:251 msgctxt "checkoutflow" @@ -29679,7 +29679,7 @@ msgstr "" #: pretix/presale/checkoutflow.py:401 msgctxt "checkoutflow" msgid "Membership" -msgstr "" +msgstr "Memberschaft" #: pretix/presale/checkoutflow.py:449 pretix/presale/checkoutflow.py:470 msgid "" @@ -29738,7 +29738,7 @@ msgstr "" #: pretix/presale/checkoutflow.py:1259 msgctxt "checkoutflow" msgid "Payment" -msgstr "" +msgstr "Bezuelung" #: pretix/presale/checkoutflow.py:1372 #, python-brace-format @@ -29913,7 +29913,7 @@ msgstr "" #: pretix/presale/forms/organizer.py:70 msgctxt "filter_empty" msgid "all" -msgstr "" +msgstr "all" #: pretix/presale/forms/renderers.py:51 msgctxt "form" @@ -29929,7 +29929,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/fragment_voucher_form.html:14 msgctxt "form" msgid "required" -msgstr "" +msgstr "obligatoresch" #: pretix/presale/ical.py:85 pretix/presale/ical.py:141 #, python-brace-format @@ -29990,7 +29990,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/base.html:87 #: pretix/presale/templates/pretixpresale/event/base.html:92 msgid "Homepage" -msgstr "" +msgstr "Startsäit" #: pretix/presale/templates/pretixpresale/event/base.html:130 #: pretix/presale/templates/pretixpresale/event/base.html:166 @@ -29999,7 +29999,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/base.html:213 msgctxt "alert-messages" msgid "Warning" -msgstr "" +msgstr "Warnung" #: pretix/presale/templates/pretixpresale/event/base.html:131 #: pretix/presale/templates/pretixpresale/event/base.html:205 @@ -30039,12 +30039,12 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/base.html:178 msgctxt "alert-messages" msgid "Error" -msgstr "" +msgstr "Feeler" #: pretix/presale/templates/pretixpresale/event/base.html:180 msgctxt "alert-messages" msgid "Information" -msgstr "" +msgstr "Informatioun" #: pretix/presale/templates/pretixpresale/event/base.html:225 #: pretix/presale/templates/pretixpresale/fragment_modals.html:118 @@ -30061,7 +30061,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/base.html:242 #: pretix/presale/templates/pretixpresale/organizers/base.html:120 msgid "Imprint" -msgstr "" +msgstr "Impressum" #: pretix/presale/templates/pretixpresale/event/checkout_addons.html:12 msgid "" @@ -30110,7 +30110,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_base.html:12 #: pretix/presale/templates/pretixpresale/event/checkout_base.html:56 msgid "Checkout" -msgstr "" +msgstr "Bestellung weiderféieren" #: pretix/presale/templates/pretixpresale/event/checkout_base.html:15 #: pretix/presale/templates/pretixpresale/event/checkout_base.html:21 @@ -30160,7 +30160,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_confirm.html:76 #: pretix/presale/templates/pretixpresale/event/checkout_confirm.html:129 msgid "Modify" -msgstr "" +msgstr "Beaarbechten" #: pretix/presale/templates/pretixpresale/event/checkout_confirm.html:75 msgid "Modify invoice information" @@ -30178,7 +30178,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/checkout_confirm.html:171 msgid "Confirmations" -msgstr "" +msgstr "Confirmatiounen" #: pretix/presale/templates/pretixpresale/event/checkout_confirm.html:190 msgid "" @@ -30419,7 +30419,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/voucher.html:341 msgctxt "price" msgid "free" -msgstr "" +msgstr "gratis" #: pretix/presale/templates/pretixpresale/event/fragment_addon_choice.html:78 #: pretix/presale/templates/pretixpresale/event/fragment_product_list.html:65 @@ -30526,7 +30526,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/voucher.html:385 msgctxt "checkbox" msgid "Select" -msgstr "" +msgstr "Auswielen" #: pretix/presale/templates/pretixpresale/event/fragment_addon_choice.html:208 #: pretix/presale/templates/pretixpresale/event/fragment_addon_choice.html:354 @@ -30581,7 +30581,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/fragment_week_calendar.html:68 #: pretix/presale/views/widget.py:453 msgid "Reserved" -msgstr "" +msgstr "Reservéiert" #: pretix/presale/templates/pretixpresale/event/fragment_availability.html:39 msgid "All remaining products are reserved but might become available again." @@ -30597,16 +30597,16 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:46 msgid "Seat:" -msgstr "" +msgstr "Sëtzplaz:" #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:61 msgctxt "subevent" msgid "Date:" -msgstr "" +msgstr "Datum:" #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:79 msgid "Location:" -msgstr "" +msgstr "Uert:" #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:81 msgid "Show full location" @@ -30614,7 +30614,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:92 msgid "Membership:" -msgstr "" +msgstr "Memberschaft:" #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:123 msgid "This ticket is blocked." @@ -30623,7 +30623,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:130 msgctxt "ticket_checkins" msgid "Usage:" -msgstr "" +msgstr "Notzungen:" #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:134 #, python-format @@ -30654,7 +30654,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:273 #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:346 msgid "Discounted" -msgstr "" +msgstr "Mat Remise" #: pretix/presale/templates/pretixpresale/event/fragment_cart.html:283 msgid "Okay, we're removing that…" @@ -30906,11 +30906,11 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/fragment_checkoutflow.html:12 msgid "Completed:" -msgstr "" +msgstr "Completéiert:" #: pretix/presale/templates/pretixpresale/event/fragment_checkoutflow.html:14 msgid "Current:" -msgstr "" +msgstr "Aktuell:" #: pretix/presale/templates/pretixpresale/event/fragment_checkoutflow.html:26 msgctxt "checkoutflow" @@ -31000,7 +31000,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/fragment_order_status.html:21 msgctxt "order state" msgid "Confirmed" -msgstr "" +msgstr "Confirméiert" #: pretix/presale/templates/pretixpresale/event/fragment_order_status.html:15 msgid "Payment pending" @@ -31072,7 +31072,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/fragment_calendar_nav.html:16 #: pretix/presale/templates/pretixpresale/organizers/calendar.html:58 msgid "Month" -msgstr "" +msgstr "Mount" #: pretix/presale/templates/pretixpresale/event/fragment_subevent_calendar.html:39 #: pretix/presale/templates/pretixpresale/organizers/calendar.html:71 @@ -31099,7 +31099,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/fragment_calendar_nav.html:12 #: pretix/presale/templates/pretixpresale/organizers/calendar_week.html:58 msgid "Week" -msgstr "" +msgstr "Woch" #: pretix/presale/templates/pretixpresale/event/fragment_subevent_calendar_week.html:29 msgid "Select week to show" @@ -31180,7 +31180,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/voucher.html:437 msgctxt "free_tickets" msgid "Register" -msgstr "" +msgstr "Registréieren" #: pretix/presale/templates/pretixpresale/event/index.html:235 #: pretix/presale/templates/pretixpresale/event/voucher.html:442 @@ -31301,7 +31301,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/event/order.html:151 msgid "Print" -msgstr "" +msgstr "Drécken" #: pretix/presale/templates/pretixpresale/event/order.html:153 #, python-format @@ -31781,7 +31781,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/fragment_calendar.html:6 msgid "Calendar" -msgstr "" +msgstr "Kalenner" #: pretix/presale/templates/pretixpresale/fragment_calendar.html:29 #, python-format @@ -31794,7 +31794,7 @@ msgstr[1] "" #: pretix/presale/templates/pretixpresale/fragment_day_calendar.html:65 #: pretix/presale/templates/pretixpresale/fragment_week_calendar.html:37 msgid "(continued)" -msgstr "" +msgstr "(weidergefouert)" #: pretix/presale/templates/pretixpresale/fragment_calendar.html:88 #: pretix/presale/templates/pretixpresale/fragment_day_calendar.html:93 @@ -31932,17 +31932,17 @@ msgstr "" #: pretix/presale/templates/pretixpresale/fragment_modals.html:106 msgctxt "cookie_usage" msgid "Functionality" -msgstr "" +msgstr "Funktionalitéit" #: pretix/presale/templates/pretixpresale/fragment_modals.html:108 msgctxt "cookie_usage" msgid "Analytics" -msgstr "" +msgstr "Analysen" #: pretix/presale/templates/pretixpresale/fragment_modals.html:110 msgctxt "cookie_usage" msgid "Marketing" -msgstr "" +msgstr "Marketing" #: pretix/presale/templates/pretixpresale/fragment_modals.html:112 msgctxt "cookie_usage" @@ -31973,7 +31973,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/index.html:7 msgid "Hello!" -msgstr "" +msgstr "Moien!" #: pretix/presale/templates/pretixpresale/index.html:9 #, python-format @@ -31997,7 +31997,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/index.html:24 msgid "Enjoy!" -msgstr "" +msgstr "Vill Spaass!" #: pretix/presale/templates/pretixpresale/organizers/calendar.html:8 #: pretix/presale/templates/pretixpresale/organizers/calendar.html:25 @@ -32044,7 +32044,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/customer_addresses.html:11 #: pretix/presale/views/customer.py:378 msgid "Addresses" -msgstr "" +msgstr "Adressen" #: pretix/presale/templates/pretixpresale/organizers/customer_addresses.html:37 msgid "You don’t have any addresses in your account yet." @@ -32123,7 +32123,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/customer_membership.html:40 msgid "transferable" -msgstr "" +msgstr "iwwerdrobar" #: pretix/presale/templates/pretixpresale/organizers/customer_membership.html:42 msgid "not transferable" @@ -32184,7 +32184,7 @@ msgstr "" #: pretix/presale/templates/pretixpresale/organizers/customer_registration.html:7 msgid "Registration" -msgstr "" +msgstr "Registréierung" #: pretix/presale/templates/pretixpresale/organizers/customer_registration.html:16 #, python-format From 1e0ede529c57f9eedb23803878874c662ce96313 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 29 Oct 2025 08:53:48 +0100 Subject: [PATCH 20/33] Event cancellation: Add safety and security checks (#5565) * Event cancellation: Add safety and security checks When cancelling an event, a large sum of money might be refunded instantly. This PR adds safety features around this by - doing a dry-run first that shows a preview of the expected refund sum - sending a confirmation mode via email for any automatic refunds of more than 100 currency units - keeping a more detailed log of the settings this was executed with * Update src/pretix/control/views/orders.py Co-authored-by: luelista --------- Co-authored-by: luelista --- src/pretix/base/services/cancelevent.py | 170 +++++++++++++----- .../pretixbase/email/cancel_confirm.txt | 10 ++ src/pretix/control/forms/orders.py | 24 +++ .../pretixcontrol/orders/cancel.html | 12 +- .../pretixcontrol/orders/cancel_confirm.html | 85 +++++++++ src/pretix/control/urls.py | 1 + src/pretix/control/views/orders.py | 96 +++++++++- src/pretix/static/pretixcontrol/js/ui/main.js | 7 +- src/tests/base/test_cancelevent.py | 120 +++++++------ 9 files changed, 422 insertions(+), 103 deletions(-) create mode 100644 src/pretix/base/templates/pretixbase/email/cancel_confirm.txt create mode 100644 src/pretix/control/templates/pretixcontrol/orders/cancel_confirm.html diff --git a/src/pretix/base/services/cancelevent.py b/src/pretix/base/services/cancelevent.py index c686678acb..89d0d82b6f 100644 --- a/src/pretix/base/services/cancelevent.py +++ b/src/pretix/base/services/cancelevent.py @@ -24,6 +24,7 @@ from decimal import Decimal from django.db import transaction from django.db.models import Count, Exists, IntegerField, OuterRef, Q, Subquery +from django.utils.crypto import get_random_string from django.utils.translation import gettext from i18nfield.strings import LazyI18nString @@ -41,6 +42,7 @@ from pretix.base.services.orders import ( ) from pretix.base.services.tasks import ProfiledEventTask from pretix.base.services.tax import split_fee_for_taxes +from pretix.base.templatetags.money import money_filter from pretix.celery_app import app from pretix.helpers import OF_SELF from pretix.helpers.format import format_map @@ -112,7 +114,7 @@ def cancel_event(self, event: Event, subevent: int, auto_refund: bool, manual_refund: bool=False, send: bool=False, send_subject: dict=None, send_message: dict=None, send_waitinglist: bool=False, send_waitinglist_subject: dict={}, send_waitinglist_message: dict={}, user: int=None, refund_as_giftcard: bool=False, giftcard_expires=None, giftcard_conditions=None, - subevents_from: str=None, subevents_to: str=None): + subevents_from: str=None, subevents_to: str=None, dry_run=False): send_subject = LazyI18nString(send_subject) send_message = LazyI18nString(send_message) send_waitinglist_subject = LazyI18nString(send_waitinglist_subject) @@ -161,32 +163,72 @@ def cancel_event(self, event: Event, subevent: int, auto_refund: bool, has_subevent=True, has_other_subevent=False, has_blocked=False ) - for se in subevents: - se.log_action( - 'pretix.subevent.canceled', user=user, - ) - se.active = False - se.save(update_fields=['active']) - se.log_action( - 'pretix.subevent.changed', user=user, data={'active': False, '_source': 'cancel_event'} - ) + if not dry_run: + for se in subevents: + se.log_action( + 'pretix.subevent.canceled', user=user, + data={ + "auto_refund": auto_refund, + "keep_fee_fixed": keep_fee_fixed, + "keep_fee_per_ticket": keep_fee_per_ticket, + "keep_fee_percentage": keep_fee_percentage, + "keep_fees": keep_fees, + "manual_refund": manual_refund, + "send": send, + "send_subject": send_subject, + "send_message": send_message, + "send_waitinglist": send_waitinglist, + "send_waitinglist_subject": send_waitinglist_subject, + "send_waitinglist_message": send_waitinglist_message, + "refund_as_giftcard": refund_as_giftcard, + "giftcard_expires": str(giftcard_expires), + "giftcard_conditions": giftcard_conditions, + } + ) + se.active = False + se.save(update_fields=['active']) + se.log_action( + 'pretix.subevent.changed', user=user, data={'active': False, '_source': 'cancel_event'} + ) else: subevents = None subevent_ids = set() orders_to_change = orders_to_cancel.filter(has_blocked=True) orders_to_cancel = orders_to_cancel.filter(has_blocked=False) - event.log_action( - 'pretix.event.canceled', user=user, - ) - for i in event.items.filter(active=True): - i.active = False - i.save(update_fields=['active']) - i.log_action( - 'pretix.event.item.changed', user=user, data={'active': False, '_source': 'cancel_event'} + if not dry_run: + event.log_action( + 'pretix.event.canceled', user=user, + data={ + "auto_refund": auto_refund, + "keep_fee_fixed": keep_fee_fixed, + "keep_fee_per_ticket": keep_fee_per_ticket, + "keep_fee_percentage": keep_fee_percentage, + "keep_fees": keep_fees, + "manual_refund": manual_refund, + "send": send, + "send_subject": send_subject, + "send_message": send_message, + "send_waitinglist": send_waitinglist, + "send_waitinglist_subject": send_waitinglist_subject, + "send_waitinglist_message": send_waitinglist_message, + "refund_as_giftcard": refund_as_giftcard, + "giftcard_expires": str(giftcard_expires), + "giftcard_conditions": giftcard_conditions, + } ) + + for i in event.items.filter(active=True): + i.active = False + i.save(update_fields=['active']) + i.log_action( + 'pretix.event.item.changed', user=user, data={'active': False, '_source': 'cancel_event'} + ) failed = 0 - total = orders_to_cancel.count() + orders_to_change.count() + refund_total = Decimal("0.00") + cancel_full_total = orders_to_cancel.count() + cancel_partial_total = orders_to_change.count() + total = cancel_full_total + cancel_partial_total qs_wl = event.waitinglistentries.filter(voucher__isnull=True).select_related('subevent') if subevents: qs_wl = qs_wl.filter(subevent__in=subevents) @@ -199,6 +241,7 @@ def cancel_event(self, event: Event, subevent: int, auto_refund: bool, ) for o in orders_to_cancel.only('id', 'total').iterator(): + payment_refund_sum = o.payment_refund_sum # cache to avoid multiple computations try: fee = Decimal('0.00') fee_sum = Decimal('0.00') @@ -217,20 +260,24 @@ def cancel_event(self, event: Event, subevent: int, auto_refund: bool, for p in o.positions.all(): if p.addon_to_id is None: fee += min(p.price, Decimal(keep_fee_per_ticket)) - fee = round_decimal(min(fee, o.payment_refund_sum), event.currency) + fee = round_decimal(min(fee, payment_refund_sum), event.currency) - _cancel_order(o.pk, user, send_mail=False, cancellation_fee=fee, keep_fees=keep_fee_objects) - refund_amount = o.payment_refund_sum + if dry_run: + refund_total += max(Decimal("0.00"), min(payment_refund_sum, o.total - fee)) + else: + _cancel_order(o.pk, user, send_mail=False, cancellation_fee=fee, keep_fees=keep_fee_objects) + refund_amount = payment_refund_sum + refund_amount += refund_total - try: - if auto_refund or manual_refund: - _try_auto_refund(o.pk, auto_refund=auto_refund, manual_refund=manual_refund, allow_partial=True, - source=OrderRefund.REFUND_SOURCE_ADMIN, refund_as_giftcard=refund_as_giftcard, - giftcard_expires=giftcard_expires, giftcard_conditions=giftcard_conditions, - comment=gettext('Event canceled')) - finally: - if send: - _send_mail(o, send_subject, send_message, subevent, refund_amount, user, o.positions.all()) + try: + if auto_refund or manual_refund: + _try_auto_refund(o.pk, auto_refund=auto_refund, manual_refund=manual_refund, allow_partial=True, + source=OrderRefund.REFUND_SOURCE_ADMIN, refund_as_giftcard=refund_as_giftcard, + giftcard_expires=giftcard_expires, giftcard_conditions=giftcard_conditions, + comment=gettext('Event canceled')) + finally: + if send: + _send_mail(o, send_subject, send_message, subevent, refund_amount, user, o.positions.all()) counter += 1 if not self.request.called_directly and counter % max(10, total // 100) == 0: @@ -247,12 +294,16 @@ def cancel_event(self, event: Event, subevent: int, auto_refund: bool, for o in orders_to_change.values_list('id', flat=True).iterator(): with transaction.atomic(): - o = event.orders.select_for_update(of=OF_SELF).get(pk=o) + if dry_run: + o = event.orders.get(pk=o) + else: + o = event.orders.select_for_update(of=OF_SELF).get(pk=o) total = Decimal('0.00') fee = Decimal('0.00') positions = [] ocm = OrderChangeManager(o, user=user, notify=False) + payment_refund_sum = o.payment_refund_sum # cache to avoid multiple computations for p in o.positions.all(): if (not event.has_subevents or p.subevent_id in subevent_ids) and not p.blocked: total += p.price @@ -267,7 +318,7 @@ def cancel_event(self, event: Event, subevent: int, auto_refund: bool, fee += Decimal(keep_fee_fixed) if keep_fee_percentage: fee += Decimal(keep_fee_percentage) / Decimal('100.00') * total - fee = round_decimal(min(fee, o.payment_refund_sum), event.currency) + fee = round_decimal(min(fee, payment_refund_sum), event.currency) if fee: tax_rule_zero = TaxRule.zero() if event.settings.tax_rule_cancellation == "default": @@ -298,17 +349,21 @@ def cancel_event(self, event: Event, subevent: int, auto_refund: bool, ) ocm.add_fee(f) - ocm.commit() - refund_amount = o.payment_refund_sum - o.total + if dry_run: + refund_total += max(payment_refund_sum - (o.total + ocm._totaldiff), Decimal("0.00")) + else: + ocm.commit() + refund_amount = payment_refund_sum - o.total + refund_total += refund_amount - if auto_refund or manual_refund: - _try_auto_refund(o.pk, auto_refund=auto_refund, manual_refund=manual_refund, allow_partial=True, - source=OrderRefund.REFUND_SOURCE_ADMIN, refund_as_giftcard=refund_as_giftcard, - giftcard_expires=giftcard_expires, giftcard_conditions=giftcard_conditions, - comment=gettext('Event canceled')) + if auto_refund or manual_refund: + _try_auto_refund(o.pk, auto_refund=auto_refund, manual_refund=manual_refund, allow_partial=True, + source=OrderRefund.REFUND_SOURCE_ADMIN, refund_as_giftcard=refund_as_giftcard, + giftcard_expires=giftcard_expires, giftcard_conditions=giftcard_conditions, + comment=gettext('Event canceled')) - if send: - _send_mail(o, send_subject, send_message, subevent, refund_amount, user, positions) + if send: + _send_mail(o, send_subject, send_message, subevent, refund_amount, user, positions) counter += 1 if not self.request.called_directly and counter % max(10, total // 100) == 0: @@ -319,7 +374,8 @@ def cancel_event(self, event: Event, subevent: int, auto_refund: bool, if send_waitinglist: for wle in qs_wl: - _send_wle_mail(wle, send_waitinglist_subject, send_waitinglist_message, wle.subevent) + if not dry_run: + _send_wle_mail(wle, send_waitinglist_subject, send_waitinglist_message, wle.subevent) counter += 1 if not self.request.called_directly and counter % max(10, total // 100) == 0: @@ -327,4 +383,30 @@ def cancel_event(self, event: Event, subevent: int, auto_refund: bool, state='PROGRESS', meta={'value': round(counter / total * 100 if total else 0, 2)} ) - return failed + + confirmation_code = None + if dry_run and user and refund_total > Decimal('100.00'): + confirmation_code = get_random_string(8, allowed_chars="01234567890") + mail( + user.email, + subject=gettext('Bulk-refund confirmation'), + template='pretixbase/email/cancel_confirm.txt', + context={ + "event": str(event), + "amount": money_filter(refund_total, event.currency), + "confirmation_code": confirmation_code, + }, + locale=user.locale, + ) + + return { + "dry_run": dry_run, + "id": self.request.id, + "failed": failed, + "refund_total": refund_total, + "cancel_full_total": cancel_full_total, + "cancel_partial_total": cancel_partial_total, + "confirmation_code": confirmation_code, + "args": self.request.args, + "kwargs": self.request.kwargs, + } diff --git a/src/pretix/base/templates/pretixbase/email/cancel_confirm.txt b/src/pretix/base/templates/pretixbase/email/cancel_confirm.txt new file mode 100644 index 0000000000..5e3043156a --- /dev/null +++ b/src/pretix/base/templates/pretixbase/email/cancel_confirm.txt @@ -0,0 +1,10 @@ +{% load i18n %} +{% trans "You have requested us to cancel an event which includes a larger bulk-refund:" %} + +{% trans "Event" %}: {{ event }} + +{% trans "Estimated refund amount" %}: **{{ amount }}** + +{% trans "Please confirm that you want to proceed by coping the following confirmation code into the cancellation form:" %} + +**{{ confirmation_code }}** diff --git a/src/pretix/control/forms/orders.py b/src/pretix/control/forms/orders.py index bdcbafd14f..9d2dc82d67 100644 --- a/src/pretix/control/forms/orders.py +++ b/src/pretix/control/forms/orders.py @@ -1030,3 +1030,27 @@ class EventCancelForm(FormPlaceholderMixin, forms.Form): if self.event.has_subevents and not d['subevent'] and not d['all_subevents'] and not d.get('subevents_from'): raise ValidationError(_('Please confirm that you want to cancel ALL dates in this event series.')) return d + + +class EventCancelConfirmForm(forms.Form): + confirm = forms.BooleanField( + label=_("I understand that this is not reversible and want to continue"), + required=True, + ) + confirmation_code = forms.CharField( + label=_("Confirmation code"), + help_text=_("We have just emailed you a confirmation code to enter to confirm this action"), + required=True, + ) + + def __init__(self, *args, **kwargs): + self.code = kwargs.pop("confirmation_code") + super().__init__(*args, **kwargs) + if not self.code: + del self.fields["confirmation_code"] + + def clean_confirmation_code(self): + val = self.cleaned_data['confirmation_code'] + if val != self.code: + raise ValidationError(_('The confirmation code is incorrect.')) + return val diff --git a/src/pretix/control/templates/pretixcontrol/orders/cancel.html b/src/pretix/control/templates/pretixcontrol/orders/cancel.html index 47c91ecb9e..2e8c9ce71b 100644 --- a/src/pretix/control/templates/pretixcontrol/orders/cancel.html +++ b/src/pretix/control/templates/pretixcontrol/orders/cancel.html @@ -79,9 +79,15 @@ {% bootstrap_field form.send_waitinglist_message layout="horizontal" %}
- + {% if dry_run_supported %} + + {% else %} + + {% endif %}
{% endblock %} diff --git a/src/pretix/control/templates/pretixcontrol/orders/cancel_confirm.html b/src/pretix/control/templates/pretixcontrol/orders/cancel_confirm.html new file mode 100644 index 0000000000..b7e6208618 --- /dev/null +++ b/src/pretix/control/templates/pretixcontrol/orders/cancel_confirm.html @@ -0,0 +1,85 @@ +{% extends "pretixcontrol/event/base.html" %} +{% load i18n %} +{% load eventsignal %} +{% load bootstrap3 %} +{% load money %} +{% block title %}{% trans "Cancel event" %}{% endblock %} +{% block content %} +

{% trans "Cancel event" %}

+
+ {% csrf_token %} + {% bootstrap_form_errors form %} +

+ {% blocktrans trimmed %} + If you proceed, the system will do the following: + {% endblocktrans %} +

+
    +
  • + {% blocktrans trimmed count count=dryrun_result.cancel_full_total %} + {{ count }} order will be canceled fully + {% plural %} + {{ count }} orders will be canceled fully + {% endblocktrans %} +
  • +
  • + {% blocktrans trimmed count count=dryrun_result.cancel_partial_total %} + {{ count }} order will be canceled partially + {% plural %} + {{ count }} orders will be canceled partially + {% endblocktrans %} +
  • +
  • + {% if dryrun_result.kwargs.auto_refund and dryrun_result.refund_total %} + + {% endif %} + {% blocktrans trimmed with amount=dryrun_result.refund_total|money:request.event.currency %} + {{ amount }} are eligible for refunds. + {% endblocktrans %} + {% if dryrun_result.kwargs.auto_refund %} + {% trans "The system will attempt to refund the money automatically if supported by the payment method." %} + {% elif dryrun_result.kwargs.manual_refund %} + {% trans "The system will create manual refunds that you need to execute." %} + {% else %} + {% trans "Refunds will not happen automatically." %} + {% endif %} + {% if dryrun_result.kwargs.auto_refund %} + + {% endif %} +
  • + {% if dryrun_result.kwargs.send %} +
  • + {% trans "Inform all customers via email." %} +
  • + {% endif %} + {% if dryrun_result.kwargs.send_waitinglist %} +
  • + {% trans "Inform all waiting list contacts via email." %} +
  • + {% endif %} +
+

+ {% blocktrans trimmed %} + These numbers are estimates and may change if the data in your event recently changed. + {% endblocktrans %} +

+ {% bootstrap_form_errors form %} + {% if form.confirmation_code %} + {% bootstrap_field form.confirm layout="control" %} + {% bootstrap_field form.confirmation_code layout="control" %} + {% else %} + {% bootstrap_field form.confirm layout="inline" form_group_class="" %} + {% endif %} +
+ +
+
+{% endblock %} diff --git a/src/pretix/control/urls.py b/src/pretix/control/urls.py index 130d4e78c4..feb3b64014 100644 --- a/src/pretix/control/urls.py +++ b/src/pretix/control/urls.py @@ -460,6 +460,7 @@ urlpatterns = [ re_path(r'^orders/search$', orders.OrderSearch.as_view(), name='event.orders.search'), re_path(r'^dangerzone/$', event.DangerZone.as_view(), name='event.dangerzone'), re_path(r'^cancel/$', orders.EventCancel.as_view(), name='event.cancel'), + re_path(r'^cancel/(?P[^/]+)/$', orders.EventCancelConfirm.as_view(), name='event.cancel.confirm'), re_path(r'^shredder/$', shredder.StartShredView.as_view(), name='event.shredder.start'), re_path(r'^shredder/export$', shredder.ShredExportView.as_view(), name='event.shredder.export'), re_path(r'^shredder/download/(?P[^/]+)/$', shredder.ShredDownloadView.as_view(), name='event.shredder.download'), diff --git a/src/pretix/control/views/orders.py b/src/pretix/control/views/orders.py index 9e5d8382c5..c403cec839 100644 --- a/src/pretix/control/views/orders.py +++ b/src/pretix/control/views/orders.py @@ -42,6 +42,7 @@ from datetime import datetime, time, timedelta from decimal import Decimal, DecimalException from urllib.parse import quote, urlencode +from celery.result import AsyncResult from django import forms from django.conf import settings from django.contrib import messages @@ -122,8 +123,8 @@ from pretix.control.forms.filter import ( RefundFilterForm, ) from pretix.control.forms.orders import ( - CancelForm, CommentForm, DenyForm, EventCancelForm, ExporterForm, - ExtendForm, MarkPaidForm, OrderContactForm, OrderFeeAddForm, + CancelForm, CommentForm, DenyForm, EventCancelConfirmForm, EventCancelForm, + ExporterForm, ExtendForm, MarkPaidForm, OrderContactForm, OrderFeeAddForm, OrderFeeAddFormset, OrderFeeChangeForm, OrderLocaleForm, OrderMailForm, OrderPositionAddForm, OrderPositionAddFormset, OrderPositionChangeForm, OrderPositionMailForm, OrderRefundForm, OtherOperationsForm, @@ -2975,10 +2976,99 @@ class EventCancel(EventPermissionRequiredMixin, AsyncAction, FormView): send_waitinglist_subject=form.cleaned_data.get('send_waitinglist_subject').data, send_waitinglist_message=form.cleaned_data.get('send_waitinglist_message').data, user=self.request.user.pk, + dry_run=settings.HAS_CELERY, + ) + + def get_context_data(self, **kwargs): + return super().get_context_data( + dry_run_supported=settings.HAS_CELERY, ) def get_success_message(self, value): - if value == 0: + if value["dry_run"]: + return None + elif value["failed"] == 0: + return _('All orders have been canceled.') + else: + return _('The orders have been canceled. An error occurred with {count} orders, please ' + 'check all uncanceled orders.').format(count=value) + + def get_success_url(self, value): + if settings.HAS_CELERY: + return reverse('control:event.cancel.confirm', kwargs={ + 'organizer': self.request.organizer.slug, + 'event': self.request.event.slug, + 'task': value["id"], + }) + else: + return reverse('control:event.cancel', kwargs={ + 'organizer': self.request.organizer.slug, + 'event': self.request.event.slug, + }) + + def get_error_url(self): + return reverse('control:event.cancel', kwargs={ + 'organizer': self.request.organizer.slug, + 'event': self.request.event.slug, + }) + + def get_error_message(self, exception): + if isinstance(exception, str): + return exception + return super().get_error_message(exception) + + def form_invalid(self, form): + messages.error(self.request, _('Your input was not valid.')) + return super().form_invalid(form) + + +class EventCancelConfirm(EventPermissionRequiredMixin, AsyncAction, FormView): + template_name = 'pretixcontrol/orders/cancel_confirm.html' + permission = 'can_change_orders' + form_class = EventCancelConfirmForm + task = cancel_event + known_errortypes = ['OrderError'] + + @cached_property + def dryrun_result(self): + res = AsyncResult(self.kwargs.get("task")) + if not res.ready(): + raise Http404() + if not res.successful(): + raise Http404() + data = res.info + if not data.get("dry_run"): + raise Http404() + if data.get("args")[0] != self.request.event.pk: + raise Http404() + return data + + def get(self, request, *args, **kwargs): + if 'async_id' in request.GET and settings.HAS_CELERY: + return self.get_result(request) + return FormView.get(self, request, *args, **kwargs) + + def get_form_kwargs(self): + k = super().get_form_kwargs() + k['confirmation_code'] = self.dryrun_result["confirmation_code"] + return k + + def form_valid(self, form): + return self.do( + *self.dryrun_result["args"], + **{ + **self.dryrun_result["kwargs"], + "dry_run": False, + }, + ) + + def get_context_data(self, **kwargs): + return super().get_context_data( + dryrun_result=self.dryrun_result, + ) + + def get_success_message(self, value): + if value["failed"] == 0: return _('All orders have been canceled.') else: return _('The orders have been canceled. An error occurred with {count} orders, please ' diff --git a/src/pretix/static/pretixcontrol/js/ui/main.js b/src/pretix/static/pretixcontrol/js/ui/main.js index a78a9acfe5..a1928bbcaf 100644 --- a/src/pretix/static/pretixcontrol/js/ui/main.js +++ b/src/pretix/static/pretixcontrol/js/ui/main.js @@ -348,7 +348,7 @@ var form_handlers = function (el) { dependency.on("change", update); }); - el.find("div[data-display-dependency], textarea[data-display-dependency], input[data-display-dependency], select[data-display-dependency]").each(function () { + el.find("div[data-display-dependency], textarea[data-display-dependency], input[data-display-dependency], select[data-display-dependency], button[data-display-dependency]").each(function () { var dependent = $(this), dependency = findDependency($(this).attr("data-display-dependency"), this), update = function (ev) { @@ -373,10 +373,11 @@ var form_handlers = function (el) { enabled = !enabled; } var $toggling = dependent; - if (dependent.attr("data-disable-dependent")) { + if (dependent.is("[data-disable-dependent]")) { $toggling.attr('disabled', !enabled).trigger("change"); } - if (dependent.get(0).tagName.toLowerCase() !== "div") { + const tagName = dependent.get(0).tagName.toLowerCase() + if (tagName !== "div" && tagName !== "button") { $toggling = dependent.closest('.form-group'); } if (ev) { diff --git a/src/tests/base/test_cancelevent.py b/src/tests/base/test_cancelevent.py index 79509aef0f..dbb97c1530 100644 --- a/src/tests/base/test_cancelevent.py +++ b/src/tests/base/test_cancelevent.py @@ -63,6 +63,15 @@ class EventCancelTests(TestCase): generate_invoice(self.order) djmail.outbox = [] + def _cancel_with_dryrun(self, *args, expected_refunds, **kwargs): + dry_run = cancel_event( + *args, **kwargs, dry_run=True + ) + assert dry_run["refund_total"] == expected_refunds + cancel_event( + *args, **kwargs, + ) + @classscope(attr='o') def test_cancel_send_mail(self): gc = self.o.issued_gift_cards.create(currency="EUR") @@ -74,11 +83,11 @@ class EventCancelTests(TestCase): ) self.order.status = Order.STATUS_PAID self.order.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=True, send_subject="Event canceled", send_message="Event canceled :-( {refund_amount}", - user=None + user=None, expected_refunds=Decimal("46.00") ) assert len(djmail.outbox) == 1 self.order.refresh_from_db() @@ -114,11 +123,11 @@ class EventCancelTests(TestCase): self.op1.blocked = ["admin"] self.op1.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=True, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("23.00") ) self.op1.refresh_from_db() @@ -147,11 +156,11 @@ class EventCancelTests(TestCase): self.order.status = Order.STATUS_PAID self.order.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=True, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("46.00") ) r = self.order.refunds.get() @@ -175,11 +184,11 @@ class EventCancelTests(TestCase): self.order.status = Order.STATUS_PAID self.order.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, auto_refund=False, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=True, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("46.00") ) self.order.refresh_from_db() @@ -198,11 +207,11 @@ class EventCancelTests(TestCase): self.order.status = Order.STATUS_PAID self.order.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="2.00", send=False, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("42.00") ) r = self.order.refunds.get() @@ -226,11 +235,11 @@ class EventCancelTests(TestCase): self.order.status = Order.STATUS_PAID self.order.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="2.00", send=False, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("44.00") ) r = self.order.refunds.get() @@ -252,11 +261,11 @@ class EventCancelTests(TestCase): self.order.status = Order.STATUS_PAID self.order.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="2.00", send=False, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("44.00") ) r = self.order.refunds.get() @@ -276,11 +285,11 @@ class EventCancelTests(TestCase): self.order.status = Order.STATUS_PAID self.order.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, auto_refund=True, keep_fee_fixed="10.00", keep_fee_percentage="10.00", keep_fee_per_ticket="", send=False, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("31.40") ) r = self.order.refunds.get() @@ -304,11 +313,11 @@ class EventCancelTests(TestCase): self.order.status = Order.STATUS_PENDING self.order.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, auto_refund=True, keep_fee_fixed="10.00", keep_fee_percentage="10.00", keep_fee_per_ticket="", send=False, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("12.00") ) assert not self.order.refunds.exists() @@ -335,10 +344,11 @@ class EventCancelTests(TestCase): self.order.status = Order.STATUS_PAID self.order.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="10.00", keep_fees=[OrderFee.FEE_TYPE_PAYMENT], keep_fee_per_ticket="", - send=False, send_subject="Event canceled", send_message="Event canceled :-(", user=None + send=False, send_subject="Event canceled", send_message="Event canceled :-(", user=None, + expected_refunds=Decimal("36.90") ) r = self.order.refunds.get() assert r.state == OrderRefund.REFUND_STATE_DONE @@ -371,11 +381,11 @@ class EventCancelTests(TestCase): self.order.status = Order.STATUS_PAID self.order.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="10.00", keep_fees=[OrderFee.FEE_TYPE_PAYMENT], keep_fee_per_ticket="", send=False, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("39.40") ) r = self.order.refunds.get() assert r.amount == Decimal('39.40') @@ -400,11 +410,11 @@ class EventCancelTests(TestCase): self.order.status = Order.STATUS_PAID self.order.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, manual_refund=True, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=False, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("46.00") ) assert self.order.refunds.count() == 2 @@ -436,11 +446,11 @@ class EventCancelTests(TestCase): self.order.status = Order.STATUS_PAID self.order.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, manual_refund=False, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=False, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("46.00") ) assert self.order.refunds.count() == 1 @@ -467,11 +477,11 @@ class EventCancelTests(TestCase): self.order.status = Order.STATUS_PAID self.order.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, manual_refund=True, auto_refund=False, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=False, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("46.00") ) assert self.order.refunds.count() == 1 @@ -511,17 +521,26 @@ class SubEventCancelTests(TestCase): generate_invoice(self.order) djmail.outbox = [] + def _cancel_with_dryrun(self, *args, expected_refunds, **kwargs): + dry_run = cancel_event( + *args, **kwargs, dry_run=True + ) + assert dry_run["refund_total"] == expected_refunds + cancel_event( + *args, **kwargs, + ) + @classscope(attr='o') def test_cancel_partially_send_mail_attendees(self): self.op1.attendee_email = 'foo@example.com' self.op1.save() self.op2.attendee_email = 'foo@example.org' self.op2.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=self.se1.pk, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=True, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("0.00") ) assert len(djmail.outbox) == 2 self.order.refresh_from_db() @@ -532,19 +551,19 @@ class SubEventCancelTests(TestCase): def test_cancel_subevent_range(self): self.op2.subevent = self.se1 self.op2.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, subevents_from=self.se1.date_from - timedelta(days=3), subevents_to=self.se1.date_from - timedelta(days=2), auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=True, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("0.00") ) self.order.refresh_from_db() assert self.order.status == Order.STATUS_PENDING - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, subevents_from=self.se1.date_from - timedelta(days=3), subevents_to=self.se1.date_from + timedelta(days=2), auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=True, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("0.00") ) self.order.refresh_from_db() assert self.order.status == Order.STATUS_CANCELED @@ -553,11 +572,11 @@ class SubEventCancelTests(TestCase): def test_cancel_simple_order(self): self.op2.subevent = self.se1 self.op2.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=self.se1.pk, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=True, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("0.00") ) self.order.refresh_from_db() assert self.order.status == Order.STATUS_CANCELED @@ -567,11 +586,11 @@ class SubEventCancelTests(TestCase): self.op2.subevent = self.se1 self.op2.blocked = ["admin"] self.op2.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=self.se1.pk, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=True, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("0.00") ) self.order.refresh_from_db() assert self.order.status == Order.STATUS_PENDING @@ -582,11 +601,11 @@ class SubEventCancelTests(TestCase): @classscope(attr='o') def test_cancel_all_subevents(self): - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=True, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("0.00") ) self.order.refresh_from_db() assert self.order.status == Order.STATUS_CANCELED @@ -602,11 +621,12 @@ class SubEventCancelTests(TestCase): ) self.order.status = Order.STATUS_PAID self.order.save() - cancel_event( + self.order.refresh_from_db() + self._cancel_with_dryrun( self.event.pk, subevent=self.se1.pk, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=True, send_subject="Event canceled", send_message="Event canceled :-( {refund_amount}", - user=None + user=None, expected_refunds=Decimal("23.00") ) self.order.refresh_from_db() assert self.order.status == Order.STATUS_PAID @@ -614,20 +634,20 @@ class SubEventCancelTests(TestCase): @classscope(attr='o') def test_cancel_mixed_order_range(self): - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, subevents_from=self.se1.date_from - timedelta(days=3), subevents_to=self.se1.date_from - timedelta(days=2), auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=True, send_subject="Event canceled", send_message="Event canceled :-( {refund_amount}", - user=None + user=None, expected_refunds=Decimal("0.00") ) self.order.refresh_from_db() assert self.order.status == Order.STATUS_PENDING assert self.order.positions.count() == 2 - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=None, subevents_from=self.se1.date_from - timedelta(days=3), subevents_to=self.se1.date_from + timedelta(days=2), auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="", send=True, send_subject="Event canceled", send_message="Event canceled :-( {refund_amount}", - user=None + user=None, expected_refunds=Decimal("0.00") ) self.order.refresh_from_db() assert self.order.status == Order.STATUS_PENDING @@ -651,11 +671,11 @@ class SubEventCancelTests(TestCase): self.order.status = Order.STATUS_PAID self.order.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=self.se1.pk, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="10.00", keep_fee_per_ticket="", send=False, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("16.20") ) r = self.order.refunds.get() assert r.state == OrderRefund.REFUND_STATE_DONE @@ -682,11 +702,11 @@ class SubEventCancelTests(TestCase): self.order.status = Order.STATUS_PAID self.order.save() - cancel_event( + self._cancel_with_dryrun( self.event.pk, subevent=self.se1.pk, auto_refund=True, keep_fee_fixed="0.00", keep_fee_percentage="0.00", keep_fee_per_ticket="2.00", send=False, send_subject="Event canceled", send_message="Event canceled :-(", - user=None + user=None, expected_refunds=Decimal("21.00") ) r = self.order.refunds.get() assert r.state == OrderRefund.REFUND_STATE_DONE From 9461ac27f9d331d2e04a111c7171e7d31d25dfa8 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 29 Oct 2025 08:55:10 +0100 Subject: [PATCH 21/33] Update po files [CI skip] Signed-off-by: Raphael Michel --- src/pretix/locale/ang/LC_MESSAGES/django.po | 467 +++++++++------- src/pretix/locale/ang/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/ar/LC_MESSAGES/django.po | 495 ++++++++++------- src/pretix/locale/ar/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/az/LC_MESSAGES/django.po | 467 +++++++++------- src/pretix/locale/az/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/ca/LC_MESSAGES/django.po | 484 ++++++++++------- src/pretix/locale/ca/LC_MESSAGES/djangojs.po | 26 +- src/pretix/locale/cs/LC_MESSAGES/django.po | 485 ++++++++++------- src/pretix/locale/cs/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/cy/LC_MESSAGES/django.po | 475 +++++++++------- src/pretix/locale/cy/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/da/LC_MESSAGES/django.po | 485 ++++++++++------- src/pretix/locale/da/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/de/LC_MESSAGES/django.po | 490 ++++++++++------- src/pretix/locale/de/LC_MESSAGES/djangojs.po | 22 +- .../locale/de_Informal/LC_MESSAGES/django.po | 490 ++++++++++------- .../de_Informal/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/django.pot | 467 +++++++++------- src/pretix/locale/djangojs.pot | 22 +- src/pretix/locale/el/LC_MESSAGES/django.po | 487 ++++++++++------- src/pretix/locale/el/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/enm/LC_MESSAGES/django.po | 467 +++++++++------- src/pretix/locale/enm/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/es/LC_MESSAGES/django.po | 488 ++++++++++------- src/pretix/locale/es/LC_MESSAGES/djangojs.po | 26 +- .../locale/es_419/LC_MESSAGES/django.po | 469 +++++++++------- .../locale/es_419/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/et/LC_MESSAGES/django.po | 467 +++++++++------- src/pretix/locale/et/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/eu/LC_MESSAGES/django.po | 481 ++++++++++------- src/pretix/locale/eu/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/fi/LC_MESSAGES/django.po | 481 ++++++++++------- src/pretix/locale/fi/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/fo/LC_MESSAGES/django.po | 469 +++++++++------- src/pretix/locale/fo/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/fr/LC_MESSAGES/django.po | 491 ++++++++++------- src/pretix/locale/fr/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/gl/LC_MESSAGES/django.po | 480 ++++++++++------- src/pretix/locale/gl/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/he/LC_MESSAGES/django.po | 484 ++++++++++------- src/pretix/locale/he/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/hr/LC_MESSAGES/django.po | 486 ++++++++++------- src/pretix/locale/hr/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/hu/LC_MESSAGES/django.po | 475 +++++++++------- src/pretix/locale/hu/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/id/LC_MESSAGES/django.po | 482 ++++++++++------- src/pretix/locale/id/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/it/LC_MESSAGES/django.po | 479 ++++++++++------- src/pretix/locale/it/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/ja/LC_MESSAGES/django.po | 505 +++++++++++------- src/pretix/locale/ja/LC_MESSAGES/djangojs.po | 26 +- src/pretix/locale/ko/LC_MESSAGES/django.po | 481 ++++++++++------- src/pretix/locale/ko/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/lb/LC_MESSAGES/django.po | 489 ++++++++++------- src/pretix/locale/lb/LC_MESSAGES/djangojs.po | 25 +- src/pretix/locale/lt/LC_MESSAGES/django.po | 469 +++++++++------- src/pretix/locale/lt/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/lv/LC_MESSAGES/django.po | 485 ++++++++++------- src/pretix/locale/lv/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/nan/LC_MESSAGES/django.po | 467 +++++++++------- src/pretix/locale/nan/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/nb_NO/LC_MESSAGES/django.po | 484 ++++++++++------- .../locale/nb_NO/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/nl/LC_MESSAGES/django.po | 499 ++++++++++------- src/pretix/locale/nl/LC_MESSAGES/djangojs.po | 22 +- .../locale/nl_Informal/LC_MESSAGES/django.po | 487 ++++++++++------- .../nl_Informal/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/pl/LC_MESSAGES/django.po | 488 ++++++++++------- src/pretix/locale/pl/LC_MESSAGES/djangojs.po | 22 +- .../locale/pl_Informal/LC_MESSAGES/django.po | 475 +++++++++------- .../pl_Informal/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/pt/LC_MESSAGES/django.po | 469 +++++++++------- src/pretix/locale/pt/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/pt_BR/LC_MESSAGES/django.po | 485 ++++++++++------- .../locale/pt_BR/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/pt_PT/LC_MESSAGES/django.po | 483 ++++++++++------- .../locale/pt_PT/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/ro/LC_MESSAGES/django.po | 486 ++++++++++------- src/pretix/locale/ro/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/ru/LC_MESSAGES/django.po | 486 ++++++++++------- src/pretix/locale/ru/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/si/LC_MESSAGES/django.po | 467 +++++++++------- src/pretix/locale/si/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/sk/LC_MESSAGES/django.po | 486 ++++++++++------- src/pretix/locale/sk/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/sl/LC_MESSAGES/django.po | 485 ++++++++++------- src/pretix/locale/sl/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/sq/LC_MESSAGES/django.po | 467 +++++++++------- src/pretix/locale/sq/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/sv/LC_MESSAGES/django.po | 484 ++++++++++------- src/pretix/locale/sv/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/th/LC_MESSAGES/django.po | 465 +++++++++------- src/pretix/locale/th/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/tr/LC_MESSAGES/django.po | 487 ++++++++++------- src/pretix/locale/tr/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/uk/LC_MESSAGES/django.po | 486 ++++++++++------- src/pretix/locale/uk/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/vi/LC_MESSAGES/django.po | 480 ++++++++++------- src/pretix/locale/vi/LC_MESSAGES/djangojs.po | 22 +- src/pretix/locale/vls/LC_MESSAGES/django.po | 467 +++++++++------- src/pretix/locale/vls/LC_MESSAGES/djangojs.po | 22 +- .../locale/zh_Hans/LC_MESSAGES/django.po | 485 ++++++++++------- .../locale/zh_Hans/LC_MESSAGES/djangojs.po | 22 +- .../locale/zh_Hant/LC_MESSAGES/django.po | 482 ++++++++++------- .../locale/zh_Hant/LC_MESSAGES/djangojs.po | 22 +- 106 files changed, 16298 insertions(+), 10353 deletions(-) diff --git a/src/pretix/locale/ang/LC_MESSAGES/django.po b/src/pretix/locale/ang/LC_MESSAGES/django.po index c52be7ca63..5e133204a3 100644 --- a/src/pretix/locale/ang/LC_MESSAGES/django.po +++ b/src/pretix/locale/ang/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -228,7 +228,7 @@ msgstr "" msgid "Comment" msgstr "" -#: pretix/api/serializers/cart.py:168 pretix/api/serializers/order.py:1466 +#: pretix/api/serializers/cart.py:168 pretix/api/serializers/order.py:1471 #, python-brace-format msgid "The product \"{}\" is not assigned to a quota." msgstr "" @@ -337,18 +337,18 @@ msgstr "" msgid "\"{input}\" is not a valid choice." msgstr "" -#: pretix/api/serializers/order.py:1427 pretix/api/views/cart.py:224 +#: pretix/api/serializers/order.py:1432 pretix/api/views/cart.py:224 #: pretix/base/services/orders.py:1619 #, python-brace-format msgid "The selected seat \"{seat}\" is not available." msgstr "" -#: pretix/api/serializers/order.py:1453 pretix/api/serializers/order.py:1460 +#: pretix/api/serializers/order.py:1458 pretix/api/serializers/order.py:1465 #, python-brace-format msgid "The product \"{}\" is not available on this date." msgstr "" -#: pretix/api/serializers/order.py:1475 pretix/api/views/cart.py:200 +#: pretix/api/serializers/order.py:1480 pretix/api/views/cart.py:200 #, python-brace-format msgid "" "There is not enough quota available on quota \"{}\" to perform the operation." @@ -397,17 +397,17 @@ msgid "" "account." msgstr "" -#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1602 +#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1603 #: pretix/presale/views/order.py:736 pretix/presale/views/order.py:816 msgid "You cannot generate an invoice for this order." msgstr "" -#: pretix/api/views/order.py:613 pretix/control/views/orders.py:1604 +#: pretix/api/views/order.py:613 pretix/control/views/orders.py:1605 #: pretix/presale/views/order.py:738 pretix/presale/views/order.py:818 msgid "An invoice for this order already exists." msgstr "" -#: pretix/api/views/order.py:639 pretix/control/views/orders.py:1763 +#: pretix/api/views/order.py:639 pretix/control/views/orders.py:1764 #: pretix/control/views/users.py:145 msgid "There was an error sending the mail. Please try again later." msgstr "" @@ -432,7 +432,7 @@ msgstr "" #: pretix/api/webhooks.py:274 pretix/base/models/checkin.py:355 #: pretix/base/notifications.py:251 #: pretix/control/templates/pretixcontrol/event/mail.html:114 -#: pretix/control/views/orders.py:1563 +#: pretix/control/views/orders.py:1564 msgid "Order canceled" msgstr "" @@ -615,8 +615,8 @@ msgstr "" #: pretix/control/forms/event.py:798 pretix/control/forms/event.py:838 #: pretix/control/forms/event.py:1455 pretix/control/forms/mailsetup.py:87 #: pretix/control/forms/mailsetup.py:129 pretix/control/forms/subevents.py:181 -#: pretix/plugins/banktransfer/payment.py:506 -#: pretix/plugins/banktransfer/payment.py:512 +#: pretix/plugins/banktransfer/payment.py:507 +#: pretix/plugins/banktransfer/payment.py:513 #: pretix/presale/forms/customer.py:152 msgid "This field is required." msgstr "" @@ -2561,7 +2561,9 @@ msgstr "" #: pretix/base/models/items.py:468 pretix/base/models/items.py:2060 #: pretix/base/models/orders.py:233 pretix/base/models/orders.py:3111 #: pretix/base/models/vouchers.py:184 pretix/base/models/waitinglist.py:55 -#: pretix/base/notifications.py:187 pretix/control/forms/filter.py:1025 +#: pretix/base/notifications.py:187 +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:4 +#: pretix/control/forms/filter.py:1025 #: pretix/control/templates/pretixcontrol/organizers/customer.html:206 #: pretix/control/templates/pretixcontrol/organizers/customer_membership.html:42 #: pretix/control/templates/pretixcontrol/search/orders.html:51 @@ -2724,8 +2726,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:892 #: pretix/control/templates/pretixcontrol/orders/refunds.html:70 #: pretix/control/templates/pretixcontrol/search/payments.html:98 -#: pretix/plugins/banktransfer/payment.py:298 -#: pretix/plugins/banktransfer/payment.py:307 +#: pretix/plugins/banktransfer/payment.py:299 +#: pretix/plugins/banktransfer/payment.py:308 #: pretix/plugins/banktransfer/refund_export.py:46 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:25 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/transaction_list.html:13 @@ -3794,9 +3796,9 @@ msgstr "" msgid "Could not parse {value} as a date and time." msgstr "" -#: pretix/base/modelimport.py:239 pretix/control/views/orders.py:1173 -#: pretix/control/views/orders.py:1202 pretix/control/views/orders.py:1247 -#: pretix/control/views/orders.py:1282 pretix/control/views/orders.py:1305 +#: pretix/base/modelimport.py:239 pretix/control/views/orders.py:1174 +#: pretix/control/views/orders.py:1203 pretix/control/views/orders.py:1248 +#: pretix/control/views/orders.py:1283 pretix/control/views/orders.py:1306 msgid "You entered an invalid number." msgstr "" @@ -7133,14 +7135,14 @@ msgstr "" msgid "Manual payment" msgstr "" -#: pretix/base/payment.py:1221 pretix/plugins/banktransfer/payment.py:195 +#: pretix/base/payment.py:1221 pretix/plugins/banktransfer/payment.py:196 msgid "" "In test mode, you can just manually mark this order as paid in the backend " "after it has been created." msgstr "" #: pretix/base/payment.py:1242 pretix/base/payment.py:1458 -#: pretix/plugins/banktransfer/payment.py:149 +#: pretix/plugins/banktransfer/payment.py:150 msgid "Payment method name" msgstr "" @@ -7179,7 +7181,7 @@ msgid "" "the placeholders {order}, {amount}, {currency} and {amount_with_currency}." msgstr "" -#: pretix/base/payment.py:1269 pretix/plugins/banktransfer/payment.py:144 +#: pretix/base/payment.py:1269 pretix/plugins/banktransfer/payment.py:145 msgid "" "Create an invoice for orders using bank transfer immediately if the event is " "otherwise configured to create invoices after payment is completed." @@ -7189,7 +7191,7 @@ msgstr "" msgid "Offsetting" msgstr "" -#: pretix/base/payment.py:1334 pretix/control/views/orders.py:1256 +#: pretix/base/payment.py:1334 pretix/control/views/orders.py:1257 msgid "You entered an order that could not be found." msgstr "" @@ -7696,11 +7698,15 @@ msgid "" "offline scanning – please refer to documentation or support for details)" msgstr "" -#: pretix/base/services/cancelevent.py:230 -#: pretix/base/services/cancelevent.py:308 +#: pretix/base/services/cancelevent.py:277 +#: pretix/base/services/cancelevent.py:363 msgid "Event canceled" msgstr "" +#: pretix/base/services/cancelevent.py:392 +msgid "Bulk-refund confirmation" +msgstr "" + #: pretix/base/services/cart.py:102 pretix/base/services/modelimport.py:247 #: pretix/base/services/orders.py:155 msgid "" @@ -11479,6 +11485,21 @@ msgid "" "us." msgstr "" +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:2 +msgid "" +"You have requested us to cancel an event which includes a larger bulk-refund:" +msgstr "" + +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:6 +msgid "Estimated refund amount" +msgstr "" + +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:8 +msgid "" +"Please confirm that you want to proceed by coping the following confirmation " +"code into the cancellation form:" +msgstr "" + #: pretix/base/templates/pretixbase/email/email_footer.html:3 #, python-format msgid "powered by pretix" @@ -14115,6 +14136,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -14776,7 +14815,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -14860,11 +14899,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -14876,7 +14915,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -14888,7 +14927,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -14923,7 +14962,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -14932,11 +14971,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16590,8 +16629,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -16741,7 +16780,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17602,6 +17641,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20499,13 +20540,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20544,7 +20585,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21218,10 +21259,74 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +msgid "Proceed and cancel orders" +msgstr "" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21616,12 +21721,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23135,10 +23240,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24578,7 +24679,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24626,11 +24727,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -24966,17 +25067,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -24988,65 +25089,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25057,72 +25158,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25135,201 +25236,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25337,31 +25438,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26380,7 +26481,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26413,7 +26514,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26422,101 +26523,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26527,33 +26628,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26563,9 +26664,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26575,25 +26676,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26628,35 +26729,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/ang/LC_MESSAGES/djangojs.po b/src/pretix/locale/ang/LC_MESSAGES/djangojs.po index 250d7614a4..3ad08f20a7 100644 --- a/src/pretix/locale/ang/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/ang/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -638,40 +638,40 @@ msgid "" "will be impacted." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "" diff --git a/src/pretix/locale/ar/LC_MESSAGES/django.po b/src/pretix/locale/ar/LC_MESSAGES/django.po index ada136ed15..bbbf8aeba9 100644 --- a/src/pretix/locale/ar/LC_MESSAGES/django.po +++ b/src/pretix/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2025-04-08 18:00+0000\n" "Last-Translator: Menaouer Chaabi " "<98581961+DerJimno@users.noreply.github.com>\n" @@ -234,7 +234,7 @@ msgstr "حد على الفعاليات" msgid "Comment" msgstr "تعليق" -#: pretix/api/serializers/cart.py:168 pretix/api/serializers/order.py:1466 +#: pretix/api/serializers/cart.py:168 pretix/api/serializers/order.py:1471 #, python-brace-format msgid "The product \"{}\" is not assigned to a quota." msgstr "لم يتم تعيين حصة للمنتج \"{}\"." @@ -351,18 +351,18 @@ msgstr "توجد وسيلة بنفس المعرف والنوع في حساب ا msgid "\"{input}\" is not a valid choice." msgstr "\"{input}\" ادخال غير صالحة، يرجى المحاولة مرة أخرى." -#: pretix/api/serializers/order.py:1427 pretix/api/views/cart.py:224 +#: pretix/api/serializers/order.py:1432 pretix/api/views/cart.py:224 #: pretix/base/services/orders.py:1619 #, python-brace-format msgid "The selected seat \"{seat}\" is not available." msgstr "المقعد المحدد \"{seat}\" غير متوفر." -#: pretix/api/serializers/order.py:1453 pretix/api/serializers/order.py:1460 +#: pretix/api/serializers/order.py:1458 pretix/api/serializers/order.py:1465 #, python-brace-format msgid "The product \"{}\" is not available on this date." msgstr "المنتج \"{}\" غير متوفر في هذا التاريخ." -#: pretix/api/serializers/order.py:1475 pretix/api/views/cart.py:200 +#: pretix/api/serializers/order.py:1480 pretix/api/views/cart.py:200 #, python-brace-format msgid "" "There is not enough quota available on quota \"{}\" to perform the operation." @@ -411,17 +411,17 @@ msgid "" "account." msgstr "تم تفويض التطبيق \"{application_name}\" للوصول إلى حسابك." -#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1602 +#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1603 #: pretix/presale/views/order.py:736 pretix/presale/views/order.py:816 msgid "You cannot generate an invoice for this order." msgstr "لا يمكن انشاء فاتورة لهذا الطلب." -#: pretix/api/views/order.py:613 pretix/control/views/orders.py:1604 +#: pretix/api/views/order.py:613 pretix/control/views/orders.py:1605 #: pretix/presale/views/order.py:738 pretix/presale/views/order.py:818 msgid "An invoice for this order already exists." msgstr "توجد فاتورة مصدرة لهذا الطلب مسبقاً." -#: pretix/api/views/order.py:639 pretix/control/views/orders.py:1763 +#: pretix/api/views/order.py:639 pretix/control/views/orders.py:1764 #: pretix/control/views/users.py:145 msgid "There was an error sending the mail. Please try again later." msgstr "حدث خطأ اثناء ارسال البريد الاكتروني. الرجاء المحاولة مرة أخرى لاحقاً." @@ -446,7 +446,7 @@ msgstr "تم تمييز الطلب على أنه مدفوع" #: pretix/api/webhooks.py:274 pretix/base/models/checkin.py:355 #: pretix/base/notifications.py:251 #: pretix/control/templates/pretixcontrol/event/mail.html:114 -#: pretix/control/views/orders.py:1563 +#: pretix/control/views/orders.py:1564 msgid "Order canceled" msgstr "تم إلغاء الطلب" @@ -675,8 +675,8 @@ msgstr "تم طمس هويتها لهذا المستخدم." #: pretix/control/forms/event.py:798 pretix/control/forms/event.py:838 #: pretix/control/forms/event.py:1455 pretix/control/forms/mailsetup.py:87 #: pretix/control/forms/mailsetup.py:129 pretix/control/forms/subevents.py:181 -#: pretix/plugins/banktransfer/payment.py:506 -#: pretix/plugins/banktransfer/payment.py:512 +#: pretix/plugins/banktransfer/payment.py:507 +#: pretix/plugins/banktransfer/payment.py:513 #: pretix/presale/forms/customer.py:152 msgid "This field is required." msgstr "هذه الخانة مطلوبة." @@ -2750,7 +2750,9 @@ msgstr "قم بتضمين الطلبات التي تم إنشاؤها في هذ #: pretix/base/models/items.py:468 pretix/base/models/items.py:2060 #: pretix/base/models/orders.py:233 pretix/base/models/orders.py:3111 #: pretix/base/models/vouchers.py:184 pretix/base/models/waitinglist.py:55 -#: pretix/base/notifications.py:187 pretix/control/forms/filter.py:1025 +#: pretix/base/notifications.py:187 +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:4 +#: pretix/control/forms/filter.py:1025 #: pretix/control/templates/pretixcontrol/organizers/customer.html:206 #: pretix/control/templates/pretixcontrol/organizers/customer_membership.html:42 #: pretix/control/templates/pretixcontrol/search/orders.html:51 @@ -2936,8 +2938,8 @@ msgstr "رمز الحالة" #: pretix/control/templates/pretixcontrol/order/index.html:892 #: pretix/control/templates/pretixcontrol/orders/refunds.html:70 #: pretix/control/templates/pretixcontrol/search/payments.html:98 -#: pretix/plugins/banktransfer/payment.py:298 -#: pretix/plugins/banktransfer/payment.py:307 +#: pretix/plugins/banktransfer/payment.py:299 +#: pretix/plugins/banktransfer/payment.py:308 #: pretix/plugins/banktransfer/refund_export.py:46 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:25 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/transaction_list.html:13 @@ -4094,9 +4096,9 @@ msgstr "" msgid "Could not parse {value} as a date and time." msgstr "" -#: pretix/base/modelimport.py:239 pretix/control/views/orders.py:1173 -#: pretix/control/views/orders.py:1202 pretix/control/views/orders.py:1247 -#: pretix/control/views/orders.py:1282 pretix/control/views/orders.py:1305 +#: pretix/base/modelimport.py:239 pretix/control/views/orders.py:1174 +#: pretix/control/views/orders.py:1203 pretix/control/views/orders.py:1248 +#: pretix/control/views/orders.py:1283 pretix/control/views/orders.py:1306 msgid "You entered an invalid number." msgstr "لقد أدخلت رقما غير صالح." @@ -7900,7 +7902,7 @@ msgstr "شباك التذاكر" msgid "Manual payment" msgstr "الدفع اليدوي" -#: pretix/base/payment.py:1221 pretix/plugins/banktransfer/payment.py:195 +#: pretix/base/payment.py:1221 pretix/plugins/banktransfer/payment.py:196 msgid "" "In test mode, you can just manually mark this order as paid in the backend " "after it has been created." @@ -7909,7 +7911,7 @@ msgstr "" "التحكم بعد إنشائه." #: pretix/base/payment.py:1242 pretix/base/payment.py:1458 -#: pretix/plugins/banktransfer/payment.py:149 +#: pretix/plugins/banktransfer/payment.py:150 msgid "Payment method name" msgstr "اسم طريقة الدفع" @@ -7956,7 +7958,7 @@ msgstr "" "المستخدم إلى كيفية متابعة الدفع. يمكنك استخدام العناصر {order}, {amount}, " "{currency} و {amount_with_currency}." -#: pretix/base/payment.py:1269 pretix/plugins/banktransfer/payment.py:144 +#: pretix/base/payment.py:1269 pretix/plugins/banktransfer/payment.py:145 msgid "" "Create an invoice for orders using bank transfer immediately if the event is " "otherwise configured to create invoices after payment is completed." @@ -7968,7 +7970,7 @@ msgstr "" msgid "Offsetting" msgstr "تعويض" -#: pretix/base/payment.py:1334 pretix/control/views/orders.py:1256 +#: pretix/base/payment.py:1334 pretix/control/views/orders.py:1257 msgid "You entered an order that could not be found." msgstr "لقد أدخلت طلبا لا يمكن العثور عليه." @@ -8543,11 +8545,17 @@ msgstr "" "ويغير دلالات المسح دون اتصال - يرجى الرجوع إلى التوثيق أو الدعم للحصول على " "التفاصيل)" -#: pretix/base/services/cancelevent.py:230 -#: pretix/base/services/cancelevent.py:308 +#: pretix/base/services/cancelevent.py:277 +#: pretix/base/services/cancelevent.py:363 msgid "Event canceled" msgstr "تم إلغاء الفعالية" +#: pretix/base/services/cancelevent.py:392 +#, fuzzy +#| msgid "Create configuration" +msgid "Bulk-refund confirmation" +msgstr "إنشاء التكوين" + #: pretix/base/services/cart.py:102 pretix/base/services/modelimport.py:247 #: pretix/base/services/orders.py:155 msgid "" @@ -13423,6 +13431,23 @@ msgstr "" "إذا استغرق هذا الأمر أكثر من بضع دقائق ، يرجى تحديث هذه الصفحة أو الاتصال " "بنا." +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:2 +msgid "" +"You have requested us to cancel an event which includes a larger bulk-refund:" +msgstr "" + +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:6 +#, fuzzy +#| msgid "Initiate a refund of %(amount)s" +msgid "Estimated refund amount" +msgstr "بدء استرداد %(amount)s" + +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:8 +msgid "" +"Please confirm that you want to proceed by coping the following confirmation " +"code into the cancellation form:" +msgstr "" + #: pretix/base/templates/pretixbase/email/email_footer.html:3 #, python-format msgid "powered by pretix" @@ -16438,6 +16463,26 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "رمز التأكيد" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "رمز التأكيد الذي أدخلته غير صحيح." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "هذا سبيكة هي قيد الاستخدام. الرجاء اختيار واحدة مختلفة." @@ -17211,7 +17256,7 @@ msgstr "أكد المستخدم الرسالة التالية: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "تم رفض الطلب." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "تم إلغاء هذا الأمر." @@ -17303,11 +17348,11 @@ msgstr "تم وضع علامة على الترتيب كما المدفوعة." msgid "The order has been set to require payment before use." msgstr "تم إرسال كود الخصم إلى {recipient}." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "تم وضع علامة على النظام ومنتهية الصلاحية." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "تم وضع علامة على الترتيب كما المدفوعة." @@ -17319,7 +17364,7 @@ msgstr "تم حذف طلب الإلغاء." msgid "The order has been refunded." msgstr "وقد تم ترتيب ردها." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "تم إعادة تنشيط الطلب." @@ -17331,7 +17376,7 @@ msgstr "تم إنشاء هذا الأمر." msgid "The order requires approval before it can continue to be processed." msgstr "الأمر يتطلب موافقة قبل أن تتمكن من الاستمرار في معالجتها." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "تمت الموافقة على النظام." @@ -17368,7 +17413,7 @@ msgstr "تم تغيير حساب العميل." msgid "The order locale has been changed." msgstr "تم تغيير لغة النظام." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "تم إنشاء الفاتورة." @@ -17379,11 +17424,11 @@ msgstr "تم إنشاء الفاتورة." msgid "The invoice could not be generated." msgstr "تم إنشاء الفاتورة." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "تم إعادة إنشاء الفاتورة." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "تم إعادة إصدار الفاتورة." @@ -19197,8 +19242,8 @@ msgid "Transaction ID" msgstr "المعاملات" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -19370,7 +19415,7 @@ msgstr "قم بالإلغاء" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -20369,6 +20414,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "حذف فعالية" @@ -23682,13 +23729,13 @@ msgstr "تفاصيل الطلب: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "يوافق" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "أنكر" @@ -23733,7 +23780,7 @@ msgstr "" "المجانية، يمكنك وضع علامة على أنها منتهية الصلاحية يدويا." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 #, fuzzy #| msgid "Refund order" msgid "Refund for overpayment" @@ -24511,12 +24558,95 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund only" +msgid "Preview refund amount" +msgstr "برد فقط" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 #, fuzzy #| msgid "Cancel order" msgid "Cancel all orders" msgstr "الغاء الطلب" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "إذا اتصلت بنا ، يرجى إرسال الرمز التالي إلينا:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Checked in automatically" +msgid "Refunds will not happen automatically." +msgstr "إيداعه تلقائيا" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "أرسل المعلومات إلى البريد الإلكتروني" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "بدء استرداد %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "نعم، إلغاء الطلب" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24970,14 +25100,14 @@ msgid "Select action" msgstr "اختر ولايه" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy #| msgid "Refund full paid amount" msgid "Refund overpaid amount" msgstr "برد المبلغ المدفوع كاملا" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -26785,10 +26915,6 @@ msgstr "" "في الملف الذي تم تنزيله، وهناك ملف نصي يدعى \"CONFIRM_CODE.txt\" مع رمز ستة " "أحرف. الرجاء إدخال هذا الرمز هنا لتأكيد أن بنجاح تحميل الملف." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "رمز التأكيد" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -28465,7 +28591,7 @@ msgstr "طلبك هو: {code}" msgid "Unknown email renderer." msgstr "غير معروف العارض البريد الإلكتروني." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "لقد طلبت صالح نوع الانتاج التذاكر." @@ -28517,11 +28643,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "تم تحديث التعليق." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "لا يمكن تحديث للتعليق." @@ -28889,19 +29015,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "تم إبطال وصول التطبيق المحدد." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "لم نتمكن من حفظ التغييرات الخاصة بك. انظر أدناه للحصول على التفاصيل." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -28913,15 +29039,15 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "كود أجل غير معروف أو غير مخول للوصول إلى هذا النظام." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "لم يتم تمكين حمل تذكرة لهذا المنتج." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "تم حذف هذا الأمر." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -28929,55 +29055,55 @@ msgstr "" "لا يمكن حذف النظام كما بعض القيود (مثل البيانات التي تم إنشاؤها من قبل " "المكونات الإضافية) لا تسمح بذلك." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "أوامر الوحيدة التي تم إنشاؤها في وضع الاختبار يمكن حذفها." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "تم رفض الطلب، وبالتالي يتم إلغاء الآن." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "تم إلغاء هذا الدفع." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "لا يمكن إلغاء هذه الدفعة في الوقت الراهن." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "تم إلغاء استرداد." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "لا يمكن إلغاء هذا رد في الوقت الراهن." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "تم معالجة استرداد." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "لا يمكن معالجة هذا رد في الوقت الراهن." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "تم وضع علامة على المبلغ في القيام به." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 #, fuzzy #| msgid "The device has been verified and can now be used." msgid "The request has been removed. If you want, you can now inform the user." msgstr "تم التحقق من الجهاز ويمكن الآن أن تستخدم." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 #, fuzzy #| msgid "Cancellation fee" msgid "Your cancellation request" msgstr "رسوم الإلغاء" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -28993,7 +29119,7 @@ msgstr "" "\n" "فريق فعاليتك{event}" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -29001,41 +29127,41 @@ msgstr "" "تم وضع علامة الدفع على النحو الكامل، ولكن لم نتمكن من إرسال البريد " "الإلكتروني تأكيد." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "تم وضع علامة الدفع على النحو الكامل." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "لا يمكن تأكيد هذه الدفعة في الوقت الراهن." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You entered an order that could not be found." msgid "You entered an order in an event with a different currency." msgstr "لقد أدخلت طلبا لا يمكن العثور عليه." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "لا يمكنك استرداد أكثر من مبلغ الدفعة التي لم يتم ردها حتى الان." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" "لقد حددت استرداد جزئي لطريقة الدفع التي تدعم فقط المبالغ المستردة كامل." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -29044,12 +29170,12 @@ msgstr "" "فشل في معالجتها واحدة من المبالغ المستردة. يجب عليك إعادة المحاولة لاسترداد " "بطريقة مختلفة. وكانت رسالة الخطأ: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "وقد تم تجهيز واسترداد {}." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -29058,16 +29184,16 @@ msgstr "" "تم حفظ استرداد {}، ولكن لم يتم تنفيذها بالكامل. يمكنك وضع علامة على أنها " "كاملة أدناه." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -29080,22 +29206,22 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "المبالغ المستردة التي حددتها لا تتطابق إجمالي استرداد المبلغ المحدد." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" "تم وضع علامة على النظام ودفع، ولكن لم نتمكن من إرسال البريد الإلكتروني تأكيد." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "تم إنشاء دفع بنجاح." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -29103,22 +29229,22 @@ msgstr "" "تم إلغاء هذا الأمر. يمكنك الآن تحديد كيف تريد لنقل الجزء الخلفي المال " "للمستخدم." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "يتم تحديد معرف ضريبة القيمة المضافة." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "تحديد أي بلد." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 #, fuzzy #| msgid "" #| "VAT ID could not be checked since a non-EU country has been specified." msgid "VAT ID could not be checked since this country is not supported." msgstr "ولم يتسن التحقق VAT ID منذ تم تحديد بلد خارج الاتحاد الأوروبي." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -29126,68 +29252,68 @@ msgstr "" "ولم يتسن التحقق من هوية ضريبة القيمة المضافة، مثل خدمة فحص ضريبة القيمة " "المضافة من البلاد غير متوفرة حاليا." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "هذا ID VAT صالح." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "فاتورة غير معروفة." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "وقد تم بالفعل إلغاء الفاتورة." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 #, fuzzy #| msgid "The invoice has already been canceled." msgid "The invoice file has already been exported." msgstr "وقد تم بالفعل إلغاء الفاتورة." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 #, fuzzy #| msgid "The invoice has been regenerated." msgid "The invoice file is too old to be regenerated." msgstr "تم إعادة إنشاء الفاتورة." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "وقد تم تنظيف الفاتورة البيانات الشخصية." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "وقد تم تنظيف الفاتورة البيانات الشخصية." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "وقد تم في قائمة الانتظار البريد الإلكتروني لإرسالها." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "لم يتم العثور على هذه الفاتورة" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "لم يعد تخزين الملف فاتورة على الخادم." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -29195,107 +29321,107 @@ msgstr "" "لم يتم إنشاء ملف الفاتورة، وسوف تولد لانها لكم الآن. يرجى المحاولة مرة أخرى " "في بضع ثوان." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "تم تغيير مصطلح الدفع." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "لم نكن قادرين على معالجة الطلب تماما كما كان الملقم مشغول جدا." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "يسمح هذا الإجراء فقط لانتظار أوامر." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 #, fuzzy #| msgid "This action is only allowed for pending orders." msgid "This action is only allowed for canceled orders." msgstr "يسمح هذا الإجراء فقط لانتظار أوامر." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "حدث خطأ. يرجى الاطلاع على التفاصيل أدناه." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "تم تغيير النظام وتم إعلام المستخدم." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "تم تغيير النظام." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "كان لدينا صعوبات معالجة المدخلات الخاصة بك. يرجى مراجعة الأخطاء أدناه." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "كان شيئا عن هذا الأمر يجب أن يتغير." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "لم نتمكن من إرسال البريد الإلكتروني. انظر أدناه للحصول على التفاصيل." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "الموضوع: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "وقد اصطف رسالتك وسوف يتم ارسالهم الى {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "فشل في إرسال البريد الإلكتروني للمستخدم التالية: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "هذا الرابط لم يعد صالحا. يرجى العودة، بتحديث الصفحة وحاول مرة أخرى." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "لا يوجد أي ترتيب مع رمز ترتيب معين." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "لم يتم العثور على مصدر المحدد." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" "كانت هناك مشكلة معالجة المدخلات الخاصة بك. انظر أدناه للحصول على تفاصيل " "الخطأ." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, fuzzy, python-brace-format #| msgid "Export date" msgid "Export: {title}" msgstr "تاريخ التصدير" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -29303,7 +29429,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have permission to perform this action." msgid "" @@ -29311,27 +29437,27 @@ msgid "" "therefore you cannot schedule it." msgstr "ليس لديك إذن لتنفيذ هذا الإجراء." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 #, fuzzy #| msgid "The order has been canceled." msgid "All orders have been canceled." msgstr "تم إلغاء هذا الأمر." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 #, fuzzy #| msgid "Your input was invalid, please try again." msgid "Your input was not valid." @@ -30528,7 +30654,7 @@ msgstr "تخطيط الشارة: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -30561,7 +30687,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "قم بتثبيت حزمة python 'chardet' لتحسين إمكانات استيراد ملفات CSV." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -30574,57 +30700,57 @@ msgstr "" "يدويا ، أو سأستورد بانتظام كشف حساب بنكي رقمي من أجل إعطاء pretix المعلومات " "المطلوبة." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "نوع الحساب المصرفي" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "حساب مصرفي SEPA" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "حساب مصرفي آخر" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "اسم صاحب الحساب" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "رقم الحساب المصرفي الدولي IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "رمز معرف الأعمال BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "اسم البنك" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "تفاصيل الحساب المصرفي" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -30634,7 +30760,7 @@ msgstr "" "كان لديك الكثير من العملاء الدوليين ، فقد يحتاجون إلى عنوانك الكامل وعنوان " "البنك الذي تتعامل معه." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -30644,38 +30770,38 @@ msgstr "" "يحتاجه عملاؤك لتحويل المبالغ ، على سبيل المثال أرقام الحسابات وأرقام التوجيه " "والعناوين وما إلى ذلك." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "لا تقم بتضمين الشرطات في مرجع الدفع." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "هذا مطلوب في بعض البلدان." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "قم بتضمين رقم الفاتورة في مرجع الدفع." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "الرمز الذي يسق مرجع الدفع" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "نص إضافي لإظهاره في الطلبات المعلقة" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" "سيظهر هذا النص في صفحة تأكيد الطلب للأوامر المعلقة بالإضافة إلى النص المعتاد." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "قائمة حظر IBAN للمبالغ المستردة" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 #, fuzzy #| msgid "" #| "Put one IBAN or IBAN prefix per line. The system will not attempt to send " @@ -30698,35 +30824,35 @@ msgstr "" "لجهة خارجية. يمكنك أيضا سرد رموز البلدان مثل \"GB\" إذا كنت لا ترغب أبدا في " "إرسال المبالغ المستردة إلى أرقام IBAN من بلد معين." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy #| msgid "Business customers" msgid "Restrict to business customers" msgstr "عملاء قطاع الأعمال" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "يرجى ملء تفاصيل حسابك المصرفي." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "الرجاء إدخال تفاصيل حسابك المصرفي." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "يرجى تحويل المبلغ كاملا إلى الحساب المصرفي التالي:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -30736,9 +30862,9 @@ msgstr "يرجى تحويل المبلغ كاملا إلى الحساب المص msgid "Account holder" msgstr "صاحب الحساب" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -30748,25 +30874,25 @@ msgstr "صاحب الحساب" msgid "Bank" msgstr "مصرف" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "رقم IBAN/BIC غير صالح" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "الحساب المصرفي{iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "يمكن فقط إنشاء تحويل مصرفي مسترد من دفعة موجودة." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "رقم BIC (اختياري)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "الإدخالات الخاصة بك غير صالحة ، الرجاء انظر أدناه للحصول على التفاصيل." @@ -30803,8 +30929,8 @@ msgstr "تم إلغاء الطلب سابقا." msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -30812,8 +30938,8 @@ msgstr "" "بعد إتمام عملية الشراء ، سنطلب منك تحويل الأموال إلى الحساب المصرفي التالي ، " "باستخدام رمز مرجعي شخصي:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 #, fuzzy #| msgid "" #| "We will assign you a personal reference code to use after you completed " @@ -30823,21 +30949,21 @@ msgid "" "code after you completed the order." msgstr "سنخصص لك رمزا مرجعيا شخصيا لاستخدامه بعد إتمام الطلب." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "الرمز المرجعي (مهم):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "سنخصص لك رمزا مرجعيا شخصيا لاستخدامه بعد إتمام الطلب." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 #, fuzzy #| msgid "" #| "After completing your purchase, we will ask you to transfer the money to " @@ -38676,9 +38802,6 @@ msgstr "كوسوفو" #~ "code here:" #~ msgstr "لبدء المسح تذاكر مع التطبيقات لدينا، أولا إنشاء مدونة التكوين هنا:" -#~ msgid "Create configuration" -#~ msgstr "إنشاء التكوين" - #~ msgid "Create a new configuration" #~ msgstr "إنشاء تكوين جديد" diff --git a/src/pretix/locale/ar/LC_MESSAGES/djangojs.po b/src/pretix/locale/ar/LC_MESSAGES/djangojs.po index eea5ce3874..e244d03426 100644 --- a/src/pretix/locale/ar/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/ar/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2021-09-15 11:22+0000\n" "Last-Translator: Mohamed Tawfiq \n" "Language-Team: Arabic \n" "Language-Team: Azerbaijani pretix" @@ -14117,6 +14138,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -14778,7 +14817,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -14862,11 +14901,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -14878,7 +14917,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -14890,7 +14929,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -14925,7 +14964,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -14934,11 +14973,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16592,8 +16631,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -16743,7 +16782,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17604,6 +17643,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20501,13 +20542,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20546,7 +20587,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21220,10 +21261,74 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +msgid "Proceed and cancel orders" +msgstr "" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21618,12 +21723,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23137,10 +23242,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24580,7 +24681,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24628,11 +24729,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -24968,17 +25069,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -24990,65 +25091,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25059,72 +25160,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25137,201 +25238,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25339,31 +25440,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26384,7 +26485,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26417,7 +26518,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26426,101 +26527,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26531,33 +26632,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26567,9 +26668,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26579,25 +26680,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26632,35 +26733,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/az/LC_MESSAGES/djangojs.po b/src/pretix/locale/az/LC_MESSAGES/djangojs.po index bad2fcfb00..fb41580643 100644 --- a/src/pretix/locale/az/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/az/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -638,40 +638,40 @@ msgid "" "will be impacted." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "" diff --git a/src/pretix/locale/ca/LC_MESSAGES/django.po b/src/pretix/locale/ca/LC_MESSAGES/django.po index 4e6717e453..91b4ac97d5 100644 --- a/src/pretix/locale/ca/LC_MESSAGES/django.po +++ b/src/pretix/locale/ca/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2025-09-29 07:39+0000\n" "Last-Translator: Raphael Michel \n" "Language-Team: Catalan pretix" @@ -16590,6 +16615,26 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "El codi de confirmació que heu introduït era incorrecte." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -17339,7 +17384,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Ja s'ha enviat un val a aquesta persona." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -17429,11 +17474,11 @@ msgstr "La comanda ha estat marcada com a pagada." msgid "The order has been set to require payment before use." msgstr "Ja s'ha enviat un val a aquesta persona." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "La comanda ha estat marcada com a pagada." @@ -17447,7 +17492,7 @@ msgstr "Aquesta posició de la comanda s'ha cancel·lat." msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 #, fuzzy #| msgid "The task has been completed." msgid "The order has been reactivated." @@ -17461,7 +17506,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -17499,7 +17544,7 @@ msgstr "S'ha completat la tasca." msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -17510,11 +17555,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "S'ha completat la tasca." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -19368,8 +19413,8 @@ msgid "Transaction ID" msgstr "Variacions" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -19529,7 +19574,7 @@ msgstr "Cancel·lar" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -20495,6 +20540,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 #, fuzzy #| msgid "Can create events" msgid "Cancel event" @@ -23649,13 +23696,13 @@ msgstr "Detalls de la comanda: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Aprovar" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Denegar" @@ -23696,7 +23743,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 #, fuzzy #| msgid "Refund order" msgid "Refund for overpayment" @@ -24447,12 +24494,87 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount:" +msgid "Preview refund amount" +msgstr "Quantitat a reemborsar:" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 #, fuzzy #| msgid "Can change orders" msgid "Cancel all orders" msgstr "Pot canviar les comandes" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Si ens contacteu, envieu-nos el següent codi:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Generate automatically" +msgid "Refunds will not happen automatically." +msgstr "Generar automàticament" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Enviar informació per correu electrònic" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Iniciar un reemborsament de %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Sí, cancel·lar la comanda" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24888,14 +25010,14 @@ msgid "Select action" msgstr "No ha començat la prevenda" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy #| msgid "Refund full paid amount" msgid "Refund overpaid amount" msgstr "Reemborsar tot l'import pagat" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -26583,10 +26705,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -28129,7 +28247,7 @@ msgstr "La vostra comanda: {code}" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -28177,11 +28295,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -28523,19 +28641,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "S'ha revocat l'accés a l'aplicació seleccionada." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We successfully received your payment. See below for details." msgid "We could not process your input. See below for details." msgstr "Hem rebut el vostre pagament. Veieu-ne els detalls a continuació." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -28547,69 +28665,69 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 #, fuzzy #| msgid "This entry is anonymized and can no longer be used." msgid "The request has been removed. If you want, you can now inform the user." msgstr "Aquesta entrada està anonimitzada i ja no es pot utilitzar." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 #, fuzzy #| msgid "Cancellation fee" msgid "Your cancellation request" msgstr "Tarifa de cancel·lació" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -28627,78 +28745,78 @@ msgstr "" "Atentament, \n" "el vostre equip de l'esdeveniment {event}" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You entered an order that could not be found." msgid "You entered an order in an event with a different currency." msgstr "Heu introduït una comanda que no es pot trobar." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 #, fuzzy #| msgid "This entry is anonymized and can no longer be used." msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "Aquesta entrada està anonimitzada i ja no es pot utilitzar." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 #, fuzzy #| msgid "Gift card" msgid "Your gift card code" msgstr "Targeta regal" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -28719,11 +28837,11 @@ msgstr "" "\n" "l'equip de l'acte {event}" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -28731,25 +28849,25 @@ msgstr "" "La comanda ha estat marcada com a pagada, però no hem pogut enviar un correu " "de confirmació." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "No s'ha especificat cap identificador d'IVA." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 #, fuzzy #| msgid "" #| "VAT ID could not be checked since a non-EU country has been specified." @@ -28758,7 +28876,7 @@ msgstr "" "L'identificador d'IVA no s'ha pogut comprovar ja que s'ha especificat un " "país no europeu." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -28766,170 +28884,170 @@ msgstr "" "No s'ha pogut comprovar l'identificador d'IVA, ja que el servei de " "comprovació d'IVA del vostre país no es troba disponible." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Aquest identificador d'IVA és vàlid." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 #, fuzzy #| msgid "The order has already been canceled." msgid "The invoice file has already been exported." msgstr "La comanda ja ha estat cancel·lada." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 #, fuzzy #| msgid "The task has been completed." msgid "The invoice file is too old to be regenerated." msgstr "S'ha completat la tasca." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "A voucher has already been sent to this person." msgid "The invoice has been scheduled for retransmission." msgstr "Ja s'ha enviat un val a aquesta persona." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, fuzzy, python-brace-format #| msgid "Export date" msgid "Export: {title}" msgstr "Data d'exportació" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -28937,7 +29055,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have permission to clone this event." msgid "" @@ -28945,27 +29063,27 @@ msgid "" "therefore you cannot schedule it." msgstr "No teniu permís per clonar aquest event." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 #, fuzzy #| msgid "This order position has been canceled." msgid "All orders have been canceled." msgstr "Aquesta posició de la comanda s'ha cancel·lat." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 #, fuzzy #| msgid "An internal error occurred, please try again." msgid "Your input was not valid." @@ -30132,7 +30250,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -30165,7 +30283,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -30174,101 +30292,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Tipus de compte bancari" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "Compte bancari SEPA" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Un altre compte bancari" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Nom del titular del compte" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Nom del banc" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Dades del compte bancari" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Això és obligatori en alguns indrets." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Prefix per la referència de pagament" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Text adicional per mostrar a les comandes pendents" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -30279,37 +30397,37 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy #| msgid "Business customer" msgid "Restrict to business customers" msgstr "Client comercial" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Si us plau, empleneu les dades del vostre compte bancari." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Si us plau, empleneu les dades del vostre compte bancari." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" "Si us plau, feu una transferència pel total de l'import al següent compte " "bancari:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -30319,9 +30437,9 @@ msgstr "" msgid "Account holder" msgstr "Titular del compte" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -30331,28 +30449,28 @@ msgstr "Titular del compte" msgid "Bank" msgstr "Banc" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "IBAN o BIC invàlids" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, fuzzy, python-brace-format #| msgid "Bank account type" msgid "Bank account {iban}" msgstr "Tipus de compte bancari" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 #, fuzzy #| msgid "(optional)" msgid "BIC (optional)" msgstr "(opcional)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 #, fuzzy #| msgid "An internal error occurred, please try again." msgid "Your input was invalid, please see below for details." @@ -30392,8 +30510,8 @@ msgstr "La comanda ja ha estat cancel·lada." msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -30401,8 +30519,8 @@ msgstr "" "Un cop finalitzada la compra, us demanarem que transferiu els diners al " "compte bancari següent, fent servir un codi de referència personal:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 #, fuzzy #| msgid "" #| "We will assign you a personal reference code to use after you completed " @@ -30414,14 +30532,14 @@ msgstr "" "Us assignarem un codi de referència personal que haureu de fer servir un cop " "finalitzada la comanda." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Codi de refèrencia (important):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -30429,8 +30547,8 @@ msgstr "" "Us assignarem un codi de referència personal que haureu de fer servir un cop " "finalitzada la comanda." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 #, fuzzy #| msgid "" #| "After completing your purchase, we will ask you to transfer the money to " diff --git a/src/pretix/locale/ca/LC_MESSAGES/djangojs.po b/src/pretix/locale/ca/LC_MESSAGES/djangojs.po index ca80654709..8999cfbbd3 100644 --- a/src/pretix/locale/ca/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/ca/LC_MESSAGES/djangojs.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-10-28 17:00+0000\n" "Last-Translator: Núria Masclans \n" -"Language-Team: Catalan \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -652,40 +652,40 @@ msgid "" "will be impacted." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "Consulta de cerca" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "Tots" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "Cap" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "Només seleccionats" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "Introdueix un número de pàgina entre 1 i %(max)s." -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "Número de pàgina no vàlid." -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "Utilitza un nom diferent internament" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "Prem per tancar" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "Tens canvis sense desar!" diff --git a/src/pretix/locale/cs/LC_MESSAGES/django.po b/src/pretix/locale/cs/LC_MESSAGES/django.po index 18e29366ed..da1fe4bbfd 100644 --- a/src/pretix/locale/cs/LC_MESSAGES/django.po +++ b/src/pretix/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2025-10-17 16:55+0000\n" "Last-Translator: Petr Čermák \n" "Language-Team: Czech pretix" @@ -15788,6 +15813,26 @@ msgstr "Pokud zadáváte rozsah dat, zadejte začátek i konec." msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "Potvrďte prosím, že chcete zrušit VŠECHNY termíny této série akcí." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Potvrzovací kód" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Zadaný potvrzovací kód byl chybný." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Tento slug se již používá. Použijte prosím jiný." @@ -16533,7 +16578,7 @@ msgstr "Uživatel potvrdil následující zprávu: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Objednávka byla zrušena (komentář: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Objednávka byla zrušena." @@ -16619,11 +16664,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "Objednávka byla nastavena tak, aby před použitím vyžadovala platbu." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "Objednávka byla označena jako prošlá." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "Objednávka byla označena jako zaplacená." @@ -16635,7 +16680,7 @@ msgstr "Žádost o zrušení byla smazána." msgid "The order has been refunded." msgstr "Objednávka byla vrácena." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "Objednávka byla reaktivována." @@ -16647,7 +16692,7 @@ msgstr "Objednávka byla vytvořena." msgid "The order requires approval before it can continue to be processed." msgstr "Před dalším zpracováním objednávky je třeba ji schválit." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "Objednávka byla schválena." @@ -16684,7 +16729,7 @@ msgstr "Účet zákazníka byl změněn." msgid "The order locale has been changed." msgstr "Jazyk objednávky byl změněn." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Faktura byla vytvořena." @@ -16695,11 +16740,11 @@ msgstr "Faktura byla vytvořena." msgid "The invoice could not be generated." msgstr "Faktura byla vytvořena." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Faktura byla přegenerována." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Faktura byla vystavena znovu." @@ -18426,8 +18471,8 @@ msgid "Transaction ID" msgstr "ID transakce" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18591,7 +18636,7 @@ msgstr "Zrušit" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19601,6 +19646,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Zrušit akci" @@ -22643,13 +22690,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Schválit" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Odmítnout" @@ -22688,7 +22735,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Vrácení přeplatku" @@ -23393,10 +23440,86 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Částka náhrady" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Pokud nás kontaktujete, zašlete nám prosím následující kód:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "Text (pokud objednávka nevyprší automaticky)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Odeslat informace e-mailem" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Ano, zrušit objednávku" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -23810,13 +23933,13 @@ msgid "Select action" msgstr "Zvolte akci" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy msgid "Refund overpaid amount" msgstr "Částka náhrady" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -25469,10 +25592,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Potvrzovací kód" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -26961,7 +27080,7 @@ msgstr "Vaše objednávka: %(code)s" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -27009,11 +27128,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -27363,19 +27482,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We successfully received your payment. See below for details." msgid "We could not process your input. See below for details." msgstr "Úspěšně jsme obdrželi vaši platbu. Podrobnosti naleznete níže." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -27387,65 +27506,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Tato platba byla zrušena." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Tuto platbu nelze dočasně zrušit." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -27456,7 +27575,7 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -27464,67 +27583,67 @@ msgstr "" "Platba byla označena jako dokončená, ale nepodařilo se nám odeslat " "potvrzovací mail." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "Platba byla označena jako dokončená." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Tuto platbu nelze v současné době potvrdit." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy msgid "You entered an order in an event with a different currency." msgstr "Zadali jste objednávku, kterou se nepodařilo najít." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -27537,169 +27656,169 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "Platba byla úspěšně vytvořena." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Neznámá faktura." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "Soubor faktury již byl exportován." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been reissued." msgid "The invoice has been scheduled for retransmission." msgstr "Faktura byla vystavena znovu." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Termín platby byl změněn." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Předmět: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -27707,35 +27826,35 @@ msgstr "" "Tento odkaz již není platný. Vraťte se prosím o krok zpět, znovu načtěte " "stránku a zkuste to znovu." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -27743,7 +27862,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -27751,25 +27870,25 @@ msgid "" "therefore you cannot schedule it." msgstr "K provedení tohoto exportu nemáte dostatečné oprávnění." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -28836,7 +28955,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -28871,7 +28990,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -28880,23 +28999,23 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Typ bankovního účtu" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "Bankovní účet SEPA" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Další bankovní účet" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Jméno majitele účtu" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -28904,35 +29023,35 @@ msgstr "" "Upozornění: speciální symboly jiné než písmena, číslice a některá " "interpunkční znaménka mohou v některých bankách způsobit problémy." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Název banky" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Bankovní údaje" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -28942,7 +29061,7 @@ msgstr "" "převodu. Pokud máte hodně zahraničních klientů, může se vám hodit vaše celá " "adresa a celá adresa vaší banky." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -28952,37 +29071,37 @@ msgstr "" "co vaši zákazníci potřebují k převodu peněz, např. čísla účtů, směrovací " "čísla, adresy atd." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "V odkazu na platbu neuvádějte pomlčky." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "V některých zemích je to povinné." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "V odkazu na platbu uveďte číslo faktury." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Předčíslí reference platby" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 #, fuzzy msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " @@ -28999,33 +29118,33 @@ msgstr "" "stran. Můžete také uvést kódy zemí, například \"GB\", pokud nechcete nikdy " "posílat náhrady na IBAN z určité země." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Omezit na obchodní zákazníky" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Vyplňte prosím údaje o svém bankovním účtu." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Zadejte prosím údaje o svém účtu." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Celou částku prosím převeďte na následující bankovní účet:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -29035,9 +29154,9 @@ msgstr "Celou částku prosím převeďte na následující bankovní účet:" msgid "Account holder" msgstr "Majitel účtu" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -29047,25 +29166,25 @@ msgstr "Majitel účtu" msgid "Bank" msgstr "Banka" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "Neplatný IBAN/BIC" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Bankovní účet {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "Vrácení bankovním převodem lze vytvořit pouze z existující platby." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -29102,8 +29221,8 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -29111,8 +29230,8 @@ msgstr "" "Po dokončení nákupu vás požádáme o převod peněz na následující bankovní účet " "s použitím osobního referenčního kódu:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 #, fuzzy msgid "" "Please do not yet start a payment. We'll assign you a personal reference " @@ -29121,14 +29240,14 @@ msgstr "" "Po dokončení objednávky vám přidělíme osobní referenční kód, který budete " "používat." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Referenční kód (důležité):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -29136,8 +29255,8 @@ msgstr "" "Po dokončení objednávky vám přidělíme osobní referenční kód, který budete " "používat." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/cs/LC_MESSAGES/djangojs.po b/src/pretix/locale/cs/LC_MESSAGES/djangojs.po index 896358973d..2d61ce0da1 100644 --- a/src/pretix/locale/cs/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/cs/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-09-08 18:57+0000\n" "Last-Translator: Alois Pospíšil \n" "Language-Team: Czech \n" "Language-Team: Welsh pretix" @@ -14165,6 +14186,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -14826,7 +14865,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -14910,11 +14949,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -14926,7 +14965,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -14938,7 +14977,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -14973,7 +15012,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -14982,11 +15021,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16643,8 +16682,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -16798,7 +16837,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17674,6 +17713,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20605,13 +20646,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20650,7 +20691,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21326,10 +21367,82 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +msgid "Proceed and cancel orders" +msgstr "" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21724,12 +21837,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23255,10 +23368,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24702,7 +24811,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24750,11 +24859,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -25090,17 +25199,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -25112,65 +25221,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25181,72 +25290,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25259,201 +25368,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25461,31 +25570,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26517,7 +26626,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26550,7 +26659,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26559,101 +26668,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26664,33 +26773,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26700,9 +26809,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26712,25 +26821,25 @@ msgstr "" msgid "Bank" msgstr "Banc" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26767,35 +26876,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/cy/LC_MESSAGES/djangojs.po b/src/pretix/locale/cy/LC_MESSAGES/djangojs.po index df8312a1d7..730b4f54e6 100644 --- a/src/pretix/locale/cy/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/cy/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -639,40 +639,40 @@ msgid "" "will be impacted." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "" diff --git a/src/pretix/locale/da/LC_MESSAGES/django.po b/src/pretix/locale/da/LC_MESSAGES/django.po index 7e97d80792..c776528996 100644 --- a/src/pretix/locale/da/LC_MESSAGES/django.po +++ b/src/pretix/locale/da/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: 1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2025-08-27 22:00+0000\n" "Last-Translator: Mie Frydensbjerg \n" "Language-Team: Danish pretix" @@ -15741,6 +15765,27 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +#, fuzzy +msgid "Confirmation code" +msgstr "Bekræftelsestekst" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Den indtastede bekræftelseskode var forkert." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Dette korte navn er allerede i brug. Vælg et andet." @@ -16449,7 +16494,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Bestillingen er blevet tilbagebetalt." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Bestillingen er blevet annulleret." @@ -16536,11 +16581,11 @@ msgstr "Bestillingen er blevet markeret som betalt." msgid "The order has been set to require payment before use." msgstr "Voucheren er blevet oprettet." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "Bestillingen er blevet markeret som udløbet." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "Bestillingen er blevet markeret som betalt." @@ -16553,7 +16598,7 @@ msgstr "Det valgte spørgsmål er blevet slettet." msgid "The order has been refunded." msgstr "Bestillingen er blevet tilbagebetalt." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 #, fuzzy msgid "The order has been reactivated." msgstr "Bestilling oprettet." @@ -16566,7 +16611,7 @@ msgstr "Bestillingen er oprettet" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 #, fuzzy msgid "The order has been approved." msgstr "Bestilling oprettet." @@ -16605,7 +16650,7 @@ msgstr "Spørgsmålet er blevet ændret." msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Fakturaen er blevet genereret." @@ -16616,11 +16661,11 @@ msgstr "Fakturaen er blevet genereret." msgid "The invoice could not be generated." msgstr "Fakturaen er blevet genereret." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Fakturaen er blevet genereret igen." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Fakturaen er blevet genudstedt." @@ -18449,8 +18494,8 @@ msgid "Transaction ID" msgstr "Opret dato" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18606,7 +18651,7 @@ msgstr "Annuller" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19524,6 +19569,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 #, fuzzy msgid "Cancel event" msgstr "Vælg arrangement" @@ -22629,13 +22676,13 @@ msgstr "Bestillingsdetaljer: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -22676,7 +22723,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 #, fuzzy msgid "Refund for overpayment" msgstr "Tilbagebetal bestilling" @@ -23415,11 +23462,83 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +msgid "Preview refund amount" +msgstr "Tilbagebetal bestilling" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 #, fuzzy msgid "Cancel all orders" msgstr "Annuller bestilling" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Hvis du kontakter os, så medsend denne kode:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Checked in automatically" +msgid "Refunds will not happen automatically." +msgstr "Tjekket ind automatisk" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +msgid "Inform all customers via email." +msgstr "Send rabatkoder" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Ja, annullér bestilling" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -23836,13 +23955,13 @@ msgid "Select action" msgstr "Forsalg ikke startet" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy msgid "Refund overpaid amount" msgstr "Tilbagebetal bestilling" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -25502,11 +25621,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -#, fuzzy -msgid "Confirmation code" -msgstr "Bekræftelsestekst" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -27072,7 +27186,7 @@ msgstr "Din bestilling: {code}" msgid "Unknown email renderer." msgstr "Ukendt bestillingskode" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -27120,11 +27234,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Kommentar opdateret." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Kunne ikke opdatere kommentaren." @@ -27472,19 +27586,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Den valgte konfiguration er blevet slettet." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "Vi kunne ikke gemme dine ændringer. Se detaljer nedenfor." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -27496,78 +27610,78 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 #, fuzzy msgid "Ticket download is not enabled for this product." msgstr "Voucheren er ikke gyldig for dette produkt." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 #, fuzzy msgid "The order has been deleted." msgstr "Bestillingen er blevet tilbagebetalt." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 #, fuzzy msgid "Only orders created in test mode can be deleted." msgstr "Den valgte gruppe kan ikke slettet." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 #, fuzzy msgid "The order has been denied and is therefore now canceled." msgstr "Bestillingen er blevet markeret som tilbagebetalt." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 #, fuzzy msgid "This payment has been canceled." msgstr "Betalingsbetingelser er blevet ændret." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 #, fuzzy msgid "This payment can not be canceled at the moment." msgstr "Dette produkt vil ikke blive solgt efter denne dato." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 #, fuzzy msgid "The refund has been canceled." msgstr "Bestillingen er blevet annulleret." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 #, fuzzy msgid "This refund can not be canceled at the moment." msgstr "Dette produkt vil ikke blive solgt efter denne dato." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 #, fuzzy msgid "The refund has been processed." msgstr "Bestilling oprettet." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 #, fuzzy msgid "This refund can not be processed at the moment." msgstr "Dette produkt vil ikke blive solgt efter denne dato." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 #, fuzzy msgid "The refund has been marked as done." msgstr "Bestillingen er blevet markeret som betalt." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 #, fuzzy msgid "The request has been removed. If you want, you can now inform the user." msgstr "Gruppen er blevet oprettet." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 #, fuzzy msgid "Your cancellation request" msgstr "Afbestillingsgebyr" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, fuzzy, python-brace-format msgid "" "Hello,\n" @@ -27587,77 +27701,77 @@ msgstr "" "Venlig hilsen \n" "Arrangøren af {event}" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 #, fuzzy msgid "The payment has been marked as complete." msgstr "Bestillingen er blevet markeret som betalt." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 #, fuzzy msgid "This payment can not be confirmed at the moment." msgstr "Seneste betalingsdato kan ikke ligge før slutningen på forsalget." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy msgid "You entered an order in an event with a different currency." msgstr "Du har indtastet en ordre, der ikke kunne findes." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, fuzzy, python-brace-format msgid "A refund of {} has been processed." msgstr "Fakturaen er blevet genudstedt." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 #, fuzzy msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "Gruppen er blevet oprettet." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 #, fuzzy msgid "Your gift card code" msgstr "Gavekort" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -27670,208 +27784,208 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 #, fuzzy msgid "The payment has been created successfully." msgstr "Arrangementsdatoen er blevet oprettet." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 #, fuzzy msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "Bestillingen er markeret som refunderet. Tilbagefør pengene manuelt." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Intet CVR-nr. angivet." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Intet land angivet." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 #, fuzzy msgid "VAT ID could not be checked since this country is not supported." msgstr "CVR-nummeret kun ikke valideres idet et ikke-EU-land er angivet." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Dette CVR-nr. er gyldigt." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Ukendt faktura." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "Denne faktura er allerede blevet annulleret." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 #, fuzzy msgid "The invoice file has already been exported." msgstr "Denne faktura er allerede blevet annulleret." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 #, fuzzy msgid "The invoice file is too old to be regenerated." msgstr "Fakturaen er blevet genereret igen." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 #, fuzzy msgid "The invoice has been cleaned of personal data." msgstr "Fakturaen er blevet genereret." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy msgid "The invoice has been scheduled for retransmission." msgstr "Fakturaen er blevet genereret." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "Denne e-mail er sat i udsendelseskøen." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Denne faktura findes ikke" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Betalingsbetingelser er blevet ændret." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Der er sket en fejl. Se detaljer nedenfor." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "Bestillingen er blevet ændret." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Der var ingen ændringer til bestillingen." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "Vi kunne ikke sende mailen. Se detaljer nedenfor." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Emne: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Din besked vil blive sendt til {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Kunne ikke sende mail til denne bruger: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Ingen bestilling med denne kode findes." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "Den valgte eksportør findes ikke." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, fuzzy, python-brace-format msgid "Export: {title}" msgstr "Udløbsdato" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -27879,7 +27993,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -27887,26 +28001,26 @@ msgid "" "therefore you cannot schedule it." msgstr "Du har ikke tilstrækkelige rettigheder til at udføre denne eksport." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 #, fuzzy msgid "All orders have been canceled." msgstr "Bestillingen er blevet annulleret." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 #, fuzzy msgid "Your input was not valid." msgstr "Prøv venligst igen." @@ -29054,7 +29168,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -29087,7 +29201,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -29096,109 +29210,109 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 #, fuzzy msgid "Bank account type" msgstr "Bankkontodetaljer" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 #, fuzzy msgid "Other bank account" msgstr "Opret konto" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 #, fuzzy msgid "Name of account holder" msgstr "Kontoejer" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 #, fuzzy msgid "Name of bank" msgstr "Antal dage" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Bankkontodetaljer" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 #, fuzzy msgid "This is required in some countries." msgstr "Dette er en arrangementsrække" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 #, fuzzy msgid "Prefix for the payment reference" msgstr "Betaler og reference" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 #, fuzzy msgid "Additional text to show on pending orders" msgstr "Generer billetter for produkter der ikke er adgangsgivende" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 #, fuzzy msgid "IBAN blocklist for refunds" msgstr "Alle" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -29209,34 +29323,34 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy msgid "Restrict to business customers" msgstr "Virksomhedskunde" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Udfyld venligst dine bankkontodetaljer." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Indtast venligst dine kontooplysninger." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -29246,9 +29360,9 @@ msgstr "" msgid "Account holder" msgstr "Kontoejer" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -29258,26 +29372,26 @@ msgstr "Kontoejer" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, fuzzy, python-brace-format msgid "Bank account {iban}" msgstr "Bankkontodetaljer" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 #, fuzzy msgid "BIC (optional)" msgstr "(valgfri)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "Din indtastning var ugyldig, se venligst detaljer nedenfor." @@ -29314,35 +29428,35 @@ msgstr "Ordren er allerede blevet annulleret." msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Referencekode (vigtig):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." @@ -36272,9 +36386,6 @@ msgstr "Kosovo" #~ msgid "Create app configuration" #~ msgstr "Opret applikationskonfiguration" -#~ msgid "Create configuration" -#~ msgstr "Opret konfiguration" - #~ msgid "Create a new configuration" #~ msgstr "Opret konfiguration" diff --git a/src/pretix/locale/da/LC_MESSAGES/djangojs.po b/src/pretix/locale/da/LC_MESSAGES/djangojs.po index 4a49fca448..2d98f167f9 100644 --- a/src/pretix/locale/da/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/da/LC_MESSAGES/djangojs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2024-07-10 15:00+0000\n" "Last-Translator: Nikolai \n" "Language-Team: Danish \n" "Language-Team: German pretix" @@ -16106,6 +16131,26 @@ msgstr "" "Bitte bestätigen Sie, dass Sie ALLE Termine dieser Veranstaltungsreihe " "stornieren möchten." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Bestätigungs-Code" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Der eingegebene Bestätigungscode war nicht korrekt." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -16862,7 +16907,7 @@ msgstr "Der Nutzer hat diesen Text bestätigt: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Die Bestellung wurde storniert (Kommentar: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Die Bestellung wurde storniert." @@ -16951,11 +16996,11 @@ msgstr "Die Bestellung wurde trotz ausstehender Zahlung als nutzbar bestätigt." msgid "The order has been set to require payment before use." msgstr "Die Bestellung erfordert nun eine Zahlung um verwendet zu werden." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "Die Bestellung wurde als abgelaufen markiert." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "Die Bestellung wurde als bezahlt markiert." @@ -16967,7 +17012,7 @@ msgstr "Die ausgewählte Stornierungsanfrage wurde gelöscht." msgid "The order has been refunded." msgstr "Die Bestellung wurde zurückerstattet." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "Die Bestellung wurde reaktiviert." @@ -16980,7 +17025,7 @@ msgid "The order requires approval before it can continue to be processed." msgstr "" "Diese Bestellung erfordert eine Freigabe, bevor sie weiter verarbeitet wird." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "Die Bestellung wurde freigegeben." @@ -17019,7 +17064,7 @@ msgstr "Das Kundenkonto wurde geändert." msgid "The order locale has been changed." msgstr "Die Sprache der Bestellung wurde geändert." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Die Rechnung wurde erstellt." @@ -17028,11 +17073,11 @@ msgstr "Die Rechnung wurde erstellt." msgid "The invoice could not be generated." msgstr "Die Rechnung konnte nicht erstellt werden." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Die Rechnung wurde neu generiert." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Die Rechnung wurde neu ausgestellt." @@ -18782,8 +18827,8 @@ msgid "Transaction ID" msgstr "Transaktions-ID" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18937,7 +18982,7 @@ msgstr "Abbrechen" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19965,6 +20010,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Veranstaltung absagen" @@ -23284,13 +23331,13 @@ msgstr "Bestellung: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Freigeben" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Ablehnen" @@ -23333,7 +23380,7 @@ msgstr "" "markieren." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Erstattung für Überzahlung" @@ -24085,10 +24132,85 @@ msgstr "" "Sie sollten diese Funktion nicht mehrfach für die gleiche Veranstaltung " "auswählen, sonst erhält jeder auf der Warteliste mehrere E-Mails." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Erstattungsbetrag" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Alle Bestellungen stornieren" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Wenn Sie uns kontaktieren, teilen Sie uns bitte folgenden Code mit:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "Text (wenn Bestellung nicht automatisch abläuft)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Require all customers to provide an email address." +msgid "Inform all customers via email." +msgstr "Erfordere eine E-Mail-Adresse von allen Käufern." + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "%(amount)s zurückerstatten" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Ja, Bestellung stornieren" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24509,12 +24631,12 @@ msgid "Select action" msgstr "Aktion auswählen" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "Überzahlten Betrag erstatten" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "Überfällige als abgelaufen markieren" @@ -26250,10 +26372,6 @@ msgstr "" "\"CONFIRM_CODE.txt\" mit einem sechsstelligen Code. Bitte geben Sie diesen " "Code hier ein, um zu bestätigen, dass der Download der Datei geklappt hat." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Bestätigungs-Code" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -27872,7 +27990,7 @@ msgstr "Ihre Bestellung: %(code)s" msgid "Unknown email renderer." msgstr "Unbekannter E-Mail-Renderer." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Sie haben einen ungültigen Ausgabetyp gewählt." @@ -27929,11 +28047,11 @@ msgstr "" "Insbesondere benötigen die folgenden Erweiterungen noch Daten aus dieser " "Veranstaltung: {plugin_names}" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Der Kommentar wurde aktualisiert." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Kommentar konnte nicht gespeichert werden." @@ -28332,13 +28450,13 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Der Zugriff für die ausgewählte App zu Ihrem Konto wurde entfernt." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" "Die Eingabe konnte nicht verarbeitet werden. Die fehlerhaften Felder sind " "farblich markiert." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." @@ -28346,7 +28464,7 @@ msgstr "" "Die Aktion \"{label}\" wurde erfolgreich für {success} von {total} " "Bestellungen ausgeführt." -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -28358,15 +28476,15 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "Ungültige Bestellnummer oder kein Zugriff auf diese Bestellung." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Der Ticket-Download ist für dieses Produkt nicht freigeschaltet." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "Die Bestellung wurde gelöscht." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -28374,53 +28492,53 @@ msgstr "" "Diese Bestellung konnte nicht gelöscht werden, da einige Bedingungen (z.B. " "von Plugins erstellte Daten) es nicht erlauben." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "Nur im Testmodus erstellte Bestellungen können wieder gelöscht werden." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "Die Bestellung wurde abgelehnt und daher storniert." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Die Zahlung wurde storniert." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Diese Zahlung kann im Moment nicht abgebrochen werden." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "Die Erstattung wurde abgebrochen." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Diese Erstattung kann momentan nicht abgebrochen werden." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "Die Erstattung wurde verarbeitet." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Die Erstattung kann momentan nicht verarbeitet werden." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "Die Erstattung wurde als erledigt markiert." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" "Die Anfrage wurde gelöscht. Wenn Sie wollen, können Sie den Kunden nun " "informieren." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Ihre Stornierungsanfrage" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -28438,7 +28556,7 @@ msgstr "" "Viele Grüße, \n" "Das {event} Team" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -28446,15 +28564,15 @@ msgstr "" "Die Bezahlung wurde bestätigt, aber die Bestätigungsmail konnte nicht " "verschickt werden." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "Die Bezahlung wurde bestätigt." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Diese Zahlung kann im Moment nicht bestätigt werden." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " @@ -28464,13 +28582,13 @@ msgstr "" "verarbeitet wurde. Bitte prüfen Sie in den Details der Bestellung, ob die " "Erstattung noch notwendig ist." -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" "Sie haben eine Bestellung in einer Veranstaltung mit einer anderen Währung " "ausgewählt." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." @@ -28478,7 +28596,7 @@ msgstr "" "Sie können nicht mehr Geld zurückerstatten als den noch nicht " "zurückerstatteten Zahlungsbetrag." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -28486,7 +28604,7 @@ msgstr "" "Sie haben eine Teilerstattung für eine Zahlungsmethode ausgewählt, die nur " "volle Erstattungen unterstützt." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -28495,12 +28613,12 @@ msgstr "" "Eine der Erstattungen konnte nicht verarbeitet werden. Sie sollten das Geld " "auf anderem Wege zurückerstatten. Die Fehlermeldung war: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "Eine Erstattung von {} wurde verarbeitet." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -28509,18 +28627,18 @@ msgstr "" "Eine Erstattung von {} wurde gespeichert, aber noch nicht voll ausgeführt. " "Sie können die Erstattung weiter unten als erledigt markieren." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" "Ein neuer Wertgutschein wurde erstellt und kann nun an den Kunden verschickt " "werden." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Ihr Gutscheincode" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -28541,12 +28659,12 @@ msgstr "" "\n" "Ihr {event}-Team" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "Die eingegebenen Beträge passen nicht zum ausgewählten Erstattungsbetrag." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -28554,11 +28672,11 @@ msgstr "" "Die Bestellung wurde als bezahlt markiert, aber die Bestätigungsmail konnte " "nicht verschickt werden." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "Die Zahlung wurde erfolgreich verbucht." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -28566,21 +28684,21 @@ msgstr "" "Die Bestellung wurde storniert. Sie können nun auswählen, wie Sie das Geld " "zurückerstatten möchten." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Es wurde keine USt-ID-Nr. angegeben." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Es wurde kein Land angegeben." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" "Die USt-ID-Nr. konnte nicht geprüft werden, da dieses Land nicht unterstützt " "wird." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -28588,42 +28706,42 @@ msgstr "" "Die USt-ID-Nr. konnte nicht geprüft werden, da der Prüfdienst des Landes im " "Moment nicht verfügbar ist." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Die USt-ID-Nr. ist gültig." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Unbekannte Rechnung" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" "Rechnungen dürfen nicht mehr verändert werden, nachdem sie erstellt wurden." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" "Rechnungen können nicht mehr geändert werden, nachdem sie übermittelt wurden." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "Die Rechnung wurde bereits storniert." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "Die Rechnungsdatei wurde bereits exportiert." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "Die Rechnungsdatei ist zu alt, um neu generiert zu werden." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "Die Rechnung wurde von persönlichen Daten bereinigt." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." @@ -28631,23 +28749,23 @@ msgstr "" "Die Rechnung wird derzeit übermittelt. Sie können einen neuen Versuch " "starten, nachdem der aktuelle abgeschlossen ist." -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "Die Rechnung wurde zur erneuten Übermittlung eingeplant." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "Die E-Mail wurde zum Versenden gespeichert." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Diese Rechnung wurde nicht gefunden" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Die Rechungsdatei liegt auf dem Server nicht mehr vor." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -28655,11 +28773,11 @@ msgstr "" "Diese Rechnung wurde bisher noch nicht fertig erstellt, wir werden die PDF-" "Datei jetzt erstellen. Bitte probieren Sie es in wenigen Sekunden erneut." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Die Zahlungsfrist wurde geändert." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." @@ -28667,61 +28785,61 @@ msgstr "" "Wir konnten Ihre Bestellung nicht durchführen, da der Server zu beschäftigt " "war." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Diese Aktion ist nur für unbezahlte Bestellungen möglich." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Diese Aktion ist nur für stornierte Bestellungen möglich." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" "Ein Fehler ist aufgetreten, bitte schauen Sie weiter unten für Details." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "Die Bestellung wurde geändert und der Kunde benachrichtigt." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "Die Bestellung wurde geändert." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "Wir hatten Schwierigkeiten, Ihre Eingabe zu verarbeiten." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Es wurde keine Änderung vorgenommen." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" "Wir könnten die E-Mail nicht senden, siehe weiter unten für weitere " "Informationen." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Betreff: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Die Nachricht wurde gespeichert und wird an {} versendet." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Die Mail an den folgenden Benutzer konnte nicht versendet werden: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -28729,19 +28847,19 @@ msgstr "" "Dieser Link ist nicht mehr gültig. Bitte gehen Sie einen Schritt zurück, " "laden Sie die Seite neu und versuchen es erneut." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Es existiert keine Bestellung mit der eingegebenen Bestellnummer." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "Das ausgewählte Exportformat wurde nicht gefunden." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "Die Eingabe konnte nicht verarbeitet werden." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " @@ -28750,18 +28868,18 @@ msgstr "" "Der geplante Export wurde gespeichert. Der nächste Export startet ca. " "{datetime}." -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" "Der geplante Export wurde gespeichert, aber es ist keine nächste Ausführung " "geplant." -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "Export: {title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -28772,7 +28890,7 @@ msgstr "" "\n" "im Anhang dieser E-Mail finden Sie einen neuen Bericht für {name}." -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." @@ -28780,7 +28898,7 @@ msgstr "" "Sie haben nicht genug Berechtigungen um diesen Bericht auszuführen, daher " "können Sie ihn nicht einplanen." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " @@ -28790,11 +28908,11 @@ msgstr "" "Abhängig von der Systemlast und Art und Größe des Exports kann dies einige " "Minuten dauern." -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Alle Bestellungen wurden storniert." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " @@ -28803,7 +28921,7 @@ msgstr "" "Die Bestellungen wurden storniert. Bei {count} ist ein Fehler aufgetreten, " "bitte prüfe alle nicht stornierten Bestellungen." -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "Die Eingabe war nicht korrekt." @@ -29891,7 +30009,7 @@ msgstr "Badge-Layout: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -29927,7 +30045,7 @@ msgid "" msgstr "" "Installieren Sie das Python-Paket 'chardet' für verbesserten CSV-Import." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -29941,23 +30059,23 @@ msgstr "" "als erfolgreich markieren, oder regelmäßig einen digitalen Kontoauszug " "importieren, damit pretix die Tickets ausliefern kann." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Art der Bankverbindung" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "SEPA-Bankkonto" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Anderes Bankkonto" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Kontoinhaber*in" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -29965,35 +30083,35 @@ msgstr "" "Bitte beachten Sie: Andere Zeichen als Buchstaben, Zahlen und rudimentäre " "Zeichensetzung können bei einigen Banken Probleme verursachen." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Name der Bank" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Bankverbindung" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -30003,7 +30121,7 @@ msgstr "" "Banküberweisung zu schicken. Wenn Sie viele internationale Kunden haben, " "könnte Ihre volle Adresse und die volle Adresse Ihrer Bank hilfreich sein." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -30013,27 +30131,27 @@ msgstr "" "ein, das Ihre Kunden zur Überweisung brauchen, z.B. Kontonummern, " "Banknummern, Adressen, etc." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Keine Bindestriche im Verwendungszweck verwenden." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Dies ist in manchen Ländern erforderlich." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Rechnungsnummer im Verwendungszweck angeben." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Präfix für den Verwendungszweck" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Zusätzlicher Text zur Anzeige bei ausstehenden Bestellungen" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -30041,11 +30159,11 @@ msgstr "" "Dieser Text wird auf der Bestellbestätigungsseite für ausstehende " "Bestellungen zusätzlich zum Standardtext angezeigt." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "IBAN-Blockliste für Erstattungen" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -30064,11 +30182,11 @@ msgstr "" "DE0012345 sperren können, um alle deutschen IBANs mit einer BLZ, die mit " "12345 startet, zu sperren." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Auf Firmenkunden einschränken" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -30076,23 +30194,23 @@ msgstr "" "Biete diese Zahlungsart nur Kunden an, die eine Rechnungsadresse eingegeben " "haben und bei dieser \"Firmenkunde oder Institution\" ausgewählt haben." -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Bitte füllen Sie Ihre Bankkonto-Daten aus." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Bitte geben Sie Ihre Bankdaten ein." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Bitte überweisen Sie den vollen Betrag auf das folgende Bankkonto:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -30102,9 +30220,9 @@ msgstr "Bitte überweisen Sie den vollen Betrag auf das folgende Bankkonto:" msgid "Account holder" msgstr "Kontoinhaber*in" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -30114,27 +30232,27 @@ msgstr "Kontoinhaber*in" msgid "Bank" msgstr "Bank" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "Ungültige IBAN/BIC" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Bankkonto {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" "Eine Rückerstattung per Banküberweisung kann nur von einer existierenden " "Zahlung gestartet werden." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (optional)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" "Die Eingabe war nicht korrekt, die Fehler finden Sie im Detail weiter unten." @@ -30170,8 +30288,8 @@ msgstr "Die Rechnung wurde bereits storniert." msgid "Currencies do not match." msgstr "Währungen passen nicht zusammen." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -30179,8 +30297,8 @@ msgstr "" "Nach Abschluss der Bestellung bitten wir Sie, das Geld unter Verwendung des " "persönlichen Verwendungszwecks auf das folgende Bankkonto zu überweisen:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." @@ -30188,14 +30306,14 @@ msgstr "" "Bitte bezahlen Sie noch nicht. Wir werden Ihnen nach Absenden der Bestellung " "einen persönlichen Verwendungszweck zuweisen." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Verwendungszweck (wichtig):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -30203,8 +30321,8 @@ msgstr "" "Wir werden Ihnen nach Absenden der Bestellung einen persönlichen " "Verwendungszweck zuweisen." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." @@ -37934,9 +38052,6 @@ msgstr "Kosovo" #~ "Um mit unseren Apps Tickets zu scannen, erstellen Sie hier erst einen " #~ "Konfigurations-Code:" -#~ msgid "Create configuration" -#~ msgstr "App-Konfiguration erstellen" - #~ msgid "Create a new configuration" #~ msgstr "Neue App-Konfiguration erstellen" @@ -39266,9 +39381,6 @@ msgstr "Kosovo" #~ msgid "not applicable" #~ msgstr "nicht anwendbar" -#~ msgid "Require all customers to provide an email address." -#~ msgstr "Erfordere eine E-Mail-Adresse von allen Käufern." - #~ msgid "" #~ "In this area, you can choose of a set of \"restriction types\" to " #~ "restrict the availability of your product with certain conditions." diff --git a/src/pretix/locale/de/LC_MESSAGES/djangojs.po b/src/pretix/locale/de/LC_MESSAGES/djangojs.po index e41374e14f..f8d68a626c 100644 --- a/src/pretix/locale/de/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/de/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-05-30 11:08+0000\n" "Last-Translator: Raphael Michel \n" "Language-Team: German \n" "Language-Team: German (informal) pretix" @@ -16082,6 +16107,26 @@ msgstr "" "Bitte bestätige, dass du ALLE Termine dieser Veranstaltungsreihe stornieren " "möchtest." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Bestätigungs-Code" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Der eingegebene Bestätigungscode war nicht korrekt." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Diese Kurzform ist bereits in Verwendung, bitte wähle eine andere." @@ -16838,7 +16883,7 @@ msgstr "Der Nutzer hat diesen Text bestätigt: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Die Bestellung wurde storniert (Kommentar: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Die Bestellung wurde storniert." @@ -16927,11 +16972,11 @@ msgstr "Die Bestellung wurde trotz ausstehender Zahlung als nutzbar bestätigt." msgid "The order has been set to require payment before use." msgstr "Die Bestellung erfordert nun eine Zahlung um verwendet zu werden." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "Die Bestellung wurde als abgelaufen markiert." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "Die Bestellung wurde als bezahlt markiert." @@ -16943,7 +16988,7 @@ msgstr "Die ausgewählte Stornierungsanfrage wurde gelöscht." msgid "The order has been refunded." msgstr "Die Bestellung wurde zurückerstattet." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "Die Bestellung wurde reaktiviert." @@ -16956,7 +17001,7 @@ msgid "The order requires approval before it can continue to be processed." msgstr "" "Diese Bestellung erfordert eine Freigabe, bevor sie weiter verarbeitet wird." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "Die Bestellung wurde freigegeben." @@ -16995,7 +17040,7 @@ msgstr "Das Kundenkonto wurde geändert." msgid "The order locale has been changed." msgstr "Die Sprache der Bestellung wurde geändert." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Die Rechnung wurde erstellt." @@ -17004,11 +17049,11 @@ msgstr "Die Rechnung wurde erstellt." msgid "The invoice could not be generated." msgstr "Die Rechnung konnte nicht erstellt werden." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Die Rechnung wurde neu generiert." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Die Rechnung wurde neu ausgestellt." @@ -18757,8 +18802,8 @@ msgid "Transaction ID" msgstr "Transaktions-ID" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18912,7 +18957,7 @@ msgstr "Abbrechen" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19937,6 +19982,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Veranstaltung absagen" @@ -23253,13 +23300,13 @@ msgstr "Bestellung: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Freigeben" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Ablehnen" @@ -23301,7 +23348,7 @@ msgstr "" "schaffen, kannst du die Bestellung manuell als abgelaufen markieren." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Erstattung für Überzahlung" @@ -24051,10 +24098,85 @@ msgstr "" "Du solltest diese Funktion nicht mehrfach für die gleiche Veranstaltung " "auswählen, sonst erhält jeder auf der Warteliste mehrere E-Mails." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Erstattungsbetrag" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Alle Bestellungen stornieren" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Wenn du uns kontaktierst, nenne bitte den folgenden Code:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "Text (wenn Bestellung nicht automatisch abläuft)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Require all customers to provide an email address." +msgid "Inform all customers via email." +msgstr "Erfordere eine E-Mail-Adresse von allen Käufern." + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "%(amount)s zurückerstatten" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Ja, Bestellung stornieren" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24474,12 +24596,12 @@ msgid "Select action" msgstr "Aktion auswählen" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "Überzahlten Betrag erstatten" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "Überfällige als abgelaufen markieren" @@ -26214,10 +26336,6 @@ msgstr "" "\"CONFIRM_CODE.txt\" mit einem sechsstelligen Code. Bitte gib diesen Code " "hier ein, um zu bestätigen, dass der Download der Datei geklappt hat." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Bestätigungs-Code" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -27831,7 +27949,7 @@ msgstr "Deine Bestellung: %(code)s" msgid "Unknown email renderer." msgstr "Unbekannter E-Mail-Renderer." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Du hast einen ungültigen Ausgabetyp gewählt." @@ -27888,11 +28006,11 @@ msgstr "" "Insbesondere benötigen die folgenden Erweiterungen noch Daten aus dieser " "Veranstaltung: {plugin_names}" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Der Kommentar wurde aktualisiert." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Kommentar konnte nicht gespeichert werden." @@ -28289,13 +28407,13 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Der Zugriff für die ausgewählte App zu deinem Konto wurde entfernt." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" "Die Eingabe konnte nicht verarbeitet werden. Die fehlerhaften Felder sind " "farblich markiert." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." @@ -28303,7 +28421,7 @@ msgstr "" "Die Aktion \"{label}\" wurde erfolgreich für {success} von {total} " "Bestellungen ausgeführt." -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -28315,15 +28433,15 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "Ungültige Bestellnummer oder kein Zugriff auf diese Bestellung." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Der Ticket-Download ist für dieses Produkt nicht freigeschaltet." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "Die Bestellung wurde gelöscht." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -28331,53 +28449,53 @@ msgstr "" "Diese Bestellung konnte nicht gelöscht werden, da einige Bedingungen (z.B. " "von Plugins erstellte Daten) es nicht erlauben." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "Nur im Testmodus erstellte Bestellungen können wieder gelöscht werden." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "Die Bestellung wurde abgelehnt und daher storniert." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Die Zahlung wurde storniert." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Diese Zahlung kann im Moment nicht abgebrochen werden." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "Die Erstattung wurde abgebrochen." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Diese Erstattung kann momentan nicht abgebrochen werden." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "Die Erstattung wurde verarbeitet." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Die Erstattung kann momentan nicht verarbeitet werden." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "Die Erstattung wurde als erledigt markiert." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" "Die Anfrage wurde gelöscht. Wenn du willst, kannst du den Kunden nun " "informieren." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Deine Stornierungsanfrage" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -28395,7 +28513,7 @@ msgstr "" "Viele Grüße, \n" "Das {event} Team" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -28403,15 +28521,15 @@ msgstr "" "Die Bezahlung wurde bestätigt, aber die Bestätigungsmail konnte nicht " "verschickt werden." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "Die Bezahlung wurde bestätigt." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Diese Zahlung kann im Moment nicht bestätigt werden." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " @@ -28421,13 +28539,13 @@ msgstr "" "verarbeitet wurde. Bitte prüfe in den Details der Bestellung, ob die " "Erstattung noch notwendig ist." -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" "Du hast eine Bestellung in einer Veranstaltung mit einer anderen Währung " "ausgewählt." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." @@ -28435,7 +28553,7 @@ msgstr "" "Du kannst nicht mehr Geld zurückerstatten als den noch nicht " "zurückerstatteten Zahlungsbetrag." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -28443,7 +28561,7 @@ msgstr "" "Du hast eine Teilerstattung für eine Zahlungsmethode ausgewählt, die nur " "volle Erstattungen unterstützt." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -28452,12 +28570,12 @@ msgstr "" "Eine der Erstattungen konnte nicht verarbeitet werden. Du solltest das Geld " "auf anderem Wege zurückerstatten. Die Fehlermeldung war: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "Eine Erstattung von {} wurde verarbeitet." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -28466,18 +28584,18 @@ msgstr "" "Eine Erstattung von {} wurde gespeichert, aber noch nicht voll ausgeführt. " "Du kannst die Erstattung weiter unten als erledigt markieren." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" "Ein neuer Wertgutschein wurde erstellt und kann nun an den Kunden verschickt " "werden." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Dein Gutscheincode" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -28498,12 +28616,12 @@ msgstr "" "\n" "Dein {event}-Team" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "Die eingegebenen Beträge passen nicht zum ausgewählten Erstattungsbetrag." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -28511,11 +28629,11 @@ msgstr "" "Die Bestellung wurde als bezahlt markiert, aber die Bestätigungsmail konnte " "nicht verschickt werden." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "Die Zahlung wurde erfolgreich verbucht." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -28523,21 +28641,21 @@ msgstr "" "Die Bestellung wurde storniert. Du kannst nun auswählen, wie du das Geld " "zurückerstatten möchtest." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Es wurde keine USt-ID-Nr. angegeben." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Es wurde kein Land angegeben." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" "Die USt-ID-Nr. konnte nicht geprüft werden, da dieses Land nicht unterstützt " "wird." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -28545,42 +28663,42 @@ msgstr "" "Die USt-ID-Nr. konnte nicht geprüft werden, da der Prüfdienst des Landes im " "Moment nicht verfügbar ist." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Die USt-ID-Nr. ist gültig." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Unbekannte Rechnung" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" "Rechnungen dürfen nicht mehr verändert werden, nachdem sie erstellt wurden." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" "Rechnungen können nicht mehr geändert werden, nachdem sie übermittelt wurden." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "Die Rechnung wurde bereits storniert." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "Die Rechnungsdatei wurde bereits exportiert." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "Die Rechnungsdatei ist zu alt, um neu generiert zu werden." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "Die Rechnung wurde von persönlichen Daten bereinigt." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." @@ -28588,23 +28706,23 @@ msgstr "" "Die Rechnung wird derzeit übermittelt. Du kannst einen neuen Versuch " "starten, nachdem der aktuelle abgeschlossen ist." -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "Die Rechnung wurde zur erneuten Übermittlung eingeplant." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "Die E-Mail wurde zum Versenden gespeichert." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Diese Rechnung wurde nicht gefunden" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Die Rechungsdatei liegt auf dem Server nicht mehr vor." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -28612,11 +28730,11 @@ msgstr "" "Diese Rechnung wurde bisher noch nicht fertig erstellt, wir werden die PDF-" "Datei jetzt erstellen. Bitte probiere es in wenigen Sekunden erneut." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Die Zahlungsfrist wurde geändert." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." @@ -28624,60 +28742,60 @@ msgstr "" "Wir konnten deine Bestellung nicht durchführen, da der Server zu beschäftigt " "war." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Diese Aktion ist nur für unbezahlte Bestellungen möglich." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Diese Aktion ist nur für stornierte Bestellungen möglich." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Ein Fehler ist aufgetreten, bitte schaue weiter unten für Details." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "Die Bestellung wurde geändert und der Kunde benachrichtigt." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "Die Bestellung wurde geändert." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "Wir hatten Schwierigkeiten, deine Eingabe zu verarbeiten." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Es wurde keine Änderung vorgenommen." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" "Wir könnten die E-Mail nicht senden, siehe weiter unten für weitere " "Informationen." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Betreff: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Die Nachricht wurde gespeichert und wird an {} versendet." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Die Mail an den folgenden Benutzer konnte nicht versendet werden: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -28685,19 +28803,19 @@ msgstr "" "Dieser Link ist nicht mehr gültig. Bitte gehe einen Schritt zurück, lade die " "Seite neu und versuche es erneut." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Es existiert keine Bestellung mit der eingegebenen Bestellnummer." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "Das ausgewählte Exportformat wurde nicht gefunden." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "Die Eingabe konnte nicht verarbeitet werden." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " @@ -28706,18 +28824,18 @@ msgstr "" "Der geplante Export wurde gespeichert. Der nächste Export startet ca. " "{datetime}." -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" "Der geplante Export wurde gespeichert, aber es ist keine nächste Ausführung " "geplant." -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "Export: {title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -28728,7 +28846,7 @@ msgstr "" "\n" "im Anhang dieser E-Mail findest du einen neuen Bericht für {name}." -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." @@ -28736,7 +28854,7 @@ msgstr "" "Du hast nicht genug Berechtigungen um diesen Bericht auszuführen, daher " "kannst du ihn nicht einplanen." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " @@ -28746,11 +28864,11 @@ msgstr "" "Abhängig von der Systemlast und Art und Größe des Exports kann dies einige " "Minuten dauern." -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Alle Bestellungen wurden storniert." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " @@ -28759,7 +28877,7 @@ msgstr "" "Die Bestellungen wurden storniert. Bei {count} ist ein Fehler aufgetreten, " "bitte prüfe alle nicht stornierten Bestellungen." -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "Die Eingabe war nicht korrekt." @@ -29846,7 +29964,7 @@ msgstr "Badge-Layout: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -29881,7 +29999,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "Installiere das Python-Paket 'chardet' für verbesserten CSV-Import." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -29895,23 +30013,23 @@ msgstr "" "als erfolgreich markieren, oder regelmäßig einen digitalen Kontoauszug " "importieren, damit pretix die Tickets ausliefern kann." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Art der Bankverbindung" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "SEPA-Bankkonto" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Anderes Bankkonto" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Kontoinhaber*in" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -29919,35 +30037,35 @@ msgstr "" "Bitte beachte: Andere Zeichen als Buchstaben, Zahlen und rudimentäre " "Zeichensetzung können bei einigen Banken Probleme verursachen." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Name der Bank" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Bankverbindung" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -29957,7 +30075,7 @@ msgstr "" "eine Banküberweisung zu schicken. Wenn du viele internationale Kunden hast, " "könnte deine volle Adresse und die volle Adresse deiner Bank hilfreich sein." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -29967,27 +30085,27 @@ msgstr "" "das deine Kunden zur Überweisung brauchen, z.B. Kontonummern, Banknummern, " "Adressen, etc." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Keine Bindestriche im Verwendungszweck verwenden." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Dies ist in manchen Ländern erforderlich." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Rechnungsnummer im Verwendungszweck angeben." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Präfix für den Verwendungszweck" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Zusätzlicher Text zur Anzeige bei ausstehenden Bestellungen" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -29995,11 +30113,11 @@ msgstr "" "Dieser Text wird auf der Bestellbestätigungsseite für ausstehende " "Bestellungen zusätzlich zum Standardtext angezeigt." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "IBAN-Blockliste für Erstattungen" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -30018,11 +30136,11 @@ msgstr "" "DE0012345 sperren kannst, um alle deutschen IBANs mit einer BLZ, die mit " "12345 startet, zu sperren." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Auf Firmenkunden einschränken" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -30030,23 +30148,23 @@ msgstr "" "Biete diese Zahlungsart nur Kunden an, die eine Rechnungsadresse eingegeben " "haben und bei dieser \"Firmenkunde oder Institution\" ausgewählt haben." -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Bitte fülle deine Bankdaten aus." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Bitte gib deine Bankdaten ein." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Bitte überweise den vollen Betrag auf das folgende Bankkonto:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -30056,9 +30174,9 @@ msgstr "Bitte überweise den vollen Betrag auf das folgende Bankkonto:" msgid "Account holder" msgstr "Kontoinhaber*in" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -30068,27 +30186,27 @@ msgstr "Kontoinhaber*in" msgid "Bank" msgstr "Bank" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "Ungültige IBAN/BIC" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Bankkonto {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" "Eine Rückerstattung per Banküberweisung kann nur von einer existierenden " "Zahlung gestartet werden." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (optional)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" "Die Eingabe war nicht korrekt, die Fehler findest du im Detail weiter unten." @@ -30124,8 +30242,8 @@ msgstr "Die Rechnung wurde bereits storniert." msgid "Currencies do not match." msgstr "Währungen passen nicht zusammen." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -30134,8 +30252,8 @@ msgstr "" "eines persönlichen Verwendungszwecks auf das folgende Bankkonto zu " "überweisen:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." @@ -30143,14 +30261,14 @@ msgstr "" "Bitte bezahle noch nicht. Wir werden dir nach Absenden der Bestellung einen " "persönlichen Verwendungszweck zuweisen." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Verwendungszweck (wichtig):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -30158,8 +30276,8 @@ msgstr "" "Wir werden dir nach Absenden der Bestellung einen persönlichen " "Verwendungszweck zuweisen." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." @@ -37823,9 +37941,6 @@ msgstr "Kosovo" #~ "Um mit unseren Apps Tickets zu scannen, erstelle hier erst einen " #~ "Konfigurations-Code:" -#~ msgid "Create configuration" -#~ msgstr "App-Konfiguration erstellen" - #~ msgid "Create a new configuration" #~ msgstr "Neue App-Konfiguration erstellen" @@ -39158,9 +39273,6 @@ msgstr "Kosovo" #~ msgid "not applicable" #~ msgstr "nicht anwendbar" -#~ msgid "Require all customers to provide an email address." -#~ msgstr "Erfordere eine E-Mail-Adresse von allen Käufern." - #~ msgid "" #~ "In this area, you can choose of a set of \"restriction types\" to " #~ "restrict the availability of your product with certain conditions." diff --git a/src/pretix/locale/de_Informal/LC_MESSAGES/djangojs.po b/src/pretix/locale/de_Informal/LC_MESSAGES/djangojs.po index d8fc9a8987..d0a5f031fa 100644 --- a/src/pretix/locale/de_Informal/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/de_Informal/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-05-30 11:07+0000\n" "Last-Translator: Raphael Michel \n" "Language-Team: German (informal) \n" "Language-Team: LANGUAGE \n" @@ -229,7 +229,7 @@ msgstr "" msgid "Comment" msgstr "" -#: pretix/api/serializers/cart.py:168 pretix/api/serializers/order.py:1466 +#: pretix/api/serializers/cart.py:168 pretix/api/serializers/order.py:1471 #, python-brace-format msgid "The product \"{}\" is not assigned to a quota." msgstr "" @@ -338,18 +338,18 @@ msgstr "" msgid "\"{input}\" is not a valid choice." msgstr "" -#: pretix/api/serializers/order.py:1427 pretix/api/views/cart.py:224 +#: pretix/api/serializers/order.py:1432 pretix/api/views/cart.py:224 #: pretix/base/services/orders.py:1619 #, python-brace-format msgid "The selected seat \"{seat}\" is not available." msgstr "" -#: pretix/api/serializers/order.py:1453 pretix/api/serializers/order.py:1460 +#: pretix/api/serializers/order.py:1458 pretix/api/serializers/order.py:1465 #, python-brace-format msgid "The product \"{}\" is not available on this date." msgstr "" -#: pretix/api/serializers/order.py:1475 pretix/api/views/cart.py:200 +#: pretix/api/serializers/order.py:1480 pretix/api/views/cart.py:200 #, python-brace-format msgid "" "There is not enough quota available on quota \"{}\" to perform the operation." @@ -398,17 +398,17 @@ msgid "" "account." msgstr "" -#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1602 +#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1603 #: pretix/presale/views/order.py:736 pretix/presale/views/order.py:816 msgid "You cannot generate an invoice for this order." msgstr "" -#: pretix/api/views/order.py:613 pretix/control/views/orders.py:1604 +#: pretix/api/views/order.py:613 pretix/control/views/orders.py:1605 #: pretix/presale/views/order.py:738 pretix/presale/views/order.py:818 msgid "An invoice for this order already exists." msgstr "" -#: pretix/api/views/order.py:639 pretix/control/views/orders.py:1763 +#: pretix/api/views/order.py:639 pretix/control/views/orders.py:1764 #: pretix/control/views/users.py:145 msgid "There was an error sending the mail. Please try again later." msgstr "" @@ -433,7 +433,7 @@ msgstr "" #: pretix/api/webhooks.py:274 pretix/base/models/checkin.py:355 #: pretix/base/notifications.py:251 #: pretix/control/templates/pretixcontrol/event/mail.html:114 -#: pretix/control/views/orders.py:1563 +#: pretix/control/views/orders.py:1564 msgid "Order canceled" msgstr "" @@ -616,8 +616,8 @@ msgstr "" #: pretix/control/forms/event.py:798 pretix/control/forms/event.py:838 #: pretix/control/forms/event.py:1455 pretix/control/forms/mailsetup.py:87 #: pretix/control/forms/mailsetup.py:129 pretix/control/forms/subevents.py:181 -#: pretix/plugins/banktransfer/payment.py:506 -#: pretix/plugins/banktransfer/payment.py:512 +#: pretix/plugins/banktransfer/payment.py:507 +#: pretix/plugins/banktransfer/payment.py:513 #: pretix/presale/forms/customer.py:152 msgid "This field is required." msgstr "" @@ -2562,7 +2562,9 @@ msgstr "" #: pretix/base/models/items.py:468 pretix/base/models/items.py:2060 #: pretix/base/models/orders.py:233 pretix/base/models/orders.py:3111 #: pretix/base/models/vouchers.py:184 pretix/base/models/waitinglist.py:55 -#: pretix/base/notifications.py:187 pretix/control/forms/filter.py:1025 +#: pretix/base/notifications.py:187 +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:4 +#: pretix/control/forms/filter.py:1025 #: pretix/control/templates/pretixcontrol/organizers/customer.html:206 #: pretix/control/templates/pretixcontrol/organizers/customer_membership.html:42 #: pretix/control/templates/pretixcontrol/search/orders.html:51 @@ -2725,8 +2727,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:892 #: pretix/control/templates/pretixcontrol/orders/refunds.html:70 #: pretix/control/templates/pretixcontrol/search/payments.html:98 -#: pretix/plugins/banktransfer/payment.py:298 -#: pretix/plugins/banktransfer/payment.py:307 +#: pretix/plugins/banktransfer/payment.py:299 +#: pretix/plugins/banktransfer/payment.py:308 #: pretix/plugins/banktransfer/refund_export.py:46 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:25 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/transaction_list.html:13 @@ -3795,9 +3797,9 @@ msgstr "" msgid "Could not parse {value} as a date and time." msgstr "" -#: pretix/base/modelimport.py:239 pretix/control/views/orders.py:1173 -#: pretix/control/views/orders.py:1202 pretix/control/views/orders.py:1247 -#: pretix/control/views/orders.py:1282 pretix/control/views/orders.py:1305 +#: pretix/base/modelimport.py:239 pretix/control/views/orders.py:1174 +#: pretix/control/views/orders.py:1203 pretix/control/views/orders.py:1248 +#: pretix/control/views/orders.py:1283 pretix/control/views/orders.py:1306 msgid "You entered an invalid number." msgstr "" @@ -7134,14 +7136,14 @@ msgstr "" msgid "Manual payment" msgstr "" -#: pretix/base/payment.py:1221 pretix/plugins/banktransfer/payment.py:195 +#: pretix/base/payment.py:1221 pretix/plugins/banktransfer/payment.py:196 msgid "" "In test mode, you can just manually mark this order as paid in the backend " "after it has been created." msgstr "" #: pretix/base/payment.py:1242 pretix/base/payment.py:1458 -#: pretix/plugins/banktransfer/payment.py:149 +#: pretix/plugins/banktransfer/payment.py:150 msgid "Payment method name" msgstr "" @@ -7180,7 +7182,7 @@ msgid "" "the placeholders {order}, {amount}, {currency} and {amount_with_currency}." msgstr "" -#: pretix/base/payment.py:1269 pretix/plugins/banktransfer/payment.py:144 +#: pretix/base/payment.py:1269 pretix/plugins/banktransfer/payment.py:145 msgid "" "Create an invoice for orders using bank transfer immediately if the event is " "otherwise configured to create invoices after payment is completed." @@ -7190,7 +7192,7 @@ msgstr "" msgid "Offsetting" msgstr "" -#: pretix/base/payment.py:1334 pretix/control/views/orders.py:1256 +#: pretix/base/payment.py:1334 pretix/control/views/orders.py:1257 msgid "You entered an order that could not be found." msgstr "" @@ -7697,11 +7699,15 @@ msgid "" "offline scanning – please refer to documentation or support for details)" msgstr "" -#: pretix/base/services/cancelevent.py:230 -#: pretix/base/services/cancelevent.py:308 +#: pretix/base/services/cancelevent.py:277 +#: pretix/base/services/cancelevent.py:363 msgid "Event canceled" msgstr "" +#: pretix/base/services/cancelevent.py:392 +msgid "Bulk-refund confirmation" +msgstr "" + #: pretix/base/services/cart.py:102 pretix/base/services/modelimport.py:247 #: pretix/base/services/orders.py:155 msgid "" @@ -11480,6 +11486,21 @@ msgid "" "us." msgstr "" +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:2 +msgid "" +"You have requested us to cancel an event which includes a larger bulk-refund:" +msgstr "" + +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:6 +msgid "Estimated refund amount" +msgstr "" + +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:8 +msgid "" +"Please confirm that you want to proceed by coping the following confirmation " +"code into the cancellation form:" +msgstr "" + #: pretix/base/templates/pretixbase/email/email_footer.html:3 #, python-format msgid "powered by pretix" @@ -14116,6 +14137,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -14777,7 +14816,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -14861,11 +14900,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -14877,7 +14916,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -14889,7 +14928,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -14924,7 +14963,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -14933,11 +14972,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16591,8 +16630,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -16742,7 +16781,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17603,6 +17642,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20500,13 +20541,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20545,7 +20586,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21219,10 +21260,74 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +msgid "Proceed and cancel orders" +msgstr "" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21617,12 +21722,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23136,10 +23241,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24579,7 +24680,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24627,11 +24728,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -24967,17 +25068,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -24989,65 +25090,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25058,72 +25159,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25136,201 +25237,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25338,31 +25439,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26381,7 +26482,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26414,7 +26515,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26423,101 +26524,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26528,33 +26629,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26564,9 +26665,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26576,25 +26677,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26629,35 +26730,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/djangojs.pot b/src/pretix/locale/djangojs.pot index 250d7614a4..3ad08f20a7 100644 --- a/src/pretix/locale/djangojs.pot +++ b/src/pretix/locale/djangojs.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -638,40 +638,40 @@ msgid "" "will be impacted." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "" diff --git a/src/pretix/locale/el/LC_MESSAGES/django.po b/src/pretix/locale/el/LC_MESSAGES/django.po index 4efaf309de..5c5482e85f 100644 --- a/src/pretix/locale/el/LC_MESSAGES/django.po +++ b/src/pretix/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2025-02-14 21:00+0000\n" "Last-Translator: deborahfoell \n" "Language-Team: Greek pretix" @@ -17154,6 +17179,26 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Κωδικός επιβεβαίωσης" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Ο κωδικός επιβεβαίωσης που εισαγάγατε ήταν εσφαλμένος." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Αυτό το slug είναι ήδη σε χρήση. Επιλέξτε διαφορετικό." @@ -17982,7 +18027,7 @@ msgstr "Ο χρήστης επιβεβαίωσε το ακόλουθο μήνυ msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Η παραγγελία απορρίφθηκε." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Η παραγγελία ακυρώθηκε." @@ -18074,11 +18119,11 @@ msgstr "Η παραγγελία έχει επισημανθεί ως πληρω msgid "The order has been set to require payment before use." msgstr "Το κουπόνι έχει δημιουργηθεί." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "Η παραγγελία έχει επισημανθεί ως έχει ληγμένη." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "Η παραγγελία έχει επισημανθεί ως πληρωμένη." @@ -18092,7 +18137,7 @@ msgstr "Η επιλεγμένη ερώτηση έχει διαγραφεί." msgid "The order has been refunded." msgstr "Η παραγγελία έχει επιστραφεί." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 #, fuzzy #| msgid "The order has been created." msgid "The order has been reactivated." @@ -18106,7 +18151,7 @@ msgstr "Η παραγγελία έχει δημιουργηθεί." msgid "The order requires approval before it can continue to be processed." msgstr "Η παραγγελία απαιτεί έγκριση πριν συνεχίσει να επεξεργάζεται." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "Η εντολή έχει εγκριθεί." @@ -18151,7 +18196,7 @@ msgstr "Η ερώτηση έχει αλλάξει." msgid "The order locale has been changed." msgstr "Η τοπική παραγγελία έχει αλλάξει." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Το τιμολόγιο έχει παραχθεί." @@ -18162,11 +18207,11 @@ msgstr "Το τιμολόγιο έχει παραχθεί." msgid "The invoice could not be generated." msgstr "Το τιμολόγιο έχει παραχθεί." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Το τιμολόγιο έχει αναγεννηθεί." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Το τιμολόγιο έχει επανεκδοθεί." @@ -20138,8 +20183,8 @@ msgid "Transaction ID" msgstr "Κωδικός συναλλαγής" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -20304,7 +20349,7 @@ msgstr "Ματαίωση" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -21319,6 +21364,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 #, fuzzy #| msgid "Clone event" msgid "Cancel event" @@ -24826,13 +24873,13 @@ msgstr "Λεπτομέρειες παραγγελίας: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Έγκριση" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Κατάργηση" @@ -24878,7 +24925,7 @@ msgstr "" "της ποσόστωσης, μπορείτε να την επισημάνετε με το χέρι." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 #, fuzzy #| msgid "Refund order" msgid "Refund for overpayment" @@ -25685,12 +25732,87 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund only" +msgid "Preview refund amount" +msgstr "Μόνο επιστροφή χρημάτων" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 #, fuzzy #| msgid "Cancel order" msgid "Cancel all orders" msgstr "Ακύρωση παραγγελίας" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Εάν επικοινωνήσετε μαζί μας, στείλτε μας τον ακόλουθο κώδικα:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Generate tickets" +msgid "Refunds will not happen automatically." +msgstr "Δημιουργία εισιτηρίων" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send vouchers" +msgid "Inform all customers via email." +msgstr "Στείλτε κουπόνια" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Ξεκινήστε την επιστροφή του %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Ναι, ακυρώστε την παραγγελία" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -26141,14 +26263,14 @@ msgid "Select action" msgstr "Η προεργασία δεν ξεκίνησε" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy #| msgid "Refund full paid amount" msgid "Refund overpaid amount" msgstr "Πλήρης επιστροφή ποσού" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -28000,10 +28122,6 @@ msgstr "" "αυτόν τον κωδικό εδώ για να επιβεβαιώσετε ότι έχετε κατεβάσει επιτυχώς το " "αρχείο." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Κωδικός επιβεβαίωσης" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -29768,7 +29886,7 @@ msgstr "Η παραγγελία σας: {code}" msgid "Unknown email renderer." msgstr "Άγνωστος επεξεργαστής ηλεκτρονικού ταχυδρομείου." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Ζητήσατε άκυρο τύπο εξόδου εισιτηρίου." @@ -29823,11 +29941,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Το σχόλιο ενημερώθηκε." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Δεν ήταν δυνατή η ενημέρωση του σχολίου." @@ -30200,7 +30318,7 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Η πρόσβαση για την επιλεγμένη εφαρμογή έχει ανακληθεί." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." @@ -30208,13 +30326,13 @@ msgstr "" "Δεν ήταν δυνατή η αποθήκευση των αλλαγών σας. Δείτε παρακάτω για " "λεπτομέρειες." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -30228,15 +30346,15 @@ msgstr "" "Άγνωστος κωδικός παραγγελίας ή μη εξουσιοδοτημένος για πρόσβαση σε αυτήν την " "παραγγελία." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Η λήψη εισιτηρίου δεν είναι ενεργοποιημένη για αυτό το προϊόν." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "Η παραγγελία διαγράφηκε." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -30244,59 +30362,59 @@ msgstr "" "Η παραγγελία δεν μπόρεσε να διαγραφεί, καθώς ορισμένοι περιορισμοί (π.χ. " "δεδομένα που δημιουργήθηκαν από plug-ins) δεν το επιτρέπουν." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" "Μόνο παραγγελίες που έχουν δημιουργηθεί στη λειτουργία δοκιμής(test mode) " "μπορούν να διαγραφούν." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "Η παραγγελία απορρίφθηκε και, συνεπώς, ακυρώνεται." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Αυτή η πληρωμή ακυρώθηκε." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Αυτή η πληρωμή δεν μπορεί να ακυρωθεί αυτήν τη στιγμή." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "Η επιστροφή χρημάτων ακυρώθηκε." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Αυτή η επιστροφή χρημάτων δεν μπορεί να ακυρωθεί αυτή τη στιγμή." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "Η επιστροφή χρημάτων έχει υποβληθεί σε επεξεργασία." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" "Δεν είναι δυνατή η επεξεργασία γι' αυτήν την επιστροφή χρημάτων αυτή τη " "στιγμή." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "Η επιστροφή χρημάτων έχει επισημανθεί ως ολοκληρωμένη." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 #, fuzzy #| msgid "The device has been verified and can now be used." msgid "The request has been removed. If you want, you can now inform the user." msgstr "Η συσκευή έχει επαληθευτεί και μπορεί πλέον να χρησιμοποιηθεί." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 #, fuzzy #| msgid "Cancellation fee" msgid "Your cancellation request" msgstr "Έξοδα ακύρωσης" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, fuzzy, python-brace-format #| msgid "" #| "Hello,\n" @@ -30332,7 +30450,7 @@ msgstr "" "Τις καλύτερες ευχές, \n" "Η ομάδα του {event}" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -30340,28 +30458,28 @@ msgstr "" "Η πληρωμή έχει επισημανθεί ως ολοκληρωμένη, αλλά δεν ήταν δυνατή η αποστολή " "mail επιβεβαίωσης." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "Η πληρωμή έχει επισημανθεί ως πλήρης." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Αυτή η πληρωμή δεν μπορεί να επιβεβαιωθεί αυτή τη στιγμή." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You entered an order that could not be found." msgid "You entered an order in an event with a different currency." msgstr "Εισαγάγατε μια παραγγελία που δεν βρέθηκε." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." @@ -30369,7 +30487,7 @@ msgstr "" "Δεν μπορείτε να επιστρέψετε ποσό μεγαλύτερο από το ποσό μιας πληρωμής που " "δεν έχει ακόμη επιστραφεί." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -30377,7 +30495,7 @@ msgstr "" "Επιλέξατε μερική επιστροφή χρημάτων για μια μέθοδο πληρωμής που υποστηρίζει " "μόνο τις πλήρεις επιστροφές χρημάτων." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -30386,12 +30504,12 @@ msgstr "" "Μία από τις επιστροφές χρημάτων δεν ολοκληρώθηκε. Θα πρέπει να προσπαθήσετε " "ξανά για επιστροφή χρημάτων με διαφορετικό τρόπο. Το μήνυμα λάθους ήταν: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "Η επιστροφή χρημάτων {} έχει υποβληθεί σε επεξεργασία." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -30400,20 +30518,20 @@ msgstr "" "Η επιστροφή χρημάτων {} έχει αποθηκευτεί, αλλά δεν έχει ακόμη ολοκληρωθεί " "πλήρως. Μπορείτε να την χαρακτηρίσετε ως ολοκληρωμένη παρακάτω." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 #, fuzzy #| msgid "The device has been verified and can now be used." msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "Η συσκευή έχει επαληθευτεί και μπορεί πλέον να χρησιμοποιηθεί." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 #, fuzzy #| msgid "Gift card" msgid "Your gift card code" msgstr "Δωροκάρτα" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -30426,13 +30544,13 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "Οι επιστροφές χρημάτων που έχετε επιλέξει δεν αντιστοιχούν στο επιλεγμένο " "συνολικό ποσό επιστροφής χρημάτων." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -30440,11 +30558,11 @@ msgstr "" "Η παραγγελία έχει επισημανθεί ως πληρωμένη, αλλά δεν ήταν δυνατή η αποστολή " "mail επιβεβαίωσης." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "Η πληρωμή έγινε με επιτυχία." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -30452,15 +30570,15 @@ msgstr "" "Η παραγγελία ακυρώθηκε. Τώρα μπορείτε να επιλέξετε τον τρόπο με τον οποίο " "θέλετε να μεταφέρετε τα χρήματα πίσω στο χρήστη." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Δεν έχει οριστεί ΦΠΑ." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Δεν προσδιορίστηκε καμία χώρα." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 #, fuzzy #| msgid "" #| "VAT ID could not be checked since a non-EU country has been specified." @@ -30469,7 +30587,7 @@ msgstr "" "Δεν ήταν δυνατή η επαλήθευση του αναγνωριστικού ΦΠΑ, δεδομένου ότι έχει " "καθοριστεί χώρα εκτός ΕΕ." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -30477,69 +30595,69 @@ msgstr "" "Το αναγνωριστικό ΦΠΑ δεν ήταν δυνατό να ελεγχθεί, δεδομένου ότι η υπηρεσία " "ελέγχου ΦΠΑ της χώρας δεν είναι επί του παρόντος διαθέσιμη." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Αυτό το αναγνωριστικό ΦΠΑ είναι έγκυρο." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Άγνωστο τιμολόγιο." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "Το τιμολόγιο έχει ήδη ακυρωθεί." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 #, fuzzy #| msgid "The invoice has already been canceled." msgid "The invoice file has already been exported." msgstr "Το τιμολόγιο έχει ήδη ακυρωθεί." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 #, fuzzy #| msgid "The invoice has been regenerated." msgid "The invoice file is too old to be regenerated." msgstr "Το τιμολόγιο έχει αναγεννηθεί." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "Το τιμολόγιο έχει καθαριστεί από προσωπικά δεδομένα." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "Το τιμολόγιο έχει καθαριστεί από προσωπικά δεδομένα." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" "Το μήνυμα ηλεκτρονικού ταχυδρομείου έχει τοποθετηθεί στην ουρά για αποστολή." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Αυτό το τιμολόγιο δεν βρέθηκε" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Το αρχείο τιμολογίου δεν αποθηκεύεται πλέον στον διακομιστή." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -30547,11 +30665,11 @@ msgstr "" "Το αρχείο τιμολογίου δεν έχει ακόμη παραχθεί, θα το δημιουργήσουμε τώρα. " "Δοκιμάστε ξανά σε λίγα δευτερόλεπτα." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Ο όρος πληρωμής έχει αλλάξει." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." @@ -30559,30 +30677,30 @@ msgstr "" "Δεν είχαμε τη δυνατότητα να επεξεργαστούμε πλήρως το αίτημα, καθώς ο " "διακομιστής ήταν πολύ απασχολημένος." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Αυτή η ενέργεια επιτρέπεται μόνο για παραγγελίες που εκκρεμούν." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 #, fuzzy #| msgid "This action is only allowed for pending orders." msgid "This action is only allowed for canceled orders." msgstr "Αυτή η ενέργεια επιτρέπεται μόνο για παραγγελίες που εκκρεμούν." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Παρουσιάστηκε σφάλμα. Ανατρέξτε στις παρακάτω λεπτομέρειες." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "Η παραγγελία έχει αλλάξει και ο χρήστης έχει ειδοποιηθεί." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "Η παραγγελία έχει αλλάξει." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." @@ -30590,33 +30708,33 @@ msgstr "" "Είχαμε δυσκολίες να επεξεργαστούμε τις πληροφορίες σας. Ελέγξτε τα παρακάτω " "σφάλματα." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Τίποτα για την παραγγελία δεν έπρεπε να αλλάξει." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" "Δεν ήταν δυνατή η αποστολή του μηνύματος ηλεκτρονικού ταχυδρομείου. Δείτε " "παρακάτω για λεπτομέρειες." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Θέμα: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Το μήνυμά σας έχει τεθεί σε αναμονή και θα σταλεί στο {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Αποτυχία αποστολής mail στον ακόλουθο χρήστη: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -30624,38 +30742,38 @@ msgstr "" "Αυτός ο σύνδεσμος δεν ισχύει πλέον. Πηγαίνετε πίσω, ανανεώστε τη σελίδα και " "δοκιμάστε ξανά." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Δεν υπάρχει παραγγελία με τον συγκεκριμένο κωδικό παραγγελίας." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "Ο επιλεγμένος εξαγωγέας δεν βρέθηκε." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" "Παρουσιάστηκε πρόβλημα κατά την επεξεργασία των δεδομένων εισόδου. Δείτε " "παρακάτω λεπτομέρειες σφαλμάτων." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, fuzzy, python-brace-format #| msgid "Expiry date" msgid "Export: {title}" msgstr "Ημερομηνία λήξης" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -30663,7 +30781,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have permission to perform this action." msgid "" @@ -30671,27 +30789,27 @@ msgid "" "therefore you cannot schedule it." msgstr "Δεν έχετε άδεια να εκτελέσετε αυτήν την ενέργεια." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 #, fuzzy #| msgid "The order has been canceled." msgid "All orders have been canceled." msgstr "Η παραγγελία ακυρώθηκε." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 #, fuzzy #| msgid "The password you entered was invalid, please try again." msgid "Your input was not valid." @@ -31929,7 +32047,7 @@ msgstr "Διάταξη badge: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -31966,7 +32084,7 @@ msgstr "" "Εγκαταστήστε το πακέτο python 'chardet' για καλύτερες δυνατότητες εισαγωγής " "CSV." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -31980,57 +32098,57 @@ msgstr "" "ολοκληρωμένες με μη αυτόματο τρόπο, είτε θα εισαγάγω τακτικά μια δήλωση " "ψηφιακής τράπεζας για να δώσω στο pretix τις απαιτούμενες πληροφορίες." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Τύπος τραπεζικού λογαριασμού" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "Τραπεζικός λογαριασμός SEPA" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Άλλος τραπεζικός λογαριασμός" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Όνομα δικαιούχου" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Όνομα τράπεζας" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Λεπτομέρειες τραπεζικού λογαριασμού" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -32041,7 +32159,7 @@ msgstr "" "διεθνείς πελάτες, ίσως χρειαστεί την πλήρη διεύθυνση σας και την πλήρη " "διεύθυνση της τράπεζάς σας." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -32051,47 +32169,47 @@ msgstr "" "ό,τι χρειάζονται οι πελάτες σας για να μεταφέρετε τα χρήματα, π.χ. αριθμούς " "λογαριασμού, αριθμούς δρομολόγησης, διευθύνσεις κ.λπ." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 #, fuzzy #| msgid "Do not include a hyphen in the payment reference." msgid "Do not include hyphens in the payment reference." msgstr "Μην συμπεριλάβετε το στοιχείο hyphen στην αναφορά πληρωμής." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Αυτό απαιτείται σε ορισμένες χώρες." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 #, fuzzy #| msgid "Do not include a hyphen in the payment reference." msgid "Include invoice number in the payment reference." msgstr "Μην συμπεριλάβετε το στοιχείο hyphen στην αναφορά πληρωμής." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 #, fuzzy #| msgid "Tax rule for payment fees" msgid "Prefix for the payment reference" msgstr "Φορολογικός κανόνας για τέλη πληρωμής" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 #, fuzzy #| msgid "This action is only allowed for pending orders." msgid "Additional text to show on pending orders" msgstr "Αυτή η ενέργεια επιτρέπεται μόνο για παραγγελίες που εκκρεμούν." -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 #, fuzzy #| msgid "All open refunds" msgid "IBAN blocklist for refunds" msgstr "Όλες οι ανοικτές επιστροφές χρημάτων" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -32102,36 +32220,36 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy #| msgid "Business customer" msgid "Restrict to business customers" msgstr "Επιχείρηση" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Συμπληρώστε τα στοιχεία του τραπεζικού σας λογαριασμού." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Καταχωρίστε τα στοιχεία του τραπεζικού σας λογαριασμού." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" "Παρακαλώ μεταφέρετε ολόκληρο το ποσό στον ακόλουθο τραπεζικό λογαριασμό:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -32141,9 +32259,9 @@ msgstr "" msgid "Account holder" msgstr "Κάτοχος λογαριασμού" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -32153,28 +32271,28 @@ msgstr "Κάτοχος λογαριασμού" msgid "Bank" msgstr "Τράπεζα" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, fuzzy, python-brace-format #| msgid "Bank account type" msgid "Bank account {iban}" msgstr "Τύπος τραπεζικού λογαριασμού" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 #, fuzzy #| msgid "(optional)" msgid "BIC (optional)" msgstr "(προαιρετικά)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 #, fuzzy #| msgid "The password you entered was invalid, please try again." msgid "Your input was invalid, please see below for details." @@ -32213,8 +32331,8 @@ msgstr "Η παραγγελία έχει ήδη ακυρωθεί." msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -32223,8 +32341,8 @@ msgstr "" "στον ακόλουθο τραπεζικό λογαριασμό, χρησιμοποιώντας έναν προσωπικό κωδικό " "αναφοράς:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 #, fuzzy #| msgid "" #| "We will assign you a personal reference code to use after you completed " @@ -32236,14 +32354,14 @@ msgstr "" "Θα σας εκχωρήσουμε έναν προσωπικό κωδικό αναφοράς που θα χρησιμοποιηθεί μετά " "την ολοκλήρωση της παραγγελίας." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Κωδικός αναφοράς (σημαντικό):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -32251,8 +32369,8 @@ msgstr "" "Θα σας εκχωρήσουμε έναν προσωπικό κωδικό αναφοράς που θα χρησιμοποιηθεί μετά " "την ολοκλήρωση της παραγγελίας." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 #, fuzzy #| msgid "" #| "After completing your purchase, we will ask you to transfer the money to " @@ -40332,9 +40450,6 @@ msgstr "" #~ "Για να ξεκινήσετε τη σάρωση των εισιτηρίων με τις εφαρμογές μας, " #~ "δημιουργήστε πρώτα έναν κωδικό διαμόρφωσης εδώ:" -#~ msgid "Create configuration" -#~ msgstr "Δημιουργία διαμόρφωσης" - #~ msgid "Create a new configuration" #~ msgstr "Δημιουργήστε μια νέα διαμόρφωση" diff --git a/src/pretix/locale/el/LC_MESSAGES/djangojs.po b/src/pretix/locale/el/LC_MESSAGES/djangojs.po index 9c8aeea0b3..6895a08efc 100644 --- a/src/pretix/locale/el/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/el/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2024-12-22 00:00+0000\n" "Last-Translator: Dimitris Tsimpidis \n" "Language-Team: Greek pretix" @@ -14115,6 +14136,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -14776,7 +14815,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -14860,11 +14899,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -14876,7 +14915,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -14888,7 +14927,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -14923,7 +14962,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -14932,11 +14971,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16590,8 +16629,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -16741,7 +16780,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17602,6 +17641,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20499,13 +20540,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20544,7 +20585,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21218,10 +21259,74 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +msgid "Proceed and cancel orders" +msgstr "" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21616,12 +21721,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23135,10 +23240,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24578,7 +24679,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24626,11 +24727,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -24966,17 +25067,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -24988,65 +25089,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25057,72 +25158,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25135,201 +25236,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25337,31 +25438,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26380,7 +26481,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26413,7 +26514,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26422,101 +26523,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26527,33 +26628,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26563,9 +26664,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26575,25 +26676,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26628,35 +26729,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/enm/LC_MESSAGES/djangojs.po b/src/pretix/locale/enm/LC_MESSAGES/djangojs.po index 250d7614a4..3ad08f20a7 100644 --- a/src/pretix/locale/enm/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/enm/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -638,40 +638,40 @@ msgid "" "will be impacted." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "" diff --git a/src/pretix/locale/es/LC_MESSAGES/django.po b/src/pretix/locale/es/LC_MESSAGES/django.po index 8d7cb528ac..45e2475d0e 100644 --- a/src/pretix/locale/es/LC_MESSAGES/django.po +++ b/src/pretix/locale/es/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2025-10-22 16:00+0000\n" "Last-Translator: CVZ-es \n" "Language-Team: Spanish pretix" @@ -16079,6 +16104,26 @@ msgstr "Si establece un rango de fechas, establezca un inicio y un final." msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "Confirme que desea cancelar TODAS las fechas de esta serie de eventos." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Código de confirmación" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "El código de confirmación que introdujo era incorrecto." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Este slug ya está en uso. Por favor, elija uno diferente." @@ -16839,7 +16884,7 @@ msgstr "El usuario confirmó el siguiente mensaje: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "El pedido ha sido cancelado (comentario: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "El pedido ha sido cancelado." @@ -16929,11 +16974,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "El pedido se ha configurado para requerir el pago antes de su uso." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "El pedido se ha marcado como caducado." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "El pedido ha sido marcado como pagado." @@ -16945,7 +16990,7 @@ msgstr "La solicitud de cancelación ha sido eliminada." msgid "The order has been refunded." msgstr "El pedido ha sido reembolsado." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "El pedido ha sido reactivado." @@ -16958,7 +17003,7 @@ msgid "The order requires approval before it can continue to be processed." msgstr "" "El pedido requiere aprobación antes que pueda continuar a ser procesada." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "El pedido ha sido aprobado." @@ -16998,7 +17043,7 @@ msgstr "La cuenta del usuario ha sido cambiada." msgid "The order locale has been changed." msgstr "Se ha cambiado el escenario del pedido." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Se ha generado la factura." @@ -17007,11 +17052,11 @@ msgstr "Se ha generado la factura." msgid "The invoice could not be generated." msgstr "No se ha podido generar la factura." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Se ha regenerado la factura." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Se ha vuelto a emitir la factura." @@ -18770,8 +18815,8 @@ msgid "Transaction ID" msgstr "ID de la transacción" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18925,7 +18970,7 @@ msgstr "Cancelar" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19961,6 +20006,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Cancelar evento" @@ -23286,13 +23333,13 @@ msgstr "Detalles del pedido: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Aprobar" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Denegar" @@ -23334,7 +23381,7 @@ msgstr "" "como vencida manualmente." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Reembolso del pago realizado en exceso" @@ -24078,10 +24125,86 @@ msgstr "" "No debes ejecutar esta función varias veces para el mismo evento, o todos " "los que estén en la lista de espera recibirán varios correos electrónicos." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Importe del reembolso" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Cancelar todos los pedidos" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "" +"Si se pone en contacto con nosotros, por favor envíenos el siguiente código:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "Texto (si el pedido no caducará automáticamente)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Enviar información por correo electrónico" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Iniciar un reembolso de %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Sí, cancelar pedido" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24504,12 +24627,12 @@ msgid "Select action" msgstr "Seleccionar acción" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "Reembolso del importe pagado en exceso" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "Marcar como vencido si está vencido" @@ -26242,10 +26365,6 @@ msgstr "" "\"CONFIRM_CODE.txt\" con un código de seis caracteres. Por favor, introduzca " "este código aquí para confirmar que ha descargado correctamente el archivo." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Código de confirmación" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -27866,7 +27985,7 @@ msgstr "Tu pedido: %(code)s" msgid "Unknown email renderer." msgstr "Desconocido renderizador de correo electrónico." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Ha solicitado un tipo de salida de entrada no válido." @@ -27922,11 +28041,11 @@ msgstr "" "Específicamente, los siguientes complementos todavía contienen datos que " "dependen de este evento: {plugin_names}" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "El comentario ha sido actualizado." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "No se pudo actualizar el comentario." @@ -28326,19 +28445,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Se ha revocado el acceso a la aplicación seleccionada." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" "No hemos podido procesar su entrada. Consulta los detalles a continuación." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" "Ejecutó con éxito la acción \"{label}\" en {success} de {total} pedidos." -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -28351,15 +28470,15 @@ msgid "Unknown order code or not authorized to access this order." msgstr "" "Código de pedido desconocido o no autorizado para acceder a este pedido." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "La descarga de entrada no está habilitada para este producto." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "El pedido ha sido eliminado." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -28367,52 +28486,52 @@ msgstr "" "El pedido no pudo ser eliminado ya que algunas restricciones (por ejemplo " "los datos creados por los plug-ins) no lo permiten." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "Solamente los pedidos creados en modo de prueba pueden ser eliminados." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "El pedido ha sido denegado y, por lo tanto, se ha cancelado." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Este pago ha sido cancelado." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Este pago no puede ser cancelado en este momento." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "El reembolso ha sido cancelado." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Este reembolso no puede cancelarse en este momento." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "El reembolso ha sido procesado." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Este reembolso no puede ser procesado en este momento." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "El reembolso se ha marcado como realizado." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" "La solicitud ha sido eliminada. Si lo desea, puede informar ahora al usuario." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Su solicitud de cancelación" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -28428,7 +28547,7 @@ msgstr "" "\n" "Tu equipo de {event}" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -28436,15 +28555,15 @@ msgstr "" "El pago se ha marcado como completo, pero no hemos podido enviar un correo " "de confirmación." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "El pago se ha marcado como completo." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Este pago no puede ser confirmado por el momento." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " @@ -28454,18 +28573,18 @@ msgstr "" "Por favor, revise los detalles del pedido y compruebe si el reembolso sigue " "siendo necesario." -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "Ha introducido un pedido en un evento con una moneda diferente." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" "No se puede reembolsar más del importe pagado que aún no ha sido devuelto." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -28473,7 +28592,7 @@ msgstr "" "Ha seleccionado un reembolso parcial para un método de pago que sólo admite " "reembolsos completos." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -28482,12 +28601,12 @@ msgstr "" "No se ha podido procesar uno de los reembolsos. Debería volver a intentar " "realizar el reembolso de otra forma. El mensaje de error era: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "Un reembolso de {} ha sido procesado." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -28496,18 +28615,18 @@ msgstr "" "Se ha guardado un reembolso de {}, pero aún no se ha ejecutado " "completamente. Puedes marcarlo como completo a continuación." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" "Se ha creado una nueva tarjeta regalo. Ahora puede enviar al usuario su " "código de tarjeta regalo." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Código de la tarjeta de regalo" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -28528,13 +28647,13 @@ msgstr "" "\n" "El equipo de {event}" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "Los reembolsos seleccionados no coinciden con el importe total de devolución " "seleccionado." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -28542,11 +28661,11 @@ msgstr "" "El pedido ha sido marcado como pagado, pero no hemos podido enviar un correo " "de confirmación." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "El pago ha sido creado con éxito." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -28554,20 +28673,20 @@ msgstr "" "El pedido ha sido cancelado. Puedes seleccionar como deseas transferir el " "dinero de vuelta al usuario." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "No se especifica el número de IVA." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "No se especifica ningún país." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" "No se ha podido comprobar el tipo de IVA ya que no se admite este país." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -28576,40 +28695,40 @@ msgstr "" "que el servicio de comprobación del IVA del país no está disponible en la " "actualidad." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Este número de IVA es válido." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Factura desconocida." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "Las facturas no se pueden modificar una vez creadas." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "Las facturas no se pueden modificar una vez enviadas." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "La factura ya se ha anulado." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "El archivo de factura ya ha sido exportado." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "El archivo de factura es demasiado antiguo para regenerarlo." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "La factura ha sido limpiada de datos personales." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." @@ -28617,23 +28736,23 @@ msgstr "" "La factura se está transmitiendo actualmente. Puede iniciar un nuevo intento " "una vez que se haya completado el actual." -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "La factura se ha programado para su reenvío." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "El correo electrónico ha sido puesto en cola para ser enviado." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "No se ha encontrado esta factura" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "El archivo de factura ya no se almacena en el servidor." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -28641,11 +28760,11 @@ msgstr "" "El archivo de la factura aún no ha sido generado, nosotros lo generaremos " "para usted ahora. Por favor, inténtelo de nuevo en unos segundos." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Se ha modificado la condición de pago." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." @@ -28653,28 +28772,28 @@ msgstr "" "No pudimos procesar la petición completamente porque el servidor estaba " "demasiado ocupado." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Esta acción sólo se permite para órdenes pendientes." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Esta acción sólo está permitida para pedidos cancelados." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Se ha producido un error. Por favor, vea los detalles a continuación." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "El pedido ha sido cambiado y el usuario ha sido notificado." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "El pedido ha sido cambiado." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." @@ -28682,31 +28801,31 @@ msgstr "" "Tuvimos dificultades para procesar su información. Por favor revise los " "errores a continuación." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "No hubo que cambiar nada en el pedido." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "No pudimos enviar el correo electrónico. Ver abajo para más detalles." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Asunto: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Su mensaje ha sido puesto en cola y será enviado a {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "No se pudo enviar correo al siguiente usuario: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -28714,21 +28833,21 @@ msgstr "" "Este enlace ya no es válido. Por favor, vuelva atrás, actualice la página e " "inténtelo de nuevo." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "No hay ningún pedido con el código de pedido dado." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "No se encontró al exportador seleccionado." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" "Hubo un problema procesando su entrada. Vea a continuación los detalles de " "los errores." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " @@ -28737,18 +28856,18 @@ msgstr "" "Su programa de exportación ha sido guardado. La próxima exportación " "comenzará alrededor del {datetime}." -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" "Su programa de exportación se ha guardado, pero no está prevista ninguna " "próxima exportación." -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "Exportar: {title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -28760,7 +28879,7 @@ msgstr "" "Adjunto a este correo electrónico, puede encontrar un nuevo informe " "programado para {name}." -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." @@ -28768,7 +28887,7 @@ msgstr "" "Su cuenta de usuario no tiene permisos suficientes para ejecutar este " "informe, por lo que no puede programarlo." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " @@ -28778,11 +28897,11 @@ msgstr "" "por correo electrónico. Dependiendo de la carga del sistema y del tipo y " "tamaño de la exportación, esto puede tardar unos minutos." -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Todos los pedidos han sido cancelados." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " @@ -28791,7 +28910,7 @@ msgstr "" "Los pedidos han sido cancelados. Se produjo un error con {count} pedidos; " "verifique todos los pedidos no cancelados." -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "Tu entrada no fue válida." @@ -29890,7 +30009,7 @@ msgstr "Diseño de la tarjeta de identificación: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -29927,7 +30046,7 @@ msgstr "" "Instale el paquete python 'chardet' para obtener mejores capacidades de " "importación CSV." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -29941,23 +30060,23 @@ msgstr "" "importaré regularmente un extracto bancario digital para proporcionar a " "pretix la información requerida." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Tipo de la cuenta bancaria" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "Cuenta de banco SEPA" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Otra cuenta bancaria" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Nombre del titular de la cuenta" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -29965,35 +30084,35 @@ msgstr "" "Tenga en cuenta: los caracteres especiales distintos de letras, números y " "algunos signos de puntuación pueden causar problemas con algunos bancos." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Nombre del Banco" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Datos de la cuenta bancaria" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -30003,7 +30122,7 @@ msgstr "" "pago por transferencia bancaria. Si tienes varios clientes internacionales, " "ellos podrían necesitar tu dirección completa y la del Banco." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -30013,27 +30132,27 @@ msgstr "" "favor agregar todo lo que los clientes necesitan para transferir el dinero, " "p. e. números de cuenta, número de ruteo, direcciones, etc." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "No incluya guiones en la referencia de pago." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Esto es obligatorio en algunos países." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Incluir el número de factura en la referencia de pago." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Prefijo de la referencia de pago" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Texto adicional para mostrar en pedidos pendientes" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -30041,11 +30160,11 @@ msgstr "" "Este texto se mostrará en la página de confirmación del pedido para pedidos " "pendientes además del texto estándar." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "Lista de bloqueo de IBAN para reembolsos" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -30064,11 +30183,11 @@ msgstr "" "ejemplo DE0012345 se prohibirán todos los IBAN alemanes cuyo identificador " "bancario empiece por 12345." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Restringir a clientes empresariales" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -30076,23 +30195,23 @@ msgstr "" "Sólo permite elegir este proveedor de pago a los clientes que introducen una " "dirección de factura y seleccionan \"Cliente empresarial o institucional\"." -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Por favor llene los detalles de su cuenta bancaria." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Por favor ingrese los detalles de su cuenta bancaria." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Por favor, transfiera el importe total a la siguiente cuenta bancaria:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -30102,9 +30221,9 @@ msgstr "Por favor, transfiera el importe total a la siguiente cuenta bancaria:" msgid "Account holder" msgstr "Titular de la cuenta" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -30114,27 +30233,27 @@ msgstr "Titular de la cuenta" msgid "Bank" msgstr "Banco" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "IBAN/BIC inválido" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Cuenta bancaria {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" "Solo se puede crear un reembolso por transferencia bancaria a partir de un " "pago existente." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (opcional)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" "Su entrada no fue válida; consulte a continuación para obtener más detalles." @@ -30170,8 +30289,8 @@ msgstr "El pedido ya ha sido cancelado." msgid "Currencies do not match." msgstr "Las monedas no coinciden." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -30179,8 +30298,8 @@ msgstr "" "Después de completar su compra, le pediremos que transfiera el dinero a la " "siguiente cuenta bancaria, utilizando un código de referencia personal:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." @@ -30188,14 +30307,14 @@ msgstr "" "Por favor, no inicie aún el pago. Le asignaremos un código de referencia " "personal una vez que haya completado el pedido." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Código de referencia (importante):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -30203,8 +30322,8 @@ msgstr "" "Le asignaremos un código de referencia personal para que lo utilice después " "de completar el pedido." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." @@ -37864,9 +37983,6 @@ msgstr "Kosovo" #~ "Para empezar a escanear tickets con nuestras aplicaciones, primero cree " #~ "un código de configuración aquí:" -#~ msgid "Create configuration" -#~ msgstr "Crear configuración" - #~ msgid "Create a new configuration" #~ msgstr "Crear una nueva configuración" diff --git a/src/pretix/locale/es/LC_MESSAGES/djangojs.po b/src/pretix/locale/es/LC_MESSAGES/djangojs.po index 704116b9a2..5a392f60ae 100644 --- a/src/pretix/locale/es/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/es/LC_MESSAGES/djangojs.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-10-22 16:00+0000\n" "Last-Translator: CVZ-es \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -659,40 +659,40 @@ msgstr "" "El color no tiene suficiente contraste con el blanco. La accesibilidad de su " "sitio se verá afectada." -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "Consulta de búsqueda" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "Todos" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "Ninguno" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "Solamente seleccionados" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "Introduce un número de página entre 1 y %(max)s." -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "Número de página inválido." -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "Usar un nombre diferente internamente" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "Click para cerrar" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "¡Tienes cambios sin guardar!" diff --git a/src/pretix/locale/es_419/LC_MESSAGES/django.po b/src/pretix/locale/es_419/LC_MESSAGES/django.po index 265592abe1..c52a18283d 100644 --- a/src/pretix/locale/es_419/LC_MESSAGES/django.po +++ b/src/pretix/locale/es_419/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2025-07-18 01:00+0000\n" "Last-Translator: Zona Vip \n" "Language-Team: Spanish (Latin America) pretix" @@ -14255,6 +14278,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -14916,7 +14957,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -15000,11 +15041,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -15016,7 +15057,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -15028,7 +15069,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -15063,7 +15104,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -15074,11 +15115,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "Se revirtió el registro del ticket" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16732,8 +16773,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -16883,7 +16924,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17750,6 +17791,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20655,13 +20698,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20700,7 +20743,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21374,10 +21417,74 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +msgid "Proceed and cancel orders" +msgstr "" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21772,12 +21879,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23291,10 +23398,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24734,7 +24837,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24782,11 +24885,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -25122,17 +25225,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -25144,65 +25247,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25213,72 +25316,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25291,201 +25394,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25493,31 +25596,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26540,7 +26643,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26573,7 +26676,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26582,101 +26685,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26687,33 +26790,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26723,9 +26826,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26735,25 +26838,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26788,35 +26891,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/es_419/LC_MESSAGES/djangojs.po b/src/pretix/locale/es_419/LC_MESSAGES/djangojs.po index 206564b293..f4523d4483 100644 --- a/src/pretix/locale/es_419/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/es_419/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-08-04 14:16+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -639,40 +639,40 @@ msgid "" "will be impacted." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "" diff --git a/src/pretix/locale/et/LC_MESSAGES/django.po b/src/pretix/locale/et/LC_MESSAGES/django.po index 70bd7b9bec..cd28592b56 100644 --- a/src/pretix/locale/et/LC_MESSAGES/django.po +++ b/src/pretix/locale/et/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2024-09-16 13:00+0000\n" "Last-Translator: Svyatoslav \n" "Language-Team: Estonian pretix" @@ -14117,6 +14138,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -14778,7 +14817,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -14862,11 +14901,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -14878,7 +14917,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -14890,7 +14929,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -14925,7 +14964,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -14934,11 +14973,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16592,8 +16631,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -16743,7 +16782,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17604,6 +17643,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20501,13 +20542,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20546,7 +20587,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21220,10 +21261,74 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +msgid "Proceed and cancel orders" +msgstr "" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21618,12 +21723,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23137,10 +23242,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24580,7 +24681,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24628,11 +24729,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -24968,17 +25069,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -24990,65 +25091,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25059,72 +25160,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25137,201 +25238,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25339,31 +25440,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26382,7 +26483,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26415,7 +26516,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26424,101 +26525,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26529,33 +26630,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26565,9 +26666,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26577,25 +26678,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26630,35 +26731,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/et/LC_MESSAGES/djangojs.po b/src/pretix/locale/et/LC_MESSAGES/djangojs.po index bad2fcfb00..fb41580643 100644 --- a/src/pretix/locale/et/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/et/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -638,40 +638,40 @@ msgid "" "will be impacted." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "" diff --git a/src/pretix/locale/eu/LC_MESSAGES/django.po b/src/pretix/locale/eu/LC_MESSAGES/django.po index 256e0be927..af7bdffa63 100644 --- a/src/pretix/locale/eu/LC_MESSAGES/django.po +++ b/src/pretix/locale/eu/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2024-09-23 18:00+0000\n" "Last-Translator: Albizuri \n" "Language-Team: Basque pretix" @@ -15840,6 +15865,26 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Sartutako berrespen-kodea ez da zuzena." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -16518,7 +16563,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Sarrerak bertan behera utzi dira." @@ -16602,11 +16647,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -16618,7 +16663,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -16630,7 +16675,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -16665,7 +16710,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -16676,11 +16721,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "Faktura bat sortu da." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -18346,8 +18391,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18499,7 +18544,7 @@ msgstr "Ezeztatu" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19383,6 +19428,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -22322,13 +22369,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -22367,7 +22414,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -23059,10 +23106,82 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount:" +msgid "Preview refund amount" +msgstr "Itzulketa kopurua:" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Gurekin harremanetan jartzen bazara, mesedez bidali hurrengo kodea:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Generate automatically" +msgid "Refunds will not happen automatically." +msgstr "Automatikoki sortu" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Bai, sarrerak bertan behera utzi" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -23457,12 +23576,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -24994,10 +25113,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -26451,7 +26566,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -26499,11 +26614,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -26839,19 +26954,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We successfully received your payment. See below for details." msgid "We could not process your input. See below for details." msgstr "Ongi jaso dugu zure ordainketa. Ikus beherago xehetasun gehiagorako." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -26863,65 +26978,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -26932,72 +27047,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -27010,203 +27125,203 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The voucher has been sent to {recipient}." msgid "The invoice has been scheduled for retransmission." msgstr "{recipient}-ra bidali da kupoia." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -27214,7 +27329,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -27222,25 +27337,25 @@ msgid "" "therefore you cannot schedule it." msgstr "Ez duzu esportazio hori egiteko baimen nahikorik." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -28316,7 +28431,7 @@ msgstr "Intsignia-txantiloia: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -28352,7 +28467,7 @@ msgid "" msgstr "" "Instalatu python 'chardet' paketea CSVren inportazio-ahalmena hobetzeko." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -28366,23 +28481,23 @@ msgstr "" "bankuko aitorpen digital bat inportatuko dut aldian-aldian, behar den " "informazioa a priori emateko." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Banku-kontu mota" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "SEPA banku-kontua" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Beste banku kontu bat" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Kontuaren titularraren izena" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -28390,35 +28505,35 @@ msgstr "" "Kontuan izan: letrak ez diren karaktere bereziak, zenbakiak, eta " "puntuazioren batek arazoak sor ditzake banku batzuekin." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Bankuaren izena" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Banku kontuaren xehetasunak" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -28428,7 +28543,7 @@ msgstr "" "duten gainerako guztia. Nazioarteko bezero asko badituzu, baliteke zure " "helbide osoa eta zure bankuaren helbide osoa behar izatea." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -28438,27 +28553,27 @@ msgstr "" "bezeroek dirua transferitzeko behar duten guztia, adibidez, kontu-zenbakiak, " "bide-zenbakiak, helbideak, etab." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Ez sartu hyphens-ak ordainketa-erreferentzian." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Hori beharrezkoa da herrialde batzuetan." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Sartu faktura-zenbakia ordainketa-erreferentzian." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Pretix ordainketa-erreferentziatzat" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Egiteke dauden eskaeretan erakutsi beharreko testu gehigarria" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -28466,11 +28581,11 @@ msgstr "" "Testu estandarra ez ezik, egiteke dauden eskaeretarako eskaerak berresteko " "orrian ere agertuko da testu hau." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "Itzulketetarako IBAN kodeen zerrenda" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -28489,11 +28604,11 @@ msgstr "" "beraz, baliteke e.g. debekatu DE0012345 12345etik aurrera Alemaniako IBAN " "guztia banku-identifikatzailearekin debekatzea." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Bezero komertzialetara mugatu" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -28502,23 +28617,23 @@ msgstr "" "\"Enpresa- edo erakunde-bezeroa\" hautatzen duten bezeroentzat bakarrik " "aukera dezakezu." -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Mesedez, bete zure banku-kontuaren datuak." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Mesedez, sartu zure banku-kontuaren datuak." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Mesedez, transferitu zenbateko osoa banku-kontu honetara:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -28528,9 +28643,9 @@ msgstr "Mesedez, transferitu zenbateko osoa banku-kontu honetara:" msgid "Account holder" msgstr "Kontuaren titularra" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -28540,27 +28655,27 @@ msgstr "Kontuaren titularra" msgid "Bank" msgstr "Bankua" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "IBAN/BIC okerra" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Banku kontua {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" "Banku-transferentzia bidezko itzulketa bat lehendik dagoen ordainketa " "batetik abiatuta soilik sor daiteke." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (hautazkoa)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" "Zure sarrera ez zen baliozkoa. Xehetasun gehiago nahi izanez gero, begiratu " @@ -28600,8 +28715,8 @@ msgstr "Eskaera bertan behera utzi da." msgid "Currencies do not match." msgstr "Monetak ez datoz bat." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -28609,8 +28724,8 @@ msgstr "" "Erosketa egin ondoren, dirua banku-kontu honetara transferitzeko eskatuko " "dizugu, erreferentzia-kode pertsonal bat erabiliz:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." @@ -28618,14 +28733,14 @@ msgstr "" "Mesedez, ez hasi oraindik ordaintzen. Erreferentzia-kode pertsonal bat " "esleituko dizugu eskaera amaitu ondoren." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Erreferentzia kodea (garrantzitsua):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -28633,8 +28748,8 @@ msgstr "" "Erreferentzia-kode pertsonal bat esleituko dizugu, eskaera amaitu ondoren " "erabil dezazun." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/eu/LC_MESSAGES/djangojs.po b/src/pretix/locale/eu/LC_MESSAGES/djangojs.po index 491a15fa18..aa9035b15a 100644 --- a/src/pretix/locale/eu/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/eu/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2024-09-06 08:47+0000\n" "Last-Translator: Albizuri \n" "Language-Team: Basque \n" "Language-Team: Finnish pretix" @@ -15727,6 +15752,26 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Syöttämäsi vahvistuskoodi oli virheellinen." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -16400,7 +16445,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Tilaus peruttu. (kommentti: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -16484,11 +16529,11 @@ msgstr "Tilaus on otettu käyttöön kunnes se on maksettu." msgid "The order has been set to require payment before use." msgstr "Tilaus on asetettu tilaan odottaa maksamista ennen käyttöä." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -16500,7 +16545,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -16512,7 +16557,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -16547,7 +16592,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -16558,11 +16603,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "Lasku on luotu." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -18222,8 +18267,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18383,7 +18428,7 @@ msgstr "Peruuta" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19274,6 +19319,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Peruuta tapahtuma" @@ -22210,13 +22257,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -22255,7 +22302,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -22951,10 +22998,82 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Hyvitettävä summa" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Jos otat meihin yhteyttä, lähetä meille seuraava koodi:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Generate automatically" +msgid "Refunds will not happen automatically." +msgstr "Generoi automaattisesti" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Can change orders" +msgid "Proceed and cancel orders" +msgstr "Voi muokata tilauksia" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -23351,12 +23470,12 @@ msgid "Select action" msgstr "Valitse toiminto" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "Hyvitä liikaa maksettu osuus" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -24884,10 +25003,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -26352,7 +26467,7 @@ msgstr "Tilauksesi: %(code)s" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -26400,11 +26515,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -26742,19 +26857,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We successfully received your payment. See below for details." msgid "We could not process your input. See below for details." msgstr "Maksu vastaanotettu onnistuneesti. Katso tilauksen tiedot alta." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -26768,65 +26883,65 @@ msgstr "" "Tilausnumeroa ei löytynyt tai sinulla ei ole oikeuksia tarkastella tätä " "tilausta." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Lippujen lataus ei ole käytössä tälle tuotteelle." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "Tilaus poistettu." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "Vain testitilassa tehdyt tilaukset voidaan poistaa." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Tämä maksu on peruttu." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "Hyvistys on peruttu." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Tätä hyvitystä ei voi perua tällä hetkellä." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "Hyvitys on käsitelty." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Peruutuspyyntösi" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -26837,72 +26952,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -26915,203 +27030,203 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The voucher has been sent to {recipient}." msgid "The invoice has been scheduled for retransmission." msgstr "Kuponki on lähetetty {recipient}." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "Vie: {title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -27119,7 +27234,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -27128,25 +27243,25 @@ msgid "" msgstr "" "Sinulla ei ole riittäviä oikeuksia tämän vientitoiminnon suorittamiseen." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -28193,7 +28308,7 @@ msgstr "Kulkukortin layout: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -28228,7 +28343,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "Asenna python-paketti chardet parantaaksesi CSV-tuontiominaisuuksia." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -28241,23 +28356,23 @@ msgstr "" "merkitsen maksut suoritetuiksi manuaalisesti tai tuon säännöllisesti " "digitaalisen tiliotteen antaakseni tarvittavat tiedot." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Pankkitili tyyppi" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "SEPA-pankkitili" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Muu pankkitili" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Tilin omistajan nimi" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -28265,35 +28380,35 @@ msgstr "" "Huomioithan: erikoismerkit lukuunottamatta kirjaimia, numeroita ja joitakin " "välimerkkejä saattavat aiheuttaa ongelmia joissakin pankeissa." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Pankin nimi" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Tilitiedot" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -28303,7 +28418,7 @@ msgstr "" "lähettämiseen. Jos sinulla on paljon kansainvälisiä asiakkaita, he saattavat " "tarvita osoitteesi ja pankkisi osoitteen kokonaisuudessaan." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -28313,27 +28428,27 @@ msgstr "" "lisää kaikki, mitä asiakkaasi tarvitsevat rahansiirtoa varten, esim. " "tilinumerot, reititysnumerot, osoitteet jne." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Maksuviitteessä ei saa olla väliviivoja." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Tämä vaaditaan joissakin maissa." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Sisällytä laskun numero maksuviitteeseen." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Maksuviitteen etuliite" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Vireillä olevissa tilauksissa näytettävä lisäteksti" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -28341,11 +28456,11 @@ msgstr "" "Tämä teksti näytetään tilauksen vahvistussivulla vireillä olevien tilausten " "vakiotekstin lisäksi." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "IBAN-estoluettelo palautuksia varten" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -28364,11 +28479,11 @@ msgstr "" "kieltämällä kaikki saksalaiset IBAN-tunnukset, joiden pankkitunnus alkaa " "12345:llä." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Rajoita yritysasiakkaisiin" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -28376,23 +28491,23 @@ msgstr "" "Salli tämän palveluntarjoajan valitseminen vain asiakkaille, jotka antavat " "laskutusosoitteen ja valitsevat vaihtoehdon ”Yritys- tai yhteisöasiakas”." -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Ole hyvä ja anna tilitietosi." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Ole hyvä ja kirjoita tilitietosi." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Ole hyvä ja siirrä koko summa seuraavalle pankkitilille:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -28402,9 +28517,9 @@ msgstr "Ole hyvä ja siirrä koko summa seuraavalle pankkitilille:" msgid "Account holder" msgstr "Tilinomistaja" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -28414,25 +28529,25 @@ msgstr "Tilinomistaja" msgid "Bank" msgstr "Pankki" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "Viallinen IBAN/BIC" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Pankkitili {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "Voit luoda pankkisiirtopalautuksen vain olemassa olevasta maksusta." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (valinnainen)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "Epäkelpo syöte, katso tiedot alta." @@ -28467,8 +28582,8 @@ msgstr "Tilaus on jo peruttu." msgid "Currencies do not match." msgstr "Valuutat eivät täsmää." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -28476,8 +28591,8 @@ msgstr "" "Kun saat ostoksesi valmiiksi, pyydämme sinua siirtämään rahat seuraavalle " "pankkitilille henkilökohtaista viitekoodia käyttäen:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." @@ -28485,14 +28600,14 @@ msgstr "" "Älä alota vielä maksua. Annamme sinulle henkilökohtaisen viitenumeron, kun " "tilauksesi on valmis." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Viitenumero (tärkeä):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -28500,8 +28615,8 @@ msgstr "" "Annamme sinulle henkilökohtaisen viitekoodin, jota voit käyttää tilauksen " "tekemisen jälkeen." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/fi/LC_MESSAGES/djangojs.po b/src/pretix/locale/fi/LC_MESSAGES/djangojs.po index e8b2dc3fd9..3b524d86cc 100644 --- a/src/pretix/locale/fi/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/fi/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2021-11-10 05:00+0000\n" "Last-Translator: Jaakko Rinta-Filppula \n" "Language-Team: Finnish \n" "Language-Team: Faroese pretix" @@ -14162,6 +14185,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -14823,7 +14864,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -14907,11 +14948,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -14923,7 +14964,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -14935,7 +14976,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -14970,7 +15011,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -14981,11 +15022,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "Atgongumerkja kekk inn avlýst" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16639,8 +16680,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -16790,7 +16831,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17655,6 +17696,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20554,13 +20597,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20599,7 +20642,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21273,10 +21316,74 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +msgid "Proceed and cancel orders" +msgstr "" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21671,12 +21778,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23190,10 +23297,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24633,7 +24736,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24681,11 +24784,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -25021,17 +25124,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -25043,65 +25146,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25112,72 +25215,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25190,201 +25293,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25392,31 +25495,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26439,7 +26542,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26472,7 +26575,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26481,101 +26584,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26586,33 +26689,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26622,9 +26725,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26634,25 +26737,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26687,35 +26790,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/fo/LC_MESSAGES/djangojs.po b/src/pretix/locale/fo/LC_MESSAGES/djangojs.po index 250d7614a4..3ad08f20a7 100644 --- a/src/pretix/locale/fo/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/fo/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -638,40 +638,40 @@ msgid "" "will be impacted." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "" diff --git a/src/pretix/locale/fr/LC_MESSAGES/django.po b/src/pretix/locale/fr/LC_MESSAGES/django.po index 21374ab5a4..d64641f05c 100644 --- a/src/pretix/locale/fr/LC_MESSAGES/django.po +++ b/src/pretix/locale/fr/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: 1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2025-10-22 16:00+0000\n" "Last-Translator: CVZ-es \n" "Language-Team: French pretix" @@ -16225,6 +16250,26 @@ msgstr "" "Veuillez confirmer que vous souhaitez annuler TOUTES les dates de cette " "série d’événements." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Code de confirmation" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Le code de confirmation que vous avez entré était incorrect." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Ce slug déjà utilisée. Veuillez en choisir un autre." @@ -16978,7 +17023,7 @@ msgstr "L'utilisateur a confirmé le message suivant : \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "La commande a été annulée (commentaire : « {comment} »)." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "La commande a été annulée." @@ -17069,11 +17114,11 @@ msgid "The order has been set to require payment before use." msgstr "" "La commande a été configurée pour exiger le paiement avant utilisation." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "La commande a été marquée comme ayant expiré." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "La commande a été marquée comme payée." @@ -17085,7 +17130,7 @@ msgstr "La demande d’annulation a été supprimée." msgid "The order has been refunded." msgstr "La commande a été remboursée." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "La commande a été réactivée." @@ -17098,7 +17143,7 @@ msgid "The order requires approval before it can continue to be processed." msgstr "" "La commande doit être approuvée avant de pouvoir continuer à être traitée." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "La commande a été approuvée." @@ -17136,7 +17181,7 @@ msgstr "Le compte client a été modifié." msgid "The order locale has been changed." msgstr "L'emplacement de la commande a été modifiée." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "La facture a été générée." @@ -17145,11 +17190,11 @@ msgstr "La facture a été générée." msgid "The invoice could not be generated." msgstr "La facture n'a pas pu être générée." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "La facture a été régénérée." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "La facture a été réémise." @@ -18906,8 +18951,8 @@ msgid "Transaction ID" msgstr "Identifiant de la transaction" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -19061,7 +19106,7 @@ msgstr "Annuler" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -20101,6 +20146,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Annuler l’événement" @@ -23453,13 +23500,13 @@ msgstr "Détails de la commande : %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Approuver" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Refuser" @@ -23501,7 +23548,7 @@ msgstr "" "quota, vous pouvez la marquer comme expirée manuellement." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Remboursement du trop-payé" @@ -24256,10 +24303,85 @@ msgstr "" "événement, sinon toutes les personnes sur la liste d’attente recevront " "plusieurs courriels." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Montant du remboursement" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Annuler toutes les commandes" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Si vous nous contactez, veuillez nous envoyer le code suivant :" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "Texte (si la commande n’expire pas automatiquement)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Envoyer des informations par e-mail" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Initier un remboursement de %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Oui, annuler la commande" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24683,12 +24805,12 @@ msgid "Select action" msgstr "Sélectionner une action" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "Remboursement du trop-perçu" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "Marquer comme expiré en cas de retard" @@ -26436,10 +26558,6 @@ msgstr "" "\"CONFIRM_CODE.txt\" avec un code à six caractères. Veuillez entrer ce code " "ici pour confirmer que vous avez bien téléchargé le fichier." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Code de confirmation" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -28073,7 +28191,7 @@ msgstr "Votre commande : %(code)s" msgid "Unknown email renderer." msgstr "Moteur de rendu d’e-mails inconnu." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Vous avez demandé un type d'édition de ticket non valide." @@ -28129,11 +28247,11 @@ msgstr "" "Plus précisément, les plugins suivants contiennent toujours des données qui " "dépendent de cet événement : {plugin_names}" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Le commentaire a été mis à jour." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Impossible de mettre à jour le commentaire." @@ -28539,13 +28657,13 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "L’accès à l’application sélectionnée a été révoqué." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" "Nous n'avons pas pu traiter votre demande. Voir ci-dessous pour plus de " "détails." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." @@ -28553,7 +28671,7 @@ msgstr "" "L'action « {label} » a été exécutée avec succès. Bilan {success} de {total} " "commandes." -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -28566,15 +28684,15 @@ msgid "Unknown order code or not authorized to access this order." msgstr "" "Code de commande inconnu ou non autorisé pour accéder à cette commande." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Le téléchargement de tickets n’est pas activé pour ce produit." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "La commande a été supprimée." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -28582,53 +28700,53 @@ msgstr "" "La commande n’a pas pu être supprimée car certaines contraintes (par exemple " "les données créées par les plug-ins) ne le permettent pas." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "Seules les commandes créées en mode test peuvent être supprimées." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "La commande a été refusée et est donc maintenant annulée." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Ce paiement a été annulé." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Ce paiement ne peut pas être annulé pour le moment." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "Le remboursement a été annulé." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Ce remboursement ne peut pas être annulé pour le moment." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "Le remboursement a été traité." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Ce remboursement ne peut pas être traité pour le moment." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "Le remboursement a été marqué comme fait." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" "La demande a été supprimée. Si vous le souhaitez, vous pouvez maintenant " "informer l’utilisateur." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Votre demande d’annulation" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -28645,7 +28763,7 @@ msgstr "" "\n" "Votre équipe {event}" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -28653,15 +28771,15 @@ msgstr "" "Le paiement a été marqué comme terminé, mais nous n’avons pas pu envoyer d’e-" "mail de confirmation." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "Le paiement a été marqué comme terminé." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Ce paiement ne peut pas être confirmé pour le moment." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " @@ -28671,12 +28789,12 @@ msgstr "" "déjà en cours au même moment. Veuillez consulter les détails de la commande " "et vérifier si le remboursement est toujours nécessaire." -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" "Vous avez passé une commande dans un événement dont la devise est différente." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." @@ -28684,7 +28802,7 @@ msgstr "" "Vous ne pouvez pas rembourser plus que le montant d’un paiement qui n’est " "pas encore remboursé." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -28692,7 +28810,7 @@ msgstr "" "Vous avez sélectionné un remboursement partiel pour un mode de paiement qui " "ne prend en charge que les remboursements complets." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -28701,12 +28819,12 @@ msgstr "" "L’un des remboursements n’a pas été traité. Vous devriez réessayer de " "rembourser d’une manière différente. Le message d’erreur était : {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "Un remboursement de {} a été traité." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -28715,18 +28833,18 @@ msgstr "" "Un remboursement de {} a été enregistré, mais pas encore entièrement " "exécuté. Vous pouvez le marquer comme complet ci-dessous." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" "Une nouvelle carte-cadeau a été créée. Vous pouvez maintenant envoyer à " "l’utilisateur son code de carte-cadeau." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Votre code de carte cadeau" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -28747,13 +28865,13 @@ msgstr "" "\n" "Votre équipe {event}" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "Les remboursements que vous avez sélectionnés ne correspondent pas au " "montant total du remboursement sélectionné." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -28761,11 +28879,11 @@ msgstr "" "La commande a été marquée comme payée, mais nous n'avons pas été en mesure " "d'envoyer un mail de confirmation." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "Le paiement a été créé avec succès." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -28773,21 +28891,21 @@ msgstr "" "La commande a été annulée. Vous pouvez maintenant sélectionner la façon dont " "vous souhaitez transférer l’argent à l’utilisateur." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Pas de numéro d'identification TVA spécifié." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Aucun pays spécifié." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" "Le numéro de TVA n’a pas pu être vérifié car ce pays n’est pas pris en " "charge." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -28795,40 +28913,40 @@ msgstr "" "Le numéro d'identification TVA n' a pas pu être vérifié, car le service de " "contrôle de la TVA du pays n'est actuellement pas disponible." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Cette identification TVA est valable." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Facture inconnue." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "Les factures ne peuvent pas être modifiées après leur création." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "Les factures ne peuvent pas être modifiées après leur transmission." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "La facture a déjà été annulée." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "Le fichier de facture a déjà été exporté." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "Le fichier de facture est trop ancien pour être régénéré." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "La facture a été nettoyée des données personnelles." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." @@ -28836,23 +28954,23 @@ msgstr "" "La facture est en cours d'envoi. Vous pouvez recommencer une nouvelle " "tentative une fois que celle-ci aura été effectuée." -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "La facture a été programmée pour être renvoyée." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "L'email a été mis en file d'attente pour être envoyé." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Cette facture n' a pas été trouvée" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Le fichier de factures n'est plus stocké sur le serveur." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -28860,11 +28978,11 @@ msgstr "" "Le fichier de facture n'a pas encore été généré, nous allons le générer pour " "vous maintenant. Veuillez réessayer dans quelques secondes." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Le délai de paiement a été modifié." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." @@ -28872,28 +28990,28 @@ msgstr "" "Nous n'avons pas pu traiter la demande complètement car le serveur était " "trop occupé." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Cette action n'est autorisée que pour les commandes en attente." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Cette action n’est autorisée que pour les commandes annulées." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Une erreur s'est produite. Veuillez consulter les détails ci-dessous." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "La commande a été modifiée et l'utilisateur a été averti." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "La commande a été modifiée." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." @@ -28901,32 +29019,32 @@ msgstr "" "Nous avons eu des difficultés à traiter les données. Veuillez vérifier les " "erreurs ci-dessous." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Rien sur l'ordre n'a dû être changé." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" "Nous n'avons pas pu envoyer le mail. Voir ci-dessous pour plus de détails." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Sujet : {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Votre message a été mis en file d'attente et sera envoyé à {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Echec de l'envoi de mail à l'utilisateur suivant : {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -28934,21 +29052,21 @@ msgstr "" "Ce lien n'est plus valide. Veuillez revenir en arrière, rafraîchir la page " "et réessayer." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Il n' y a pas d'ordre avec le code de commande donné." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "L'exportateur sélectionné n' a pas été trouvé." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" "Il y a eu un problème de traitement de vos données. Voir ci-dessous pour " "plus de détails sur les erreurs." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " @@ -28957,18 +29075,18 @@ msgstr "" "Votre calendrier d’exportation a été enregistré. La prochaine exportation " "commencera vers {datetime}." -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" "Votre calendrier d’exportation a été enregistré, mais aucune prochaine " "exportation n’est prévue." -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "Exportation : {title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -28980,7 +29098,7 @@ msgstr "" "En pièce jointe à cet e-mail, vous pouvez trouver un nouveau rapport " "planifié pour {name}." -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." @@ -28988,7 +29106,7 @@ msgstr "" "Votre compte utilisateur ne dispose pas des autorisations suffisantes pour " "exécuter ce rapport, vous ne pouvez donc pas le planifier." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " @@ -28998,11 +29116,11 @@ msgstr "" "résultats seront envoyés par e-mail. Selon la charge du système et le type " "et la taille de l’exportation, cela peut prendre quelques minutes." -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Toutes les commandes ont été annulées." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " @@ -29011,7 +29129,7 @@ msgstr "" "Les commandes ont été annulées. Une erreur s’est produite avec {count} " "commandes, veuillez vérifier toutes les commandes non annulées." -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "Votre entrée n'était pas valide." @@ -30120,7 +30238,7 @@ msgstr "Mise en page du badge : {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -30157,7 +30275,7 @@ msgstr "" "Installez le package python'chardet' pour de meilleures capacités " "d'importation CSV." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -30171,23 +30289,23 @@ msgstr "" "manuellement ou importerai régulièrement un relevé bancaire numérique afin " "de donner à pretix les informations requises." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Type de compte bancaire" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "Compte bancaire SEPA" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Autre compte bancaire" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Nom du titulaire du compte" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -30196,35 +30314,35 @@ msgstr "" "certains signes de ponctuation peuvent causer des problèmes avec certaines " "banques." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Nom de la banque" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Coordonnées bancaires" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -30235,7 +30353,7 @@ msgstr "" "internationaux, ils pourraient avoir besoin de votre adresse complète et de " "l’adresse complète de votre banque." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -30245,27 +30363,27 @@ msgstr "" "ajouter tout ce dont vos clients ont besoin pour transférer l’argent, par " "exemple les numéros de compte, les numéros de routage, les adresses, etc." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "N’incluez pas de traits d’union dans la référence de paiement." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Cela est exigé dans certains pays." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Indiquez le numéro de facture dans la référence de paiement." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Préfixe pour la référence de paiement" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Texte supplémentaire à afficher sur les commandes en attente" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -30273,11 +30391,11 @@ msgstr "" "Ce texte sera affiché sur la page de confirmation de commande pour les " "commandes en attente en plus du texte standard." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "Liste de blocage IBAN pour les remboursements" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -30296,11 +30414,11 @@ msgstr "" "sorte que vous pouvez par exemple interdire DE0012345 pour interdire tous " "les IBAN allemands dont l'identifiant bancaire commence par 12345." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Restreindre aux clients professionnels" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -30309,23 +30427,23 @@ msgstr "" "saisissent une adresse de facturation et sélectionnent « Client " "professionnel ou institutionnel »." -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Veuillez remplir vos coordonnées bancaires." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Veuillez saisir vos coordonnées bancaires." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Veuillez virer le montant total sur le compte bancaire suivant :" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -30335,9 +30453,9 @@ msgstr "Veuillez virer le montant total sur le compte bancaire suivant :" msgid "Account holder" msgstr "Titulaire du compte" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -30347,27 +30465,27 @@ msgstr "Titulaire du compte" msgid "Bank" msgstr "Banque" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "IBAN/BIC non valide" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Compte bancaire {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" "Vous pouvez uniquement créer un remboursement par virement bancaire à partir " "d'un paiement existant." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (optionnel)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" "Votre entrée n’était pas valide, veuillez voir ci-dessous pour plus de " @@ -30404,8 +30522,8 @@ msgstr "L'ordre a déjà été annulé." msgid "Currencies do not match." msgstr "Les devises ne correspondent pas." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -30413,8 +30531,8 @@ msgstr "" "Après avoir effectué votre achat, nous vous demanderons de virer l'argent " "sur le compte bancaire suivant, en utilisant un code de référence personnel :" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." @@ -30422,14 +30540,14 @@ msgstr "" "Merci de patienter avant d'effectuer le paiement. Nous vous attribuerons un " "code de référence personnel une fois que vous aurez terminé la commande." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Code de référence (important) :" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -30437,8 +30555,8 @@ msgstr "" "Nous vous assignerons un code de référence personnel à utiliser après avoir " "complété la commande." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." @@ -36364,8 +36482,8 @@ msgid "" "purchased gift cards show up under the orders tab." msgstr "" "Actuellement, seules les cartes-cadeaux résultant de remboursements " -"apparaissent ici. Les cartes-cadeaux achetées apparaissent sous l'onglet « " -"Commandes »." +"apparaissent ici. Les cartes-cadeaux achetées apparaissent sous l'onglet " +"« Commandes »." #: pretix/presale/templates/pretixpresale/organizers/customer_info.html:6 msgid "Account information" @@ -37997,9 +38115,6 @@ msgstr "Kosovo" #~ "Pour commencer à scanner les tickets avec nos applications, créez d'abord " #~ "un code de configuration ici:" -#~ msgid "Create configuration" -#~ msgstr "Créer une configuration" - #~ msgid "Create a new configuration" #~ msgstr "Créer une nouvelle configuration" diff --git a/src/pretix/locale/fr/LC_MESSAGES/djangojs.po b/src/pretix/locale/fr/LC_MESSAGES/djangojs.po index 94fba01829..2fec1cfe7d 100644 --- a/src/pretix/locale/fr/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/fr/LC_MESSAGES/djangojs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: French\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-10-22 16:00+0000\n" "Last-Translator: CVZ-es \n" "Language-Team: French \n" "Language-Team: Galician pretix" @@ -16848,6 +16871,26 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +#, fuzzy +msgid "Confirmation code" +msgstr "Código de confirmación" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +msgid "The confirmation code is incorrect." +msgstr "El código de confirmación que introdujo era incorrecto." + #: pretix/control/forms/organizer.py:93 #, fuzzy msgid "This slug is already in use. Please choose a different one." @@ -17622,7 +17665,7 @@ msgstr "El usuario confirmó el siguiente mensaje: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "La orden ha sido denegada." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "O seu pedido foi cancelado." @@ -17716,12 +17759,12 @@ msgstr "El pedido ha sido marcado como pagado." msgid "The order has been set to require payment before use." msgstr "Se ha creado la orden." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 #, fuzzy msgid "The order has been marked as expired." msgstr "El pedido se ha marcado como caducado." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 #, fuzzy msgid "The order has been marked as paid." msgstr "El pedido ha sido marcado como pagado." @@ -17736,7 +17779,7 @@ msgstr "Se ha borrado la pregunta seleccionada." msgid "The order has been refunded." msgstr "La orden ha sido reembolsada." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 #, fuzzy msgid "The order has been reactivated." msgstr "Se ha creado la orden." @@ -17752,7 +17795,7 @@ msgid "The order requires approval before it can continue to be processed." msgstr "" "La orden requiere aprobación antes que pueda continuar a ser procesada." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 #, fuzzy msgid "The order has been approved." msgstr "La orden ha sido aprobada." @@ -17792,7 +17835,7 @@ msgstr "La cuenta del usuario ha sido cambiada." msgid "The order locale has been changed." msgstr "Se ha cambiado el lugar de la orden." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 #, fuzzy msgid "The invoice has been generated." @@ -17803,12 +17846,12 @@ msgstr "Se ha generado la factura." msgid "The invoice could not be generated." msgstr "Se ha generado la factura." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 #, fuzzy msgid "The invoice has been regenerated." msgstr "Se ha regenerado la factura." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 #, fuzzy msgid "The invoice has been reissued." @@ -19808,8 +19851,8 @@ msgid "Transaction ID" msgstr "Código de transacción" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 #, fuzzy @@ -19969,7 +20012,7 @@ msgstr "Cancelar" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -20966,6 +21009,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 #, fuzzy msgid "Cancel event" msgstr "Clonar evento" @@ -24522,14 +24567,14 @@ msgstr "Detalles del pedido: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 #, fuzzy msgid "Approve" msgstr "Aprobar" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 #, fuzzy msgid "Deny" msgstr "Denegar" @@ -24579,7 +24624,7 @@ msgstr "" "como vencida manualmente." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 #, fuzzy msgid "Refund for overpayment" msgstr "Orden de reembolso" @@ -25387,11 +25432,83 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Reembolso" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 #, fuzzy msgid "Cancel all orders" msgstr "Cancelar orden" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +msgid "If you proceed, the system will do the following:" +msgstr "" +"Si se pone en contacto con nosotros, por favor envíenos el siguiente código:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +msgid "Refunds will not happen automatically." +msgstr "Registrado automáticamente" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +msgid "Inform all customers via email." +msgstr "Enviar vales" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "Iniciar una devolución de %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Sí, cancelar pedido" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -25829,13 +25946,13 @@ msgid "Select action" msgstr "Seleccione el estado" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy msgid "Refund overpaid amount" msgstr "Reembolso del importe total pagado" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -27662,11 +27779,6 @@ msgstr "" "\"CONFIRM_CODE.txt\" con un código de seis caracteres. Por favor, introduzca " "este código aquí para confirmar que ha descargado correctamente el archivo." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -#, fuzzy -msgid "Confirmation code" -msgstr "Código de confirmación" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -29481,7 +29593,7 @@ msgstr "O seu pedido: {code}" msgid "Unknown email renderer." msgstr "Desconocido renderizador de correo electrónico." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 #, fuzzy msgid "You requested an invalid ticket output type." @@ -29544,12 +29656,12 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 #, fuzzy msgid "The comment has been updated." msgstr "El comentario ha sido actualizado." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 #, fuzzy msgid "Could not update the comment." msgstr "No se pudo actualizar el comentario." @@ -29944,19 +30056,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Se ha revocado el acceso a la aplicación seleccionada." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "Non puidemos gardar os teus cambios. Mira abaixo para detalles." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -29970,17 +30082,17 @@ msgid "Unknown order code or not authorized to access this order." msgstr "" "Código de pedido desconocido o no autorizado para acceder a este pedido." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 #, fuzzy msgid "Ticket download is not enabled for this product." msgstr "La descarga de tickets no está habilitada para este producto." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 #, fuzzy msgid "The order has been deleted." msgstr "La orden ha sido eliminada." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 #, fuzzy msgid "" "The order could not be deleted as some constraints (e.g. data created by " @@ -29989,62 +30101,62 @@ msgstr "" "La orden no pudo ser eliminada ya que algunas restricciones (por ejemplo los " "datos creados por los plug-ins) no lo permiten." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 #, fuzzy msgid "Only orders created in test mode can be deleted." msgstr "Solamente ordenes creadas en modo de prueba pueden ser eliminadas." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 #, fuzzy msgid "The order has been denied and is therefore now canceled." msgstr "La orden ha sido denegada y, por lo tanto, se ha cancelado." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 #, fuzzy msgid "This payment has been canceled." msgstr "Este pago ha sido cancelado." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 #, fuzzy msgid "This payment can not be canceled at the moment." msgstr "Este pago no puede ser cancelado en este momento." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 #, fuzzy msgid "The refund has been canceled." msgstr "El reembolso ha sido cancelado." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 #, fuzzy msgid "This refund can not be canceled at the moment." msgstr "Este reembolso no puede ser cancelado en este momento." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 #, fuzzy msgid "The refund has been processed." msgstr "El reembolso ha sido procesado." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 #, fuzzy msgid "This refund can not be processed at the moment." msgstr "Este reembolso no puede ser procesado en este momento." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 #, fuzzy msgid "The refund has been marked as done." msgstr "El reembolso se ha marcado como efectuado." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 #, fuzzy msgid "The request has been removed. If you want, you can now inform the user." msgstr "El dispositivo ha sido verificado y ahora puede ser utilizado." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 #, fuzzy msgid "Your cancellation request" msgstr "Tarifa de cancelación" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -30055,7 +30167,7 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 #, fuzzy msgid "" "The payment has been marked as complete, but we were unable to send a " @@ -30064,29 +30176,29 @@ msgstr "" "El pago se ha marcado como completo, pero no hemos podido enviar un correo " "de confirmación." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 #, fuzzy msgid "The payment has been marked as complete." msgstr "El pago se ha marcado como completo." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 #, fuzzy msgid "This payment can not be confirmed at the moment." msgstr "Este pago no puede ser confirmado por el momento." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy msgid "You entered an order in an event with a different currency." msgstr "Ha introducido una orden que no se ha podido encontrar." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 #, fuzzy msgid "" "You can not refund more than the amount of a payment that is not yet " @@ -30095,7 +30207,7 @@ msgstr "" "Usted no puede reembolsar más de la cantidad de un pago que aún no ha sido " "reembolsado." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 #, fuzzy msgid "" "You selected a partial refund for a payment method that only supports full " @@ -30104,7 +30216,7 @@ msgstr "" "Ha seleccionado un reembolso parcial para una vía de pago que sólo soporta " "reembolsos completos." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, fuzzy, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -30113,12 +30225,12 @@ msgstr "" "Uno de los reembolsos no fue procesado. Usted debe volver a intentar el " "reembolso de una manera diferente. El mensaje de error era: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, fuzzy, python-brace-format msgid "A refund of {} has been processed." msgstr "Se ha procesado un reembolso de {}." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, fuzzy, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -30127,18 +30239,18 @@ msgstr "" "Se ha guardado un reembolso de {}, pero aún no se ha ejecutado " "completamente. Puede marcarlo como completo a continuación." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 #, fuzzy msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "El dispositivo ha sido verificado y ahora puede ser utilizado." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 #, fuzzy msgid "Your gift card code" msgstr "Código de la tarjeta de regalo" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -30151,14 +30263,14 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 #, fuzzy msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "Los reembolsos seleccionados no coinciden con el importe total del reembolso " "seleccionado." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 #, fuzzy msgid "" "The order has been marked as paid, but we were unable to send a confirmation " @@ -30167,12 +30279,12 @@ msgstr "" "El pedido ha sido marcado como pagado, pero no hemos podido enviar un correo " "de confirmación." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 #, fuzzy msgid "The payment has been created successfully." msgstr "El pago ha sido creado con éxito." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -30180,24 +30292,24 @@ msgstr "" "A orde foi cancelada. Podes seleccionar como desexas transferir o diñeiro de " "volta ao usuario." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 #, fuzzy msgid "No VAT ID specified." msgstr "No se especifica el número de IVA." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 #, fuzzy msgid "No country specified." msgstr "No se especifica ningún país." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 #, fuzzy msgid "VAT ID could not be checked since this country is not supported." msgstr "" "No se ha podido verificar el número de identificación a efectos del IVA " "porque se ha especificado un país que no es miembro de la UE." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 #, fuzzy msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " @@ -30207,72 +30319,72 @@ msgstr "" "que el servicio de comprobación del IVA del país no está disponible en la " "actualidad." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 #, fuzzy msgid "This VAT ID is valid." msgstr "Este número de IVA es válido." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 #, fuzzy msgid "Unknown invoice." msgstr "Factura desconocida." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 #, fuzzy msgid "The invoice has already been canceled." msgstr "La factura ya se ha anulado." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 #, fuzzy msgid "The invoice file has already been exported." msgstr "La factura ya se ha anulado." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 #, fuzzy msgid "The invoice file is too old to be regenerated." msgstr "Se ha regenerado la factura." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 #, fuzzy msgid "The invoice has been cleaned of personal data." msgstr "La factura ha sido limpiada de datos personales." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy msgid "The invoice has been scheduled for retransmission." msgstr "La factura ha sido limpiada de datos personales." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 #, fuzzy msgid "The email has been queued to be sent." msgstr "El correo electrónico ha sido puesto en cola para ser enviado." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 #, fuzzy msgid "This invoice has not been found" msgstr "No se ha encontrado esta factura" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 #, fuzzy msgid "The invoice file is no longer stored on the server." msgstr "El archivo de factura ya no se almacena en el servidor." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 #, fuzzy msgid "" "The invoice file has not yet been generated, we will generate it for you " @@ -30281,12 +30393,12 @@ msgstr "" "El archivo de la factura aún no ha sido generado, nosotros lo generaremos " "para usted ahora. Por favor, inténtelo de nuevo en unos segundos." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 #, fuzzy msgid "The payment term has been changed." msgstr "Se ha modificado la condición de pago." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 #, fuzzy msgid "" "We were not able to process the request completely as the server was too " @@ -30295,65 +30407,65 @@ msgstr "" "No pudimos procesar la petición completamente porque el servidor estaba " "demasiado ocupado." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 #, fuzzy msgid "This action is only allowed for pending orders." msgstr "Esta acción sólo se permite para órdenes pendientes." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 #, fuzzy msgid "This action is only allowed for canceled orders." msgstr "Esta acción sólo se permite para órdenes pendientes." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 #, fuzzy msgid "An error occurred. Please see the details below." msgstr "Se ha producido un error. Por favor, vea los detalles a continuación." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 #, fuzzy msgid "The order has been changed and the user has been notified." msgstr "El pedido ha sido cambiado y el usuario ha sido notificado." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 #, fuzzy msgid "The order has been changed." msgstr "El orden ha sido cambiado." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "Tivemos problemas ao procesar a túa entrada. Revisa os erros." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 #, fuzzy msgid "Nothing about the order had to be changed." msgstr "No hubo que cambiar nada en la orden." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 #, fuzzy msgid "We could not send the email. See below for details." msgstr "No pudimos enviar el correo electrónico. Ver abajo para más detalles." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, fuzzy, python-brace-format msgid "Subject: {subject}" msgstr "Asunto: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, fuzzy, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Su mensaje ha sido puesto en cola y será enviado a {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, fuzzy, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "No se pudo enviar correo al siguiente usuario: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -30361,40 +30473,40 @@ msgstr "" "Esta ligazón xa non é válido. Por favor, volva atrás, actualice a páxina e " "ténteo de novo." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 #, fuzzy msgid "There is no order with the given order code." msgstr "No hay ningún pedido con el código de pedido dado." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 #, fuzzy msgid "The selected exporter was not found." msgstr "No se encontró al exportador seleccionado." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 #, fuzzy msgid "There was a problem processing your input. See below for error details." msgstr "" "Hubo un problema procesando su entrada. Vea a continuación los detalles de " "los errores." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, fuzzy, python-brace-format msgid "Export: {title}" msgstr "Fecha de caducidad" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -30402,33 +30514,33 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "Usted no tiene permiso para realizar esta acción." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 #, fuzzy msgid "All orders have been canceled." msgstr "El pedido ha sido cancelado." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 #, fuzzy msgid "Your input was not valid." msgstr "La contraseña que introdujo no era válida, inténtelo de nuevo." @@ -31659,7 +31771,7 @@ msgstr "Diseño de la insignia: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 #, fuzzy @@ -31698,7 +31810,7 @@ msgstr "" "Instale el paquete python 'chardet' para obtener mejores capacidades de " "importación CSV." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 #, fuzzy msgid "" "I have understood that people will pay the ticket price directly to my bank " @@ -31713,37 +31825,37 @@ msgstr "" "manualmente, o regularmente importar un archivo digital del estado de cuenta " "bancario en orden para darle a pretix la información requerida." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 #, fuzzy msgid "Bank account type" msgstr "Tipo de la cuenta bancaria" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 #, fuzzy msgid "SEPA bank account" msgstr "Cuenta de banco SEPA" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 #, fuzzy msgid "Other bank account" msgstr "Otra cuenta bancaria" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 #, fuzzy msgid "Name of account holder" msgstr "Nombre del titular de la cuenta" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 @@ -31751,27 +31863,27 @@ msgstr "" msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 #, fuzzy msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 #, fuzzy msgid "Name of bank" msgstr "Nombre del Banco" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 #, fuzzy msgid "Bank account details" msgstr "Datos de la cuenta bancaria" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 #, fuzzy msgid "" "Include everything else that your customers might need to send you a bank " @@ -31782,7 +31894,7 @@ msgstr "" "pago por transferencia bancaria. Si tienes varios clientes internacionales, " "ellos podrían necesitar tu dirección completa y la del Banco." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 #, fuzzy msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " @@ -31793,43 +31905,43 @@ msgstr "" "favor agregar todo lo que los clientes necesitan para transferir el dinero, " "p. e. números de cuenta, número de ruteo, direcciones, etc." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 #, fuzzy msgid "Do not include hyphens in the payment reference." msgstr "No incluya un hipen en la referencia de pago." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 #, fuzzy msgid "This is required in some countries." msgstr "Esto es obligatorio en algunos países." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 #, fuzzy msgid "Include invoice number in the payment reference." msgstr "No incluya un hipen en la referencia de pago." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 #, fuzzy msgid "Prefix for the payment reference" msgstr "Normativa fiscal para las comisiones de pago" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 #, fuzzy msgid "Additional text to show on pending orders" msgstr "Esta acción sólo se permite para órdenes pendientes." -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 #, fuzzy msgid "IBAN blocklist for refunds" msgstr "Todos los reembolsos abiertos" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -31840,37 +31952,37 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy msgid "Restrict to business customers" msgstr "Cliente de negocios" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 #, fuzzy msgid "Please fill out your bank account details." msgstr "Por favor llene los detalles de su cuenta bancaria." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 #, fuzzy msgid "Please enter your bank account details." msgstr "Por favor ingrese los detalles de su cuenta bancaria." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 #, fuzzy msgid "Please transfer the full amount to the following bank account:" msgstr "Por favor, transfiera el importe total a la siguiente cuenta bancaria:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -31881,9 +31993,9 @@ msgstr "Por favor, transfiera el importe total a la siguiente cuenta bancaria:" msgid "Account holder" msgstr "Titular de la cuenta" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -31894,25 +32006,25 @@ msgstr "Titular de la cuenta" msgid "Bank" msgstr "Banco" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (opcional)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 #, fuzzy msgid "Your input was invalid, please see below for details." msgstr "La contraseña que introdujo no era válida, inténtelo de nuevo." @@ -31952,8 +32064,8 @@ msgstr "O pedido xa foi cancelado." msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 #, fuzzy msgid "" "After completing your purchase, we will ask you to transfer the money to the " @@ -31962,8 +32074,8 @@ msgstr "" "Después de completar su compra, le pediremos que transfiera el dinero a la " "siguiente cuenta bancaria, utilizando un código de referencia personal:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 #, fuzzy msgid "" "Please do not yet start a payment. We'll assign you a personal reference " @@ -31972,15 +32084,15 @@ msgstr "" "Le asignaremos un código de referencia personal para que lo utilice después " "de completar el pedido." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 #, fuzzy msgid "Reference code (important):" msgstr "Código de referencia (importante):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 #, fuzzy msgid "" "We will assign you a personal reference code to use after you completed the " @@ -31989,8 +32101,8 @@ msgstr "" "Le asignaremos un código de referencia personal para que lo utilice después " "de completar el pedido." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 #, fuzzy msgid "" "After completing your purchase, we will ask you to transfer the money to our " diff --git a/src/pretix/locale/gl/LC_MESSAGES/djangojs.po b/src/pretix/locale/gl/LC_MESSAGES/djangojs.po index e83bec39b4..a574d7923e 100644 --- a/src/pretix/locale/gl/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/gl/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2022-02-22 22:00+0000\n" "Last-Translator: Ismael Menéndez Fernández \n" "Language-Team: Galician \n" "Language-Team: Hebrew pretix" @@ -15414,6 +15439,26 @@ msgstr "אם הגדרת טווח תאריכים, אנא הגדר גם תאריך msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "אנא אשר כי ברצונך לבטל את כל התאריכים בסדרה זו של אירועים." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "קוד אישור" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "קוד האישור שהזנת אינו נכון." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "סלאג זה כבר בשימוש. אנא בחר אחר." @@ -16143,7 +16188,7 @@ msgstr "המשתמש אישר את ההודעה הבאה: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "ההזמנה בוטלה (הערה: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "ההזמנה בוטלה." @@ -16227,11 +16272,11 @@ msgstr "ההזמנה הוגדרה כניתנת לשימוש לפני התשלו msgid "The order has been set to require payment before use." msgstr "ההזמנה הוגדרה לדרוש תשלום לפני השימוש." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "ההזמנה סומנה כלא בתוקף." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "ההזמנה סומנה כשולמה." @@ -16243,7 +16288,7 @@ msgstr "בקשת הביטול נמחקה." msgid "The order has been refunded." msgstr "הכסף עבור ההזמנה הוחזר." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "ההזמנה הופעלה מחדש." @@ -16255,7 +16300,7 @@ msgstr "ההזמנה נוצרה." msgid "The order requires approval before it can continue to be processed." msgstr "ההזמנה דורשת אישור לפני שניתן להמשיך לטפל בה." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "ההזמנה אושרה." @@ -16290,7 +16335,7 @@ msgstr "חשבון הלקוח שונה." msgid "The order locale has been changed." msgstr "שפת ההזמנה שונתה." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "חשבונית הופקה." @@ -16301,11 +16346,11 @@ msgstr "חשבונית הופקה." msgid "The invoice could not be generated." msgstr "חשבונית הופקה." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "החשבונית הופקה מחדש." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "החשבונית הונפקה מחדש." @@ -17996,8 +18041,8 @@ msgid "Transaction ID" msgstr "מזהה עסקה" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18153,7 +18198,7 @@ msgstr "ביטול" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19153,6 +19198,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "בטל אירוע" @@ -22328,13 +22375,13 @@ msgstr "פרטי ההזמנה: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "אשר" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "דחה" @@ -22375,7 +22422,7 @@ msgstr "" "מקומות פנויים תוכל לסמן אותה כפקועה ידנית." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "החזר על תשלום יתר" @@ -23106,10 +23153,85 @@ msgstr "" "אין להפעיל פונקציה זו מספר פעמים עבור אותו האירוע, אחרת כל מי שממתין יקבל " "מספר מיילים." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "סכום החזר" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "בטל את כל ההזמנות" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "אם תיצור איתנו קשר, אנא שלח לנו את הקוד הבא:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "טקסט (אם ההזמנה לא תסתיים אוטומטית)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "שלח מידע בדוא\"ל" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "התחל החזר של %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "כן, בטל הזמנה" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -23519,12 +23641,12 @@ msgid "Select action" msgstr "בחר פעולה" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "החזר סכום ששולם ביתר" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "סמן כפג תוקף אם פג הזמן" @@ -25180,10 +25302,6 @@ msgstr "" "בקובץ שהורדת, קיים קובץ טקסט בשם \"CONFIRM_CODE.txt\" המכיל קוד בן שש ספרות. " "הכנס כאן את הקוד הזה כדי לאשר שהורדת את הקובץ בהצלחה." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "קוד אישור" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -26746,7 +26864,7 @@ msgstr "ההזמנה שלך: %(code)s" msgid "Unknown email renderer." msgstr "מעבד הדוא\"ל אינו מוכר." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "ביקשת סוג הדפסה לכרטיס שאינו חוקי." @@ -26800,11 +26918,11 @@ msgstr "" "באופן ספציפי, התוספים הבאים עדיין מכילים נתונים התלויים באירוע זה: " "{plugin_names}" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "התגובה עודכנה." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "לא ניתן היה לעדכן את התגובה." @@ -27184,17 +27302,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "הגישה לאפליקציה שנבחרה בוטלה." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "לא הצלחנו לעבד את הקלט שלך. ראה להלן לפרטים." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "הפעולה \"{label}\" בוצעה בהצלחה ב-{success} מתוך {total} הזמנות." -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -27206,15 +27324,15 @@ msgstr "הפעולה \"{label}\" בוצעה בהצלחה ב-{success} מתוך { msgid "Unknown order code or not authorized to access this order." msgstr "קוד הזמנה לא ידוע או שאין הרשאה לגשת להזמנה זו." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "הורדת כרטיסים אינה זמינה למוצר זה." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "ההזמנה נמחקה." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -27222,51 +27340,51 @@ msgstr "" "לא ניתן היה למחוק את ההזמנה מאחר שמגבלות מסוימות (למשל, נתונים שנוצרו על ידי " "תוספים) לא מאפשרות זאת." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "רק הזמנות שנוצרו במצב בדיקה ניתנות למחיקה." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "ההזמנה נדחתה ולכן בוטלה כעת." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "תשלום זה בוטל." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "לא ניתן לבטל תשלום זה כעת." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "ההחזר בוטל." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "לא ניתן לבטל החזר זה כעת." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "ההחזר בוצע." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "לא ניתן לעבד החזר זה כעת." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "ההחזר סומן כהושלם." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "הבקשה הוסרה. אם ברצונך, תוכל לעדכן כעת את המשתמש." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "בקשת הביטול שלך" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -27282,21 +27400,21 @@ msgstr "" "\n" "צוות {event} שלך" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "התשלום סומן כהושלם, אך לא הצלחנו לשלוח דוא\"ל אישור." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "התשלום סומן כהושלם." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "לא ניתן לאשר תשלום זה כעת." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " @@ -27305,23 +27423,23 @@ msgstr "" "ההחזר נמנע עקב עיבוד החזר נוסף בו-זמנית. נא בדוק את פרטי ההזמנה וודא אם " "ההחזר עדיין נדרש." -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "הכנסת הזמנה באירוע במטבע שונה." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "לא ניתן להחזיר סכום גבוה מסכום התשלום שטרם הוחזר." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "בחרת החזר חלקי עבור אמצעי תשלום התומך בהחזרים מלאים בלבד." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -27330,28 +27448,28 @@ msgstr "" "אחד מההחזרים נכשל בעיבוד. באפשרותך לנסות להחזיר בדרך שונה. הודעת השגיאה " "הייתה: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "החזר של {} בוצע." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "החזר של {} נשמר אך טרם הושלם. ניתן לסמן אותו כהושלם למטה." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "כרטיס מתנה חדש נוצר. כעת תוכל לשלוח למשתמש את קוד כרטיס המתנה שלו." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "קוד כרטיס המתנה שלך" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -27372,207 +27490,207 @@ msgstr "" "\n" "צוות {event} שלך" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "ההחזרים שבחרת אינם תואמים לסכום ההחזר הכולל שנבחר." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "ההזמנה סומנה כשולמה, אך לא הצלחנו לשלוח דוא\"ל אישור." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "התשלום נוצר בהצלחה." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "ההזמנה בוטלה. כעת תוכל לבחור כיצד להעביר את הכסף למשתמש." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "לא צוינה מזהה מע\"מ." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "לא צוינה מדינה." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "לא ניתן לבדוק מזהה מע\"מ כיוון שמדינה זו אינה נתמכת." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" "לא ניתן לבדוק את מזהה המע\"מ, כי שירות בדיקת המע\"מ של המדינה אינו זמין כעת." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "מזהה מע\"מ זה תקף." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "חשבונית לא ידועה." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "לא ניתן לשנות חשבוניות לאחר יצירתן." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 #, fuzzy #| msgid "Invoices may not be changed after they are created." msgid "Invoices may not be changed after they are transmitted." msgstr "לא ניתן לשנות חשבוניות לאחר יצירתן." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "החשבונית כבר בוטלה." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "קובץ החשבונית כבר יוצא." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "קובץ החשבונית ישן מדי כדי ליצור אותו מחדש." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "הנתונים האישיים הוסרו מהחשבונית." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "הנתונים האישיים הוסרו מהחשבונית." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "המייל נוסף לתור לשליחה." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "חשבונית זו לא נמצאה." -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "קובץ החשבונית כבר לא מאוחסן בשרת." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" "קובץ החשבונית טרם נוצר, ניצור אותו עבורך כעת. אנא נסה שוב בעוד מספר שניות." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "תנאי התשלום שונו." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "לא הצלחנו לעבד את הבקשה במלואה כי השרת היה עמוס מדי." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "פעולה זו מותרת רק להזמנות שממתינות." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "פעולה זו מותרת רק להזמנות שבוטלו." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "אירעה שגיאה. אנא עיין בפרטים למטה." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "ההזמנה שונתה והמשתמש עודכן." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "ההזמנה שונתה." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "נתקלנו בקשיים בעיבוד הקלט שלך. אנא בדוק את השגיאות למטה." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "לא היה צורך לשנות דבר בהזמנה." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "לא הצלחנו לשלוח את הדוא\"ל. ראה פרטים למטה." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "נושא: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "ההודעה שלך נכנסה לתור ותישלח אל {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "שליחת הדוא\"ל למשתמש הבא נכשלה: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "קישור זה אינו בתוקף עוד. אנא חזור אחורה, רענן את הדף ונסה שוב." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "לא קיימת הזמנה עם קוד ההזמנה שסופק." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "היצואן שנבחר לא נמצא." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "הייתה בעיה בעיבוד הקלט שלך. ראה פרטי שגיאה למטה." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "לוח הזמנים של היצוא נשמר. היצוא הבא צפוי להתחיל בערך ב-{datetime}." -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "לוח הזמנים של היצוא נשמר, אך אין יצוא נוסף מתוכנן." -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "יצוא: {title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -27583,7 +27701,7 @@ msgstr "" "\n" "מצורף לדוא\"ל זה דוח מתוזמן חדש עבור {name}." -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -27591,7 +27709,7 @@ msgid "" "therefore you cannot schedule it." msgstr "אין לך הרשאה מספקת לביצוע ייצוא זה." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " @@ -27600,11 +27718,11 @@ msgstr "" "היצוא שלך נכנס לתור ויתחיל בקרוב. התוצאות יישלחו בדוא\"ל. תלוי בעומס המערכת, " "סוג וגודל היצוא, זה עשוי להימשך מספר דקות." -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "כל ההזמנות בוטלו." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " @@ -27613,7 +27731,7 @@ msgstr "" "ההזמנות בוטלו. אירעה שגיאה ב-{count} הזמנות, אנא בדוק את כל ההזמנות שטרם " "בוטלו." -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "הקלט שלך לא היה תקין." @@ -28678,7 +28796,7 @@ msgstr "פריסת תג מזהה: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -28711,7 +28829,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "התקן את חבילת הפייתון 'chardet' עבור יכולות ייבוא CSV טובות יותר." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -28723,23 +28841,23 @@ msgstr "" "אוטומטית אילו תשלומים התקבלו. לכן, אסמן תשלומים כהושלמו ידנית, או שאייבא " "בקביעות דוח בנק דיגיטלי כדי לתת ל-pretix את המידע הדרוש." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "סוג חשבון בנק" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "חשבון בנק SEPA" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "חשבון בנק אחר" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "שם בעל החשבון" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -28747,35 +28865,35 @@ msgstr "" "שימו לב: תווים מיוחדים שאינם אותיות, מספרים וכמה סימני פיסוק יכולים לגרום " "לבעיות עם חלק מהבנקים." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "שם הבנק" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "פרטי חשבון בנק" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -28785,7 +28903,7 @@ msgstr "" "יש לך לקוחות בינלאומיים רבים, ייתכן שהם יזדקקו לכתובת המלאה שלך ולכתובת " "המלאה של הבנק." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -28794,37 +28912,37 @@ msgstr "" "עבור חשבונות SEPA, ניתן להשאיר זאת ריק. אחרת, אנא הוסף את כל מה שלקוחותיך " "צריכים כדי להעביר את הכסף, למשל מספרי חשבון, מספרי ניתוב, כתובות, וכד'." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "אל תכלול מקפים בהפניית התשלום." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "זה נדרש בחלק מהמדינות." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "כלול את מספר החשבונית בהפניית התשלום." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "קידומת להפניית התשלום" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "טקסט נוסף להצגה בהזמנות ממתינות" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "טקסט זה יוצג בעמוד אישור ההזמנה להזמנות ממתינות בנוסף לטקסט הסטנדרטי." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "רשימת חסימה (בלוקליסט) של IBAN להחזרי כספים" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -28841,11 +28959,11 @@ msgstr "" "ההשוואה, כך שתוכלו, למשל, לחסום DE0012345 כדי לחסום את כל ה-IBAN הגרמניים של " "בנקים עם מזהה המתחיל ב-12345." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "הגבל ללקוחות עסקיים בלבד" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -28853,23 +28971,23 @@ msgstr "" "אפשר לבחור בספק תשלום זה רק ללקוחות שמזינים כתובת חשבונית ובוחרים 'לקוח עסקי " "או מוסדי'." -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "אנא מלא את פרטי חשבון הבנק שלך." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "אנא הזן את פרטי חשבון הבנק שלך." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "אנא העבר/י את הסכום המלא לחשבון הבנק הבא:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -28879,9 +28997,9 @@ msgstr "אנא העבר/י את הסכום המלא לחשבון הבנק הבא msgid "Account holder" msgstr "שם בעל החשבון" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -28891,25 +29009,25 @@ msgstr "שם בעל החשבון" msgid "Bank" msgstr "בנק" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "IBAN/BIC לא חוקי" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "חשבון בנק {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "ניתן ליצור החזר תשלום בהעברה בנקאית רק מתשלום קיים." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (אופציונלי)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "הקלט שלך לא תקין, אנא ראה פרטים להלן." @@ -28946,8 +29064,8 @@ msgstr "ההזמנה כבר בוטלה." msgid "Currencies do not match." msgstr "המטבעות אינם תואמים." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -28955,29 +29073,29 @@ msgstr "" "לאחר השלמת הרכישה, נבקש ממך להעביר את התשלום לחשבון הבנק הבא, תוך שימוש בקוד " "הפניה אישי:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" "אנא אל תתחיל/י תשלום עדיין. אנו נעניק לך קוד הפניה אישי לאחר השלמת ההזמנה." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "קוד הפניה (חשוב):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "נעניק לך קוד הפניה אישי לשימוש לאחר השלמת ההזמנה." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/he/LC_MESSAGES/djangojs.po b/src/pretix/locale/he/LC_MESSAGES/djangojs.po index e4daa84fea..ad3c5ee4df 100644 --- a/src/pretix/locale/he/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/he/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2021-09-24 13:54+0000\n" "Last-Translator: ofirtro \n" "Language-Team: Hebrew \n" "Language-Team: Croatian pretix" @@ -14857,6 +14882,26 @@ msgstr "Ako postavljate vremenski raspon, molimo postavite i početak i kraj." msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Kod potvrde" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Uneseni potvrdni kod nije točan." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Ovaj slug se već koristi. Molimo odaberite drugi." @@ -15536,7 +15581,7 @@ msgstr "Korisnik je potvrdio sljedeću poruku: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Narudžba je otkazana (komentar: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Narudžba je otkazana." @@ -15620,11 +15665,11 @@ msgstr "Narudžba je postavljena da bude upotrebljiva prije plaćanja." msgid "The order has been set to require payment before use." msgstr "Narudžba je postavljena da zahtijeva plaćanje prije upotrebe." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "Narudžba je označena kao zastarjela." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "Narudžba je označena kao plaćena." @@ -15636,7 +15681,7 @@ msgstr "Zahtjev za otkazivanje je izbrisan." msgid "The order has been refunded." msgstr "Narudžba je refundirana." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "Narudžba je ponovno aktivirana." @@ -15649,7 +15694,7 @@ msgid "The order requires approval before it can continue to be processed." msgstr "" "Narudžba zahtijeva odobrenje prije nego što se može nastaviti s obradom." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "Narudžba je odobrena." @@ -15684,7 +15729,7 @@ msgstr "Korisnički profil je promijenjen." msgid "The order locale has been changed." msgstr "Jezična postavka narudžbe je promijenjena." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Račun je generiran." @@ -15695,11 +15740,11 @@ msgstr "Račun je generiran." msgid "The invoice could not be generated." msgstr "Račun je generiran." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Račun je ponovno generiran." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Račun je ponovno izdan." @@ -17360,8 +17405,8 @@ msgid "Transaction ID" msgstr "ID transakcije" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -17517,7 +17562,7 @@ msgstr "Otkaži" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -18409,6 +18454,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Otkaži događaj" @@ -21340,13 +21387,13 @@ msgstr "Detalji narudžbe: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Odobri" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Odbij" @@ -21385,7 +21432,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Povrat za preplatu" @@ -22082,10 +22129,87 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Iznos povrata" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Otkaži sve narudžbe" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Ako nas kontaktirate, pošaljite nam sljedeći kod:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "Tekst (ako narudžba neće automatski isteći)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Pošalji informacije putem e-pošte" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Pokreni povrat novca od %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Da, otkaži narudžbu" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -22480,12 +22604,12 @@ msgid "Select action" msgstr "Odaberi radnju" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "Povrat preplaćenog iznosa" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "Označi kao zastarjelo ako je kašnjeno" @@ -24021,10 +24145,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Kod potvrde" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -25489,7 +25609,7 @@ msgstr "Vaša narudžba: %(code)s" msgid "Unknown email renderer." msgstr "Nepoznati renderer e-pošte." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Zatražili ste nevažeći tip izlaza za kartu." @@ -25537,11 +25657,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Komentar je ažuriran." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Nije moguće ažurirati komentar." @@ -25877,19 +25997,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Pristup odabranoj aplikaciji je opozvan." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "Nismo mogli spremiti vaše promjene. Pogledajte detalje u nastavku." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -25901,65 +26021,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "Nepoznati kôd narudžbe ili nemate dopuštenje za pristup ovoj narudžbi." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Preuzimanje karata nije omogućeno za ovaj proizvod." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "Narudžba je izbrisana." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "Samo narudžbe kreirane u testnom modu mogu biti izbrisane." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "Narudžba je odbijena i stoga je sada otkazana." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Ovo plaćanje je otkazano." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Ovo plaćanje trenutno ne može biti otkazano." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "Povrat novca je otkazan." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Ovaj povrat novca trenutno ne može biti otkazan." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "Povrat novca je obrađen." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Ovaj povrat novca trenutno ne može biti obrađen." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "Povrat novca je označen kao obavljen." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Vaš zahtjev za otkazivanje" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25970,72 +26090,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "Plaćanje je označeno kao dovršeno." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Ovo plaćanje trenutno ne može biti potvrđeno." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "Unijeli ste narudžbu u događaju s drugom valutom." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "Povrat novca od {} je obrađen." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Vaš kod poklon kartice" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -26048,205 +26168,205 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "Plaćanje je uspješno kreirano." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Nije naveden VAT ID." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Nije navedena zemlja." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "PDV ID nije mogao biti provjeren jer ova zemlja nije podržana." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Ovaj VAT ID je valjan." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Nepoznati račun." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "Računi se ne mogu mijenjati nakon što su kreirani." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 #, fuzzy #| msgid "Invoices may not be changed after they are created." msgid "Invoices may not be changed after they are transmitted." msgstr "Računi se ne mogu mijenjati nakon što su kreirani." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "Račun je već otkazan." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "Datoteka računa je već izvezena." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "Datoteka računa je prestara da bi se ponovno generirala." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "Račun je očišćen od osobnih podataka." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "Račun je očišćen od osobnih podataka." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "E-pošta je stavljena u red za slanje." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Ovaj račun nije pronađen" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Datoteka računa više nije pohranjena na poslužitelju." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Rok plaćanja je promijenjen." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Ova radnja je dopuštena samo za narudžbe na čekanju." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Ova radnja je dopuštena samo za otkazane narudžbe." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Došlo je do greške. Pogledajte detalje u nastavku." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "Narudžba je promijenjena i korisnik je obaviješten." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "Narudžba je promijenjena." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Ništa u narudžbi nije trebalo biti promijenjeno." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "Nismo mogli poslati e-poštu. Pogledajte detalje u nastavku." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Predmet: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Vaša poruka je stavljena u red i bit će poslana na {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Neuspješno slanje e-pošte sljedećem korisniku: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Ne postoji narudžba s navedenim kodom narudžbe." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "Odabrani izvoznik nije pronađen." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "Vaš raspored izvoza je spremljen, ali nije planiran sljedeći izvoz." -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "Izvoz: {title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -26254,7 +26374,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -26262,25 +26382,25 @@ msgid "" "therefore you cannot schedule it." msgstr "Nemate dovoljno dozvola za izvršavanje ovog izvoza." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Sve narudžbe su otkazane." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "Vaš unos nije bio valjan." @@ -27319,7 +27439,7 @@ msgstr "Izgled značke: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -27355,7 +27475,7 @@ msgid "" msgstr "" "Instalirajte Python paket 'chardet' za bolje mogućnosti uvoza CSV datoteka." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -27364,101 +27484,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Vrsta bankovnog računa" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "SEPA bankovni račun" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Drugi bankovni račun" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Ime vlasnika računa" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Naziv banke" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Detalji bankovnog računa" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Nemojte uključivati crtice u referencu plaćanja." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Ovo je potrebno u nekim zemljama." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Uključite broj računa u referencu plaćanja." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Prefiks za referencu plaćanja" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Dodatni tekst za prikaz na narudžbama na čekanju" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "IBAN blocklista za povrate" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -27469,33 +27589,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Ograniči na poslovne korisnike" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Molimo ispunite podatke o svom bankovnom računu." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Molimo unesite podatke o svom bankovnom računu." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Molimo prenesite cijeli iznos na sljedeći bankovni račun:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -27505,9 +27625,9 @@ msgstr "Molimo prenesite cijeli iznos na sljedeći bankovni račun:" msgid "Account holder" msgstr "Vlasnik računa" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -27517,26 +27637,26 @@ msgstr "Vlasnik računa" msgid "Bank" msgstr "Banka" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "Nevažeći IBAN/BIC" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Bankovni račun {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" "Možete kreirati povrat bankovnim transferom samo iz postojećeg plaćanja." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (opcionalno)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "Vaš unos bio je nevažeći, molimo pogledajte detalje u nastavku." @@ -27571,8 +27691,8 @@ msgstr "Narudžba je već otkazana." msgid "Currencies do not match." msgstr "Valute se ne podudaraju." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -27580,21 +27700,21 @@ msgstr "" "Nakon dovršetka kupnje, zamolit ćemo vas da novac prenesete na sljedeći " "bankovni račun koristeći osobni referentni kod:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Referentni kod (važno):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -27602,8 +27722,8 @@ msgstr "" "Dodijelit ćemo vam osobni referentni kod za korištenje nakon što dovršite " "narudžbu." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/hr/LC_MESSAGES/djangojs.po b/src/pretix/locale/hr/LC_MESSAGES/djangojs.po index 6403092074..f7a21cc172 100644 --- a/src/pretix/locale/hr/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/hr/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-03-16 10:17+0000\n" "Last-Translator: Robert Rigo \n" "Language-Team: Croatian \n" "Language-Team: Hungarian pretix" @@ -14837,6 +14862,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -15514,7 +15557,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "A kiválasztott \"{seat}\" ülés nem elérhető." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "A megrendelés sztornózva lett." @@ -15602,11 +15645,11 @@ msgstr "A kiválasztott \"{seat}\" ülés nem elérhető." msgid "The order has been set to require payment before use." msgstr "A kiválasztott \"{seat}\" ülés nem elérhető." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -15620,7 +15663,7 @@ msgstr "A kiválasztott \"{seat}\" ülés nem elérhető." msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 #, fuzzy #| msgid "The selected seat \"{seat}\" is not available." msgid "The order has been reactivated." @@ -15634,7 +15677,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -15672,7 +15715,7 @@ msgstr "A kiválasztott \"{seat}\" ülés nem elérhető." msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -15683,11 +15726,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "A kiválasztott \"{seat}\" ülés nem elérhető." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -17489,8 +17532,8 @@ msgid "Transaction ID" msgstr "Kifizetett megrendelések" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -17644,7 +17687,7 @@ msgstr "Lemondás" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -18530,6 +18573,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Esemény lemondása" @@ -21486,13 +21531,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -21533,7 +21578,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -22229,10 +22274,78 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Visszatérített összeg" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Igen, le szeretném mondani a rendelést" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -22627,12 +22740,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -24195,10 +24308,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -25670,7 +25779,7 @@ msgstr "{} rendeléseid" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -25718,11 +25827,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -26060,19 +26169,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We successfully received your payment. See below for details." msgid "We could not process your input. See below for details." msgstr "Megkaptuk a befizetésed, lásd a részleteket lejjebb." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -26084,65 +26193,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -26153,72 +26262,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -26231,205 +26340,205 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 #, fuzzy #| msgid "The selected seat \"{seat}\" is not available." msgid "The invoice file has already been exported." msgstr "A kiválasztott \"{seat}\" ülés nem elérhető." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 #, fuzzy #| msgid "The selected seat \"{seat}\" is not available." msgid "The invoice file is too old to be regenerated." msgstr "A kiválasztott \"{seat}\" ülés nem elérhető." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -26437,31 +26546,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -27571,7 +27680,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -27604,7 +27713,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -27613,101 +27722,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -27718,35 +27827,35 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy #| msgid "Limit to events" msgid "Restrict to business customers" msgstr "Események limitje" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -27756,9 +27865,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -27768,25 +27877,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -27823,35 +27932,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/hu/LC_MESSAGES/djangojs.po b/src/pretix/locale/hu/LC_MESSAGES/djangojs.po index 43ebd19c0b..89142f3bcf 100644 --- a/src/pretix/locale/hu/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/hu/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2024-11-28 06:00+0000\n" "Last-Translator: Patrick Chilton \n" "Language-Team: Hungarian \n" "Language-Team: Indonesian pretix" @@ -16179,6 +16204,26 @@ msgstr "" "Harap konfirmasi bahwa kamu ingin membatalkan SEMUA tanggal dalam rangkaian " "acara ini." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Kode konfirmasi" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Kode konfirmasi yang kamu masukkan salah." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Slug ini sudah digunakan. Silakan pilih yang lain." @@ -16949,7 +16994,7 @@ msgstr "Pengguna mengonfirmasi pesan berikut: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Pesanan telah dibatalkan (komentar: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Pesanan telah dibatalkan." @@ -17036,11 +17081,11 @@ msgstr "Pesanan telah ditetapkan untuk dapat digunakan sebelum dibayar." msgid "The order has been set to require payment before use." msgstr "Pesanan telah diatur untuk meminta pembayaran sebelum digunakan." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "Pesanan telah ditandai sebagai kedaluwarsa." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "Pesanan telah ditandai sebagai dibayar." @@ -17052,7 +17097,7 @@ msgstr "Permintaan pembatalan telah dihapus." msgid "The order has been refunded." msgstr "Pesanan telah dikembalikan." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "Pesanan telah diaktifkan kembali." @@ -17064,7 +17109,7 @@ msgstr "Pesanan telah dibuat." msgid "The order requires approval before it can continue to be processed." msgstr "Pesanan memerlukan persetujuan sebelum dapat terus diproses." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "Pesanan telah disetujui." @@ -17103,7 +17148,7 @@ msgstr "Akun pelanggan telah diubah." msgid "The order locale has been changed." msgstr "Lokal pesanan telah diubah." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Faktur telah dibuat." @@ -17114,11 +17159,11 @@ msgstr "Faktur telah dibuat." msgid "The invoice could not be generated." msgstr "Faktur telah dibuat." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Faktur telah dibuat ulang." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Faktur telah diterbitkan kembali." @@ -18889,8 +18934,8 @@ msgid "Transaction ID" msgstr "ID transaksi" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -19045,7 +19090,7 @@ msgstr "Membatalkan" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -20073,6 +20118,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Batalkan acara" @@ -23428,13 +23475,13 @@ msgstr "Detail pesanan: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Menyetujui" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Membantah" @@ -23477,7 +23524,7 @@ msgstr "" "berlakunya secara manual." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Pengembalian dana untuk kelebihan pembayaran" @@ -24248,10 +24295,83 @@ msgstr "" "Anda tidak boleh menjalankan fungsi ini beberapa kali untuk acara yang sama, " "atau semua orang di daftar tunggu akan mendapatkan banyak email." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Jumlah pengembalian uang" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Batalkan semua pesanan" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Jika kamu menghubungi kami, kirimkan kode berikut kepada kami:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "SMS (jika pesanan tidak akan kedaluwarsa secara otomatis)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Kirim informasi melalui email" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Mulai pengembalian dana sebesar %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Ya, batalkan pesanan" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24667,14 +24787,14 @@ msgid "Select action" msgstr "Pilih tindakan" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy #| msgid "Refund full paid amount" msgid "Refund overpaid amount" msgstr "Mengembalikan jumlah yang telah dibayar penuh" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "Tandai sebagai kedaluwarsa jika sudah lewat waktu" @@ -26447,10 +26567,6 @@ msgstr "" "dengan kode enam karakter. Silakan masukkan kode ini di sini untuk " "mengonfirmasi bahwa kamu berhasil mengunduh file." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Kode konfirmasi" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -28089,7 +28205,7 @@ msgstr "Pesanan Anda: %(code)s" msgid "Unknown email renderer." msgstr "Penyaji email tidak dikenal." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Anda meminta jenis keluaran tiket yang tidak valid." @@ -28146,11 +28262,11 @@ msgstr "" "Secara khusus, plugin berikut masih berisi data yang bergantung pada " "peristiwa ini: {plugin_names}" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Komentar telah diperbarui." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Tidak dapat memperbarui komentar." @@ -28547,20 +28663,20 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Akses untuk aplikasi yang dipilih telah dicabut." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "" "Kami tidak dapat menyimpan perubahan Anda. Lihat di bawah untuk detailnya." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -28574,15 +28690,15 @@ msgstr "" "Kode pesanan tidak diketahui atau tidak diizinkan untuk mengakses pesanan " "ini." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Pengunduhan tiket tidak diaktifkan untuk produk ini." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "Pesanan telah dihapus." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -28590,53 +28706,53 @@ msgstr "" "Pesanan tidak dapat dihapus karena beberapa batasan (misalnya data yang " "dibuat oleh plugin) tidak mengizinkannya." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "Hanya pesanan yang dibuat dalam mode uji coba yang dapat dihapus." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "Pesanan telah ditolak dan oleh karena itu sekarang dibatalkan." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Pembayaran ini telah dibatalkan." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Pembayaran ini tidak dapat dibatalkan saat ini." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "Pengembalian dana telah dibatalkan." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Pengembalian dana ini tidak dapat dibatalkan saat ini." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "Pengembalian dana telah diproses." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Pengembalian dana ini tidak dapat diproses saat ini." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "Pengembalian dana telah ditandai sebagai selesai." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" "Permintaan tersebut telah dihapus. Jika mau, kini kamu dapat memberi tahu " "pengguna." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Permintaan pembatalan Anda" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -28653,7 +28769,7 @@ msgstr "" "\n" "Tim {event} Anda" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -28661,28 +28777,28 @@ msgstr "" "Pembayaran telah ditandai selesai, namun kami tidak dapat mengirimkan email " "konfirmasi." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "Pembayaran telah ditandai selesai." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Pembayaran ini tidak dapat dikonfirmasi saat ini." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You entered an order that could not be found." msgid "You entered an order in an event with a different currency." msgstr "Anda memasukkan pesanan yang tidak dapat ditemukan." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." @@ -28690,7 +28806,7 @@ msgstr "" "Anda tidak dapat mengembalikan dana lebih dari jumlah pembayaran yang belum " "dikembalikan." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -28698,7 +28814,7 @@ msgstr "" "Anda memilih pengembalian dana sebagian untuk metode pembayaran yang hanya " "mendukung pengembalian dana penuh." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -28707,12 +28823,12 @@ msgstr "" "Salah satu pengembalian dana gagal diproses. Kamu harus mencoba kembali " "mengembalikan dana dengan cara yang berbeda. Pesan kesalahannya adalah: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "Pengembalian dana sebesar {} telah diproses." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -28721,18 +28837,18 @@ msgstr "" "Pengembalian dana sebesar {} telah disimpan, namun belum sepenuhnya " "dijalankan. Kamu dapat menandainya sebagai selesai di bawah." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" "Kartu hadiah baru telah dibuat. Kamu sekarang dapat mengirimkan kode kartu " "hadiahnya kepada pengguna." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Kode kartu hadiah Anda" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -28753,14 +28869,14 @@ msgstr "" "\n" "Tim {event} Anda" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "Pengembalian dana yang kamu pilih tidak sesuai dengan jumlah total " "pengembalian dana yang dipilih.Pengembalian dana yang kamu pilih tidak " "sesuai dengan jumlah total pengembalian dana yang dipilih." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -28768,11 +28884,11 @@ msgstr "" "Pesanan telah ditandai sebagai telah dibayar, namun kami tidak dapat " "mengirimkan email konfirmasi." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "Pembayaran telah berhasil dibuat." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -28780,19 +28896,19 @@ msgstr "" "Pesanan telah dibatalkan. Kamu sekarang dapat memilih bagaimana kamu ingin " "mentransfer uang kembali ke pengguna." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Tidak ada ID PPN yang ditentukan." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Tidak ada negara yang ditentukan." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "ID PPN tidak dapat diperiksa karena negara ini tidak didukung." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -28800,66 +28916,66 @@ msgstr "" "ID PPN tidak dapat diperiksa karena layanan pengecekan PPN negara tersebut " "saat ini tidak tersedia." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "ID PPN ini valid." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Faktur tidak diketahui." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "Faktur tidak dapat diubah setelah dibuat." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 #, fuzzy #| msgid "Invoices may not be changed after they are created." msgid "Invoices may not be changed after they are transmitted." msgstr "Faktur tidak dapat diubah setelah dibuat." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "Faktur telah dibatalkan." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "File faktur telah diekspor." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "File faktur terlalu tua untuk dibuat ulang." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "Faktur telah dibersihkan dari data pribadi." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "Faktur telah dibersihkan dari data pribadi." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "Email telah diantri untuk dikirim." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Faktur ini belum ditemukan" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "File faktur tidak lagi disimpan di server." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -28867,39 +28983,39 @@ msgstr "" "File faktur belum dibuat, kami akan membuatkannya untuk kamu sekarang. " "Silakan coba lagi dalam beberapa detik." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Jangka waktu pembayaran telah diubah." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" "Kami tidak dapat memproses permintaan sepenuhnya karena server terlalu sibuk." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Tindakan ini hanya diperbolehkan untuk pending order." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Tindakan ini hanya diperbolehkan untuk pesanan yang dibatalkan." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Terjadi kesalahan. Silakan lihat detailnya di bawah ini." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "Urutan telah diubah dan pengguna telah diberitahu." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "Urutannya telah diubah." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." @@ -28907,31 +29023,31 @@ msgstr "" "Kami mengalami kesulitan memproses masukan Anda. Harap tinjau kesalahan di " "bawah ini." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Tidak ada pesanan yang perlu diubah." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "Kami tidak dapat mengirim email. Lihat di bawah untuk detailnya." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Subjek: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Pesan kamu telah dimasukkan ke dalam antrean dan akan dikirim ke {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Gagal mengirim email ke pengguna berikut: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -28939,21 +29055,21 @@ msgstr "" "Tautan ini tidak lagi valid. Silakan kembali, segarkan halaman, dan coba " "lagi." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Tidak ada pesanan dengan kode pesanan yang diberikan." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "Eksportir yang dipilih tidak ditemukan." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" "Ada masalah saat memproses masukan Anda. Lihat di bawah untuk detail " "kesalahan." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " @@ -28962,17 +29078,17 @@ msgstr "" "Jadwal ekspor kamu telah disimpan. Ekspor berikutnya akan dimulai sekitar " "{datetime}." -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" "Jadwal ekspor kamu telah disimpan, namun tidak ada rencana ekspor berikutnya." -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "Ekspor: {title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -28984,7 +29100,7 @@ msgstr "" "terlampir pada email ini, kamu dapat menemukan laporan terjadwal baru untuk " "{name}." -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -28992,7 +29108,7 @@ msgid "" "therefore you cannot schedule it." msgstr "Anda tidak memiliki izin yang memadai untuk melakukan ekspor ini." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " @@ -29002,11 +29118,11 @@ msgstr "" "melalui email. Tergantung pada beban sistem dan jenis serta ukuran ekspor, " "proses ini mungkin memerlukan waktu beberapa menit." -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Semua pesanan telah dibatalkan." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " @@ -29015,7 +29131,7 @@ msgstr "" "Pesanan telah dibatalkan. Terjadi kesalahan pada {count} pesanan, harap " "periksa semua pesanan yang belum dibatalkan." -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "Masukan kamu tidak valid." @@ -30182,7 +30298,7 @@ msgstr "Tata letak lencana: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -30218,7 +30334,7 @@ msgid "" msgstr "" "Instal paket python 'chardet' untuk kemampuan impor CSV yang lebih baik." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -30232,23 +30348,23 @@ msgstr "" "selesai secara manual, atau secara teratur mengimpor laporan bank digital " "untuk memberikan informasi yang diperlukan kepada pretix." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Jenis rekening bank" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "Rekening bank SEPA" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Rekening bank lain" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Nama pemegang rekening" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -30256,35 +30372,35 @@ msgstr "" "Harap diperhatikan: karakter khusus selain huruf, angka, dan beberapa tanda " "baca dapat menyebabkan masalah pada beberapa bank." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Nama Bank" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Detail rekening bank" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -30295,7 +30411,7 @@ msgstr "" "internasional, mereka mungkin memerlukan alamat lengkap dan alamat lengkap " "bank Anda." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -30305,27 +30421,27 @@ msgstr "" "tambahkan semua yang dibutuhkan pelanggan kamu untuk mentransfer uang, mis. " "nomor rekening, nomor perutean, alamat, dll." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Jangan sertakan tanda hubung dalam referensi pembayaran." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Hal ini diwajibkan di beberapa negara." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Cantumkan nomor invoice pada referensi pembayaran." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Awalan untuk referensi pembayaran" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Teks tambahan untuk ditampilkan pada pending order" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -30333,11 +30449,11 @@ msgstr "" "Teks ini akan ditampilkan pada halaman konfirmasi pesanan untuk pesanan yang " "tertunda selain teks standar." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "Daftar blokir IBAN untuk pengembalian dana" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 #, fuzzy #| msgid "" #| "Put one IBAN or IBAN prefix per line. The system will not attempt to send " @@ -30360,11 +30476,11 @@ msgstr "" "pihak ketiga. Kamu juga dapat mencantumkan kode negara seperti \"GB\" jika " "kamu tidak ingin mengirim pengembalian dana ke IBAN dari negara tertentu." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Batasi untuk pelanggan bisnis" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -30372,23 +30488,23 @@ msgstr "" "Hanya izinkan pemilihan penyedia pembayaran ini untuk pelanggan yang " "memasukkan alamat faktur dan memilih \"Pelanggan bisnis atau institusi\"." -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Silakan isi detail rekening bank Anda." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Silakan masukkan detail rekening bank Anda." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Silakan transfer seluruh jumlah ke rekening bank berikut:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -30398,9 +30514,9 @@ msgstr "Silakan transfer seluruh jumlah ke rekening bank berikut:" msgid "Account holder" msgstr "Pemilik akun" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -30410,26 +30526,26 @@ msgstr "Pemilik akun" msgid "Bank" msgstr "Bank" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "IBAN/BIC tidak valid" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Rekening bank {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" "Hanya dapat membuat pengembalian dana transfer bank dari pembayaran yang ada." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (opsional)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "Masukan kamu tidak valid, silakan lihat di bawah untuk detailnya." @@ -30466,8 +30582,8 @@ msgstr "Pesanan telah dibatalkan." msgid "Currencies do not match." msgstr "Mata uang tidak cocok." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -30476,8 +30592,8 @@ msgstr "" "mentransfer uang ke rekening bank berikut, menggunakan kode referensi " "pribadi:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 #, fuzzy #| msgid "" #| "We will assign you a personal reference code to use after you completed " @@ -30489,14 +30605,14 @@ msgstr "" "Kami akan memberi Anda kode referensi pribadi untuk digunakan setelah Anda " "menyelesaikan pesanan." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Kode referensi (penting):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -30504,8 +30620,8 @@ msgstr "" "Kami akan memberi kamu kode referensi pribadi untuk digunakan setelah kamu " "menyelesaikan pesanan." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 #, fuzzy #| msgid "" #| "After completing your purchase, we will ask you to transfer the money to " diff --git a/src/pretix/locale/id/LC_MESSAGES/djangojs.po b/src/pretix/locale/id/LC_MESSAGES/djangojs.po index a6122db4b2..dab9dd2b37 100644 --- a/src/pretix/locale/id/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/id/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2023-09-20 14:01+0000\n" "Last-Translator: Mahdia Aliyy \n" "Language-Team: Indonesian \n" "Language-Team: Italian pretix" @@ -15623,6 +15646,26 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Il codice di conferma inserito non è corretto." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Questo nome è già stato utilizzato. Scegli un nome differente." @@ -16317,7 +16360,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "L'ordine è stato annullato (commento: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -16403,11 +16446,11 @@ msgid "The order has been set to require payment before use." msgstr "" "L'ordine è stato impostato per richiedere il pagamento prima dell'utilizzo." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -16419,7 +16462,7 @@ msgstr "La richiesta di cancellazione è stata cancellata." msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "L'ordine è stato riattivato." @@ -16431,7 +16474,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -16467,7 +16510,7 @@ msgstr "La data dell'evento è stata modificata." msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -16477,11 +16520,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "Il dispositivo è statao creato." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -18219,8 +18262,8 @@ msgid "Transaction ID" msgstr "Modifica dettagli" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18375,7 +18418,7 @@ msgstr "Annulla" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19285,6 +19328,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -22295,13 +22340,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -22341,7 +22386,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 #, fuzzy msgid "Refund for overpayment" msgstr "Rimborso o pagamento esterno" @@ -23058,11 +23103,83 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +msgid "Preview refund amount" +msgstr "Ordini pendenti" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 #, fuzzy msgid "Cancel all orders" msgstr "Solo ordini pagati" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Se ci contatti, per favore invia il seguente codice:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Generate automatically" +msgid "Refunds will not happen automatically." +msgstr "Generare automaticamente" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +msgid "Inform all customers via email." +msgstr "Informazioni dell'ordine modificate" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Can change orders" +msgid "Proceed and cancel orders" +msgstr "Può cambiare ordini" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -23467,13 +23584,13 @@ msgid "Select action" msgstr "Prevendita non ancora attiva" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy msgid "Refund overpaid amount" msgstr "Ordini pendenti" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -25052,10 +25169,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -26541,7 +26654,7 @@ msgstr "Il tuo ordine: %(code)s" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -26589,11 +26702,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -26934,19 +27047,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "Non abbiamo potuto salvare le tue modifiche. Leggi i dettagli sotto." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -26958,66 +27071,66 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "Numero di ordine sconosciuto oppure non autorizzato ad accedere." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 #, fuzzy msgid "Your cancellation request" msgstr "Cancellazione di" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -27036,74 +27149,74 @@ msgstr "" "\n" "Il team di {event}" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You entered an order that could not be found." msgid "You entered an order in an event with a different currency." msgstr "Hai inserito un ordine che non è stato trovato." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -27126,205 +27239,205 @@ msgstr "" "\n" "Il team di {event}" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 #, fuzzy msgid "The invoice file has already been exported." msgstr "Il dispositivo è statao creato." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 #, fuzzy msgid "The invoice file is too old to be regenerated." msgstr "Il dispositivo è statao creato." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The voucher has been sent to {recipient}." msgid "The invoice has been scheduled for retransmission." msgstr "Il buono è stato inviato a {recipient}." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Si è verificato un errore. Vedi i dettagli sotto." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "Non abbiamo potuto inviare l'email. Vedi i dettagli sotto." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "C'è stato un errore nel processare i tuoi dati. Vedi i dettagli sotto." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "Esporta: {title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -27332,7 +27445,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -27342,25 +27455,25 @@ msgstr "" "Non si dispone di autorizzazioni sufficienti per eseguire questa " "esportazione." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -28465,7 +28578,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -28499,7 +28612,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -28508,102 +28621,102 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Non includere trattini nella referenza di pagamento." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Prefisso per il riferimento pagamento" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 #, fuzzy msgid "IBAN blocklist for refunds" msgstr "Tutti i rimborsi aperti" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -28614,34 +28727,34 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy msgid "Restrict to business customers" msgstr "Azienda" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -28651,9 +28764,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -28663,26 +28776,26 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 #, fuzzy msgid "BIC (optional)" msgstr "(facoltativo)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 #, fuzzy msgid "Your input was invalid, please see below for details." msgstr "Le tue modifiche non possono essere salvate. Leggi i dettagli sotto." @@ -28722,8 +28835,8 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -28731,8 +28844,8 @@ msgstr "" "Dopo aver completato l'acquisto, ti chiederemo di trasferire il denaro sul " "seguente conto bancario, utilizzando un codice di riferimento personale:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 #, fuzzy #| msgid "" #| "We will assign you a personal reference code to use after you completed " @@ -28742,21 +28855,21 @@ msgid "" "code after you completed the order." msgstr "Ti daremo il codice di riferimento dopo aver completato l'ordine." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Codice di riferimento personale (importante):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "Ti daremo il codice di riferimento dopo aver completato l'ordine." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/it/LC_MESSAGES/djangojs.po b/src/pretix/locale/it/LC_MESSAGES/djangojs.po index 8c5052e09d..8b8c90598d 100644 --- a/src/pretix/locale/it/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/it/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-05-05 09:40+0000\n" "Last-Translator: \"Luca Martinelli [Sannita]\" \n" "Language-Team: Italian \n" "Language-Team: Japanese pretix" @@ -12821,7 +12848,8 @@ msgstr "連絡先:" msgid "" "You are receiving this email because you placed an order for " "%(event)s." -msgstr "%(event)sの注文をされたため、このメールを受信しています。" +msgstr "" +"%(event)sの注文をされたため、このメールを受信しています。" #: pretix/base/templates/pretixbase/email/order_details.html:93 #: pretix/control/templates/pretixcontrol/organizers/customer.html:23 @@ -15134,8 +15162,9 @@ msgstr "テストモードの注文を作成" #: pretix/control/forms/modelimport.py:102 msgid "Orders not created in test mode cannot be deleted again after import." -msgstr "テストモードで作成されていない注文は、インポート後に削除することはできません" -"。" +msgstr "" +"テストモードで作成されていない注文は、インポート後に削除することはできませ" +"ん。" #: pretix/control/forms/modelimport.py:123 msgid "A grouping cannot be specified for this import mode." @@ -15638,6 +15667,26 @@ msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" "このイベントシリーズのすべての日程をキャンセルすることを確認してください。" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "確認コード" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "入力した確認コードが間違っています。" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "このスラッグは、すでに使用されています。ほかのものを選択してください。" @@ -16379,7 +16428,7 @@ msgstr "ユーザーは次のメッセージを確認しました: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "注文はキャンセルされました(コメント:\"{comment}\")。" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "注文はキャンセルされました。" @@ -16463,11 +16512,11 @@ msgstr "注文は支払われる前に使用可能に設定されています。 msgid "The order has been set to require payment before use." msgstr "注文は使用前に支払いが必要となっています。" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "注文は期限切れとしてマークされました。" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "注文が支払い済みとしてマークされました。" @@ -16479,7 +16528,7 @@ msgstr "キャンセルリクエストは削除されました。" msgid "The order has been refunded." msgstr "注文が払い戻しされました。" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "注文が再有効化されました。" @@ -16491,7 +16540,7 @@ msgstr "注文が作成されました。" msgid "The order requires approval before it can continue to be processed." msgstr "この注文は処理が続行される前に承認が必要です。" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "注文は承認されました。" @@ -16528,7 +16577,7 @@ msgstr "顧客アカウントが変更されました。" msgid "The order locale has been changed." msgstr "注文のロケールが変更されました。" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "請求書が生成されました。" @@ -16537,11 +16586,11 @@ msgstr "請求書が生成されました。" msgid "The invoice could not be generated." msgstr "請求書を生成できませんでした。" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "請求書が再発行されました。" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "請求書が再発行されました。" @@ -18255,8 +18304,8 @@ msgid "Transaction ID" msgstr "取引ID" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18407,7 +18456,7 @@ msgstr "キャンセル" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19413,6 +19462,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "イベントをキャンセルします" @@ -19688,8 +19739,8 @@ msgid "" "be shown. Therefore, we recommend that you set the date of service to a " "different option." msgstr "" -"ショップがイベントではなく、イベントの日付を表示しないように設定されています" -"。そのため、サービス提供日を別のオプションに設定することをお勧めします。" +"ショップがイベントではなく、イベントの日付を表示しないように設定されていま" +"す。そのため、サービス提供日を別のオプションに設定することをお勧めします。" #: pretix/control/templates/pretixcontrol/event/invoicing.html:40 msgid "Address form" @@ -22638,13 +22689,13 @@ msgstr "注文の詳細: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "承認" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "拒絶" @@ -22685,7 +22736,7 @@ msgstr "" "います。クォータ容量を解放するには、手動で期限切れとして設定できます。" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "過払い分の払い戻し" @@ -23418,10 +23469,83 @@ msgstr "" "同じイベントに対してこの機能を複数回実行すべきではありません。そうしないと、" "空席待ちリストのすべての人が複数のメールを受け取ることになります。" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "払い戻し金額" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "すべての注文をキャンセルします" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "お問い合わせの際は、以下のコードをお送りください:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "テキスト(注文が自動的に期限切れにならない場合)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "メールで情報を送信する" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "%(amount)sの払い戻しを開始する" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "はい、注文をキャンセルします" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -23837,12 +23961,12 @@ msgid "Select action" msgstr "アクションを選択" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "過払い分を払い戻す" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "支払期限が過ぎている場合は、無効の印をつける" @@ -25525,10 +25649,6 @@ msgstr "" "いうテキストファイルが含まれています。ファイルのダウンロードが成功したことを" "確認するために、このコードをこちらに入力してください。" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "確認コード" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -27101,7 +27221,7 @@ msgstr "あなたの注文: %(code)s" msgid "Unknown email renderer." msgstr "不明なメールレンダラーです。" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "無効なチケット出力タイプをリクエストしました。" @@ -27155,11 +27275,11 @@ msgstr "" "特に、次のプラグインには、このイベントに依存するデータがまだ含まれています:" "{plugin_names}" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "コメントが更新されました。" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "コメントを更新できませんでした。" @@ -27551,11 +27671,11 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "選択されたアプリケーションへのアクセスが取り消されました。" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "入力内容を処理できませんでした。詳細は下記参照。" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." @@ -27563,7 +27683,7 @@ msgstr "" "注文のうち、{total}件のうち{success}件で\"{label}\"アクションを正常に実行しま" "した。" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -27575,15 +27695,15 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "不明な注文コード、またはこの注文に対する許可されていないアクセス。" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "この製品にはチケットのダウンロードが有効になっていません。" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "注文は削除されました。" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -27591,53 +27711,53 @@ msgstr "" "制約(例:プラグインによって作成されたデータなど)により、注文を削除できませ" "んでした。" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "テストモードで作成された注文のみ削除できます。" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "注文は拒否されたため、キャンセルされました。" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "この支払いはキャンセルされました。" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "現時点ではこの支払いはキャンセルできません。" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "払い戻しがキャンセルされました。" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "この払い戻しは現時点ではキャンセルできません。" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "払い戻しが処理されました。" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "この払い戻しは現在処理できません。" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "払い戻しが完了済みとしてマークされました。" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" "リクエストは削除されました。もしよろしければ、ユーザーにお知らせいただけま" "す。" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "あなたのキャンセルリクエスト" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -27654,7 +27774,7 @@ msgstr "" "\n" "{event}チーム" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -27662,15 +27782,15 @@ msgstr "" "支払いは完了とマークされましたが、確認メールを送信することができませんでし" "た。" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "支払いは完了とマークされました。" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "現時点ではこの支払いは確認できません。" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " @@ -27679,24 +27799,24 @@ msgstr "" "同時に他の払い戻しが処理されているため、この払い戻しは実行されませんでした。" "注文詳細を確認し、払い戻しがまだ必要かご確認ください。" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "イベントで異なる通貨で注文を入力しました。" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "まだ払い戻されていない支払い金額を超える払い戻しはできません。" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" "全額払い戻しのみに対応している決済方法に対して、部分払い戻しを選択しました。" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -27705,12 +27825,12 @@ msgstr "" "払い戻しの1つが処理に失敗しました。別の方法で払い戻しを再試行してください。エ" "ラーメッセージ:{}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "{}の払い戻しが処理されました。" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -27719,18 +27839,18 @@ msgstr "" "{}の払い戻しが保存されましたが、まだ完全に実行されていません。以下で完了済み" "としてマークできます。" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" "新しいギフトカードが作成されました。ユーザーにギフトカードコードを送信できま" "す。" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "ギフトカードのコード" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -27751,11 +27871,11 @@ msgstr "" "\n" "{event}チーム一同" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "選択した各払い戻し額の合計が、指定された総払い戻し額と一致しません。" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -27763,94 +27883,94 @@ msgstr "" "注文は支払い済みとマークされていますが、確認メールを送信することができません" "でした。" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "支払いは正常に作成されました。" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "注文はキャンセルされました。今、ユーザーに返金する方法を選択できます。" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "税番号(VAT ID等)が指定されていません。" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "国が指定されていません。" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" "税番号(消費税やVAT ID等)は、この国がサポートされていないため、確認できません" "でした。" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" "VAT IDは確認できませんでした。国のVAT確認サービスが現在利用できないためです。" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "この税番号は有効です。" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "不明な請求書。" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "請求書は作成された後に変更することはできません。" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "請求書は送信後に変更することはできません。" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "請求書はすでにキャンセルされています。" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "請求書ファイルはすでにエクスポートされています。" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "請求書ファイルは再生成するには古すぎます。" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "請求書から個人データが削除されました。" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" "請求書は現在送信中です。現在の処理が完了した後、新しい試行を開始できます。" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "請求書の再送信が予定されました。" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "メールが送信待ちキューに追加されました。" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "この請求書は見つかりませんでした" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "請求書ファイルはもはやサーバーに保存されていません。" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -27858,68 +27978,68 @@ msgstr "" "請求書ファイルはまだ生成されていません。今すぐ生成しますので、数秒後にもう一" "度お試しください。" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "支払条件が変更されました。" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "サーバーが忙しかったため、リクエストを完全に処理できませんでした。" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "このアクションは保留中の注文に対してのみ許可されています。" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "このアクションはキャンセルされた注文に対してのみ許可されています。" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "エラーが発生しました。詳細は以下をご覧ください。" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "注文は変更され、ユーザーに通知されました。" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "注文が変更されました。" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "入力を処理する際に問題が発生しました。以下のエラーを確認してください。" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "注文について変更する必要はありませんでした。" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "メールを送信できませんでした。詳細は以下をご覧ください。" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Subject: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "あなたのメッセージはキューに入れられ、{}に送信されます。" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "以下のユーザーにメールを送信できませんでした: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -27927,21 +28047,21 @@ msgstr "" "このリンクはもう有効ではありません。戻って、ページを更新して、もう一度試して" "ください。" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "指定された注文コードには注文がありません。" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "選択されたエクスポーターが見つかりませんでした。" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" "入力の処理中に問題が発生しました。エラーの詳細については以下を参照してくださ" "い。" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " @@ -27950,18 +28070,18 @@ msgstr "" "エクスポートスケジュールが保存されました。次のエクスポートは{datetime}頃に開" "始されます。" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" "あなたのエクスポートのスケジュールは保存されましたが、次のエクスポートは計画" "されていません。" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "エクスポート: {title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -27972,7 +28092,7 @@ msgstr "" "\n" "このメールに、{name}の新しい定期レポートを添付しています。" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." @@ -27980,7 +28100,7 @@ msgstr "" "ユーザーアカウントにはこのレポートを実行するのに十分な権限がないため、スケ" "ジュールを設定できません。" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " @@ -27989,11 +28109,11 @@ msgstr "" "エクスポートが間もなく開始される予定です。結果はメールで送信されます。システ" "ムの負荷やエクスポートの種類・サイズによっては、数分かかる場合があります。" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "すべての注文がキャンセルされました。" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " @@ -28002,7 +28122,7 @@ msgstr "" "注文はキャンセルされました。{count} 件の注文でエラーが発生しましたので、すべ" "てのキャンセルされていない注文を確認してください。" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "入力が無効です。" @@ -29078,7 +29198,7 @@ msgstr "バッジのレイアウト: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -29115,7 +29235,7 @@ msgstr "" "CSVのインポート機能を向上させるために、Pythonパッケージの「chardet」をインス" "トールしてください。" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -29128,23 +29248,23 @@ msgstr "" "支払いを手動で完了としてマークするか、定期的にデジタル銀行取引明細をインポー" "トしてpretixに必要な情報を提供することになります。" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "銀行口座の種類" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "SEPA銀行口座" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "他の銀行口座" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "アカウント名の保持者" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -29152,35 +29272,35 @@ msgstr "" "注意してください:一部の銀行では、文字や数字以外の特殊文字が問題を引き起こす" "可能性があります。" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "銀行の名前" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "銀行口座の詳細" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -29190,7 +29310,7 @@ msgstr "" "海外の顧客が多い場合は、あなたの完全な住所と銀行の完全な住所が必要になる場合" "があります。" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -29200,27 +29320,27 @@ msgstr "" "送金するために必要なすべての情報を追加してください。例:口座番号、ルーティン" "グ番号、住所など。" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "支払い参照にはハイフンを含めないでください。" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "これは一部の国で必要です。" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "支払い参照に請求書番号を含めてください。" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "支払い参照の接頭辞" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "保留中の注文に表示する追加テキスト" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -29228,11 +29348,11 @@ msgstr "" "このテキストは、標準テキストに加えて、保留中の注文の注文確認ページに表示され" "ます。" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "払い戻しのためのIBANブロックリスト" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -29249,11 +29369,11 @@ msgstr "" "時に無視されるため、例えばDE0012345を禁止することで、銀行識別子が12345で始ま" "るすべてのドイツのIBANを禁止できます。" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "ビジネス顧客に制限" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -29261,26 +29381,26 @@ msgstr "" "請求先住所を入力し、「法人または機関のお客様」と選択した顧客に対して、この支" "払いプロバイダーを選択できるようにします。" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "銀行口座の詳細を記入してください。" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" "申し訳ございませんが、個人情報や銀行口座の詳細を提供することはできません。個" "人情報の保護とセキュリティを重視しておりますので、安全な方法で取引を行うよう" "にしてください。" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "次の銀行口座に全額を送金してください:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -29290,9 +29410,9 @@ msgstr "次の銀行口座に全額を送金してください:" msgid "Account holder" msgstr "口座名義人" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -29302,25 +29422,25 @@ msgstr "口座名義人" msgid "Bank" msgstr "銀行" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "無効なIBAN/BIC" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "銀行口座 {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "既存の支払いからのみ、銀行振込払い戻しを作成できます。" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (任意)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "入力が無効です。詳細は下記を参照。" @@ -29355,8 +29475,8 @@ msgstr "注文はすでにキャンセルされています。" msgid "Currencies do not match." msgstr "通貨が一致しません。" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -29364,8 +29484,8 @@ msgstr "" "ご購入手続きが完了しましたら、以下の銀行口座にお振込いただくようお願いいたし" "ます。個人用の参照コードを使用してください:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." @@ -29373,21 +29493,21 @@ msgstr "" "支払いをまだ開始しないでください。注文が完了した後、個人用の参照コードを割り" "当てます。" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "リファレンス・コード (重要):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "ご注文完了後に、個人用の参照コードを割り当てます。" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." @@ -35078,8 +35198,9 @@ msgstr "現在、アカウントにギフトカードはありません。" msgid "" "Currently, only gift cards resulting from refunds show up here, any " "purchased gift cards show up under the orders tab." -msgstr "現在、ここには払い戻しによるギフトカードのみが表示されます。購入したギフトカ" -"ードは注文タブに表示されます。" +msgstr "" +"現在、ここには払い戻しによるギフトカードのみが表示されます。購入したギフト" +"カードは注文タブに表示されます。" #: pretix/presale/templates/pretixpresale/organizers/customer_info.html:6 msgid "Account information" diff --git a/src/pretix/locale/ja/LC_MESSAGES/djangojs.po b/src/pretix/locale/ja/LC_MESSAGES/djangojs.po index e56e320a43..9593289fc5 100644 --- a/src/pretix/locale/ja/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/ja/LC_MESSAGES/djangojs.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-10-27 12:00+0000\n" "Last-Translator: Hijiri Umemoto \n" -"Language-Team: Japanese \n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -656,40 +656,40 @@ msgstr "" "あなたの色は白に対して十分なコントラストがありません。サイトのアクセシビリ" "ティに影響します。" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "検索クエリ" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "全て" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "ない" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "選択したもののみ" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "1以上%(max)s以下のページ番号を入力。" -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "無効なページ番号。" -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "内部で別の名前を使用してください" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "クリックして閉じる" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "保存されていない変更があります!" diff --git a/src/pretix/locale/ko/LC_MESSAGES/django.po b/src/pretix/locale/ko/LC_MESSAGES/django.po index bb51d4fe5b..8c113ecf10 100644 --- a/src/pretix/locale/ko/LC_MESSAGES/django.po +++ b/src/pretix/locale/ko/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2025-09-01 18:00+0000\n" "Last-Translator: z3rrry \n" "Language-Team: Korean pretix" @@ -15589,6 +15614,26 @@ msgstr "날짜 범위를 설정하실 경우, 시작일과 종료일을 모두 msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "이 이벤트 시리즈의 모든 날짜를 취소하는지 관하여 확인해 주십시오" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "입력하신 확인 코드가 잘못되었습니다." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -16391,7 +16436,7 @@ msgstr "사용자가 다음 메시지를 승인했습니다: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "주문이 취소되었습니다. (사유: \"{comment}\")" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "주문이 정상적으로 취소 처리되었습니다." @@ -16478,11 +16523,11 @@ msgstr "주문이 결제되기 전에 사용할 수 있도록 설정되었습니 msgid "The order has been set to require payment before use." msgstr "주문은 사용 전에 결제가 필요하도록 설정되었습니다." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "주문이 만료된 것으로 표시되었습니다." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "주문이 결제된 것으로 표시되었습니다." @@ -16494,7 +16539,7 @@ msgstr "취소 요청이 삭제되었습니다." msgid "The order has been refunded." msgstr "주문이 환불되었습니다." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "주문이 다시 활성화되었습니다." @@ -16506,7 +16551,7 @@ msgstr "주문이 생성되었습니다." msgid "The order requires approval before it can continue to be processed." msgstr "주문이 계속 처리되기 전에 승인이 필요합니다." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "주문이 승인되었습니다." @@ -16543,7 +16588,7 @@ msgstr "고객 계정이 변경되었습니다." msgid "The order locale has been changed." msgstr "주문 로케일이 변경되었습니다." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "송장이 생성되었습니다." @@ -16554,11 +16599,11 @@ msgstr "송장이 생성되었습니다." msgid "The invoice could not be generated." msgstr "송장이 생성되었습니다." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "송장이 재생성되었습니다." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "송장이 재발행되었습니다" @@ -18288,8 +18333,8 @@ msgid "Transaction ID" msgstr "거래 ID" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18442,7 +18487,7 @@ msgstr "취소하기" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19436,6 +19481,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "이벤트 취소" @@ -22399,13 +22446,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -22444,7 +22491,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -23133,10 +23180,82 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Pending amount" +msgid "Preview refund amount" +msgstr "보류 중인 금액" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "문의하시면 다음 코드를 보내주시기 바랍니다:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "텍스트(주문이 자동으로 만료되지 않는 경우)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "이메일을 통해 정보를 보냅니다" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Can change orders" +msgid "Proceed and cancel orders" +msgstr "주문을 변경할 수 있습니다" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -23530,12 +23649,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -25056,10 +25175,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -26513,7 +26628,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -26561,11 +26676,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -26901,17 +27016,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -26923,65 +27038,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "알 수 없는 주문 코드 또는 이 주문에 접근할 권한이 없습니다." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -26992,72 +27107,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -27070,203 +27185,203 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been reissued." msgid "The invoice has been scheduled for retransmission." msgstr "송장이 재발행되었습니다" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -27274,7 +27389,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -27282,25 +27397,25 @@ msgid "" "therefore you cannot schedule it." msgstr "이 내보내기를 수행할 충분한 권한이 없습니다." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -28327,7 +28442,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -28360,7 +28475,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -28369,101 +28484,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -28474,33 +28589,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -28510,9 +28625,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -28522,25 +28637,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -28575,35 +28690,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/ko/LC_MESSAGES/djangojs.po b/src/pretix/locale/ko/LC_MESSAGES/djangojs.po index f152d328ef..d4e7b0ac72 100644 --- a/src/pretix/locale/ko/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/ko/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-06-25 06:56+0000\n" "Last-Translator: 조정화 \n" "Language-Team: Korean \n" "Language-Team: Luxembourgish pretix" @@ -14306,6 +14330,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Dës Kuerzform gëtt scho benotzt. Wielt wgl. eng aner." @@ -14967,7 +15009,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -15051,11 +15093,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -15067,7 +15109,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -15079,7 +15121,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -15114,7 +15156,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -15123,11 +15165,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16781,8 +16823,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -16932,7 +16974,7 @@ msgstr "Annuléieren" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17793,6 +17835,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20690,13 +20734,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Fräischalten" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Refuséieren" @@ -20735,7 +20779,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21409,10 +21453,80 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Pending amount" +msgid "Preview refund amount" +msgstr "Oppene Montant" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Generate automatically" +msgid "Refunds will not happen automatically." +msgstr "Automatesch generéieren" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Pending orders" +msgid "Proceed and cancel orders" +msgstr "Bestellungen, déi opstinn" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21807,12 +21921,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23326,10 +23440,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24769,7 +24879,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24817,11 +24927,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -25157,17 +25267,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -25179,65 +25289,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25248,72 +25358,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25326,201 +25436,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25528,31 +25638,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26571,7 +26681,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26604,7 +26714,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26613,101 +26723,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26718,33 +26828,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26754,9 +26864,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26766,25 +26876,25 @@ msgstr "" msgid "Bank" msgstr "Bank" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26819,35 +26929,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." @@ -32454,7 +32564,8 @@ msgstr "" msgid "" "The order has been changed. You can now proceed by paying the open amount of " "{amount}." -msgstr "D'Bestellung gouf geännert. Dir kënnt elo de Montant {amount} bezuelen." +msgstr "" +"D'Bestellung gouf geännert. Dir kënnt elo de Montant {amount} bezuelen." #: pretix/presale/views/order.py:1631 msgid "You did not make any changes." diff --git a/src/pretix/locale/lb/LC_MESSAGES/djangojs.po b/src/pretix/locale/lb/LC_MESSAGES/djangojs.po index 7aa98e053b..438f112a29 100644 --- a/src/pretix/locale/lb/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/lb/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-10-28 17:00+0000\n" "Last-Translator: Sven Muhlen \n" "Language-Team: Luxembourgish pretix" @@ -14118,6 +14139,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -14779,7 +14818,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -14863,11 +14902,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -14879,7 +14918,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -14891,7 +14930,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -14926,7 +14965,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -14935,11 +14974,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16593,8 +16632,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -16745,7 +16784,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17608,6 +17647,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20505,13 +20546,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20550,7 +20591,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21224,10 +21265,76 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +msgid "Proceed and cancel orders" +msgstr "" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21622,12 +21729,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23142,10 +23249,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24586,7 +24689,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24634,11 +24737,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -24974,17 +25077,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -24996,65 +25099,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25065,72 +25168,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25143,201 +25246,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25345,31 +25448,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26388,7 +26491,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26421,7 +26524,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26430,101 +26533,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26535,33 +26638,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26571,9 +26674,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26583,25 +26686,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26636,35 +26739,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/lt/LC_MESSAGES/djangojs.po b/src/pretix/locale/lt/LC_MESSAGES/djangojs.po index cd99d4adb4..f008be0845 100644 --- a/src/pretix/locale/lt/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/lt/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -640,40 +640,40 @@ msgid "" "will be impacted." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "" diff --git a/src/pretix/locale/lv/LC_MESSAGES/django.po b/src/pretix/locale/lv/LC_MESSAGES/django.po index 6cf9c87aec..de43cf1feb 100644 --- a/src/pretix/locale/lv/LC_MESSAGES/django.po +++ b/src/pretix/locale/lv/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2025-02-21 19:00+0000\n" "Last-Translator: anonymous \n" "Language-Team: Latvian pretix" @@ -15390,6 +15415,26 @@ msgstr "" "Lūdzu apstipriniet, ka jūs vēlaties atcekt VISUS datumus šajā notikumu " "sērijā." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Ievadītais apstiprināšanas kods nebija pareizs." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Šis saīsinājums jau tiek izmantots. Lūdzu izvēlieties citu." @@ -16122,7 +16167,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Pasūtījums ir atcelts." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Pasūtījums ir atcelts." @@ -16213,11 +16258,11 @@ msgstr "Pasūtījums ir atkal atjaunots." msgid "The order has been set to require payment before use." msgstr "Pasūtījums ir atkal atjaunots." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -16229,7 +16274,7 @@ msgstr "Atcelšanas pieprasījums ir dzēsts." msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "Pasūtījums ir atkal atjaunots." @@ -16241,7 +16286,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -16276,7 +16321,7 @@ msgstr "Lietotāja profils ir izmainīts." msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Rēķins ir izveidots." @@ -16287,11 +16332,11 @@ msgstr "Rēķins ir izveidots." msgid "The invoice could not be generated." msgstr "Rēķins ir izveidots." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -18055,8 +18100,8 @@ msgid "Transaction ID" msgstr "Transakcijas vēsture" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18224,7 +18269,7 @@ msgstr "Atcelt" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19136,6 +19181,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Atcelt pasākumu" @@ -22176,13 +22223,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -22221,7 +22268,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Atgriezt pārmaksāto naudu" @@ -22923,10 +22970,86 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Atgrieztā summa" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Atcelt visus pasūtījumus" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Ja sazinieties ar mums, lūdzu, atsūtiet mums šo kodu:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Generate automatically" +msgid "Refunds will not happen automatically." +msgstr "Ģenerēt automātiski" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Nosūtīt informāciju pa e-pastu" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Jā, atcelt pasūtījumu" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -23351,14 +23474,14 @@ msgid "Select action" msgstr "Izvēlēties datumu" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy #| msgid "Refund amount" msgid "Refund overpaid amount" msgstr "Atgrieztā summa" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -24969,10 +25092,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -26479,7 +26598,7 @@ msgstr "Jūsu pasūtījums: {code}" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Jūs pieprasījāt nederīgu biļetes izvades veidu." @@ -26527,11 +26646,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -26869,19 +26988,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "Mēs nevarējām saglabāt jūsu veiktās izmaiņas. Skatīt zemāk detaļas." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -26893,65 +27012,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "Nezināms pasūtījuma kods vai nav atļauts piekļūt šim pasūtījumam." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Biļešu lejupielāde šim produktam nav iespējota." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Jūsu atcelšanas pieprasījums" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -26962,74 +27081,74 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You cannot reorder items spanning different categories." msgid "You entered an order in an event with a different currency." msgstr "Jūs nevarat mainīt vietām vienumus, kas pieder dažādām kategorijām." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Jūsu dāvanu kartes kods" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -27042,102 +27161,102 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "Rēķins jau tika eksportēts." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "Rēķina fails ir par vecu, lai izveidotu vēlreiz." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been generated." msgid "The invoice has been scheduled for retransmission." msgstr "Rēķins ir izveidots." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Šis rēķins nav atrasts" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Rēķina fails vairs netiek saglabāts serverī." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -27145,38 +27264,38 @@ msgstr "" "Rēķina fails vēl nav izveidots, mēs to izveidosim jums tagad. Lūdzu, " "mēģiniet vēlreiz pēc dažām sekundēm." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." @@ -27184,31 +27303,31 @@ msgstr "" "Mums bija grūtības apstrādāt jūsu informāciju. Lūdzu, pārskatiet zemāk " "redzamās kļūdas." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -27216,36 +27335,36 @@ msgstr "" "Šī saite vairs nav derīga. Lūdzu, dodieties atpakaļ, atsvaidziniet lapu un " "mēģiniet vēlreiz." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, fuzzy, python-brace-format #| msgid "Export date" msgid "Export: {title}" msgstr "Exporta datums" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -27253,7 +27372,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have access to this page." msgid "" @@ -27261,25 +27380,25 @@ msgid "" "therefore you cannot schedule it." msgstr "Jums nav piekļuves šai lapai." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Visi pasūtījumi ir atcelti." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "Jūsu ievadītais teksts nav derīgs." @@ -28395,7 +28514,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -28428,7 +28547,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -28437,101 +28556,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Bankas konta veids" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "SEPA bankas konts" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Cits bankas konts" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Konta īpašnieka vārds" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Bankas nosaukums" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Bankas konta dati" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Maksājuma mērķī neizmantojiet domuzīmes un mīnusus." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Maksājuma mērķī norādīt rēķina numuru." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Priedēklis maksājuma mērķa atsaucei" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Papildus teksts, ko rādīt neapstiprinātajiem pasūtījumiem" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -28542,35 +28661,35 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy #| msgid "Business customer" msgid "Restrict to business customers" msgstr "Juridiska persona" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Lūdzu ievadiet savus bankas konta datus." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Lūdzu ievadiet savas bankas datus." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Lūdzu, pārsūtiet visu summu uz šo bankas kontu:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -28580,9 +28699,9 @@ msgstr "Lūdzu, pārsūtiet visu summu uz šo bankas kontu:" msgid "Account holder" msgstr "Konta īpašnieks" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -28592,25 +28711,25 @@ msgstr "Konta īpašnieks" msgid "Bank" msgstr "Banka" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "Nederīgs IBAN/BIC" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Bankas konts {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (pēc izvēles)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "Jūsu ievadītais teksts nav derīgs. Sīkāku informāciju skatīt zemāk." @@ -28650,8 +28769,8 @@ msgstr "Šis pasūtījums jau ir dzēsts." msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -28659,8 +28778,8 @@ msgstr "" "Pēc pirkuma mēs jūs lūgsim pārskaitīt naudu uz sekojošo bankas kontu, " "izmantojot kodu, ko mēs jums piešķirsim, kā maksājuma mērķi:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 #, fuzzy #| msgid "" #| "We will assign you a personal reference code to use after you completed " @@ -28671,22 +28790,22 @@ msgid "" msgstr "" "Pēc pirkuma izdarīšanas mēs jums piešķirsim personificētu kodu maksājumam." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Maksājuma mērķis (svarīgi):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" "Pēc pirkuma izdarīšanas mēs jums piešķirsim personificētu kodu maksājumam." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 #, fuzzy #| msgid "" #| "After completing your purchase, we will ask you to transfer the money to " diff --git a/src/pretix/locale/lv/LC_MESSAGES/djangojs.po b/src/pretix/locale/lv/LC_MESSAGES/djangojs.po index 705dc0169f..3a4f8196ec 100644 --- a/src/pretix/locale/lv/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/lv/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2022-04-06 03:00+0000\n" "Last-Translator: Liga V \n" "Language-Team: Latvian pretix" @@ -14115,6 +14136,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -14776,7 +14815,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -14860,11 +14899,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -14876,7 +14915,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -14888,7 +14927,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -14923,7 +14962,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -14932,11 +14971,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16590,8 +16629,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -16741,7 +16780,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17602,6 +17641,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20499,13 +20540,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20544,7 +20585,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21218,10 +21259,74 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +msgid "Proceed and cancel orders" +msgstr "" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21616,12 +21721,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23135,10 +23240,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24578,7 +24679,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24626,11 +24727,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -24966,17 +25067,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -24988,65 +25089,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25057,72 +25158,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25135,201 +25236,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25337,31 +25438,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26380,7 +26481,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26413,7 +26514,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26422,101 +26523,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26527,33 +26628,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26563,9 +26664,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26575,25 +26676,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26628,35 +26729,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/nan/LC_MESSAGES/djangojs.po b/src/pretix/locale/nan/LC_MESSAGES/djangojs.po index 250d7614a4..3ad08f20a7 100644 --- a/src/pretix/locale/nan/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/nan/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -638,40 +638,40 @@ msgid "" "will be impacted." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "" diff --git a/src/pretix/locale/nb_NO/LC_MESSAGES/django.po b/src/pretix/locale/nb_NO/LC_MESSAGES/django.po index f9a8f5f1b0..fe0ef056e6 100644 --- a/src/pretix/locale/nb_NO/LC_MESSAGES/django.po +++ b/src/pretix/locale/nb_NO/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2024-05-10 15:47+0000\n" "Last-Translator: Martin Gross \n" "Language-Team: Norwegian Bokmål pretix" @@ -16245,6 +16270,26 @@ msgstr "" "Vennligst bekreft at du ønsker å avlyse ALLE datoer i denne " "arrangementsserien." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Bekreftelseskode" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Bekreftelseskoden du skrev inn var feil." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Denne sneglen er allerede i bruk. Vennligst velg en annen." @@ -17017,7 +17062,7 @@ msgstr "Brukeren bekreftet følgende melding: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Bestillingen er blitt kansellert (kommentar: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Bestillingen er blitt kansellert." @@ -17103,11 +17148,11 @@ msgstr "Bestillingen er satt til å være brukbar før den er betalt." msgid "The order has been set to require payment before use." msgstr "Bestillingen er satt til å kreve betaling før bruk." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "Bestillingen er blitt merket som utløpt." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "Bestillingen er merket som betalt." @@ -17119,7 +17164,7 @@ msgstr "Avbestillingsforespørselen er blitt slettet." msgid "The order has been refunded." msgstr "Bestillingen er blitt refundert." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "Bestillingen er blitt reaktivert." @@ -17131,7 +17176,7 @@ msgstr "Ordren er opprettet." msgid "The order requires approval before it can continue to be processed." msgstr "Ordren må godkjennes før den kan fortsette å behandles." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "Bestillingen er godkjent." @@ -17170,7 +17215,7 @@ msgstr "Kundekontoet har blitt endret." msgid "The order locale has been changed." msgstr "Bestillingens lokalitet har blitt endret." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Fakturaen er blitt generert." @@ -17181,11 +17226,11 @@ msgstr "Fakturaen er blitt generert." msgid "The invoice could not be generated." msgstr "Fakturaen er blitt generert." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Fakturaen er blitt generert på nytt." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Fakturaen er blitt utstedt på nytt." @@ -18955,8 +19000,8 @@ msgid "Transaction ID" msgstr "Transaksjons-ID" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -19115,7 +19160,7 @@ msgstr "Avbryt" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -20152,6 +20197,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Avbryt arrangementet." @@ -23502,13 +23549,13 @@ msgstr "Ordredetaljer: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Godkjent" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Avslå" @@ -23550,7 +23597,7 @@ msgstr "" "kan du merke den som utløpt manuelt." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Refusjon for overbetaling" @@ -24318,10 +24365,85 @@ msgstr "" "Du bør ikke kjøre denne funksjonen flere ganger for samme hendelse, ellers " "vil alle på ventelisten motta flere e-poster." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Beløp for tilbakebetaling" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Avbryt alle bestillinger." +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Hvis du kontakter oss, vennligst send oss følgende kode:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "Tekst (hvis bestillingen ikke utløper automatisk)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Send informasjon via e-post" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Vennligst start en tilbakebetaling av %(amount)s." + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Ja, avbestill bestillingen." + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24740,14 +24862,14 @@ msgid "Select action" msgstr "Velg handling" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy #| msgid "Refund full paid amount" msgid "Refund overpaid amount" msgstr "Refunder fullt betalt beløp." #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "Marker som utløpt hvis forsinket." @@ -26500,10 +26622,6 @@ msgstr "" "I have successfully downloaded the file. Please provide the six-character " "code from the \"CONFIRM_CODE.txt\" text file to confirm." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Bekreftelseskode" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -28146,7 +28264,7 @@ msgstr "Din ordre: {code}" msgid "Unknown email renderer." msgstr "Ukjent e-postviser." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Du ba om en ugyldig billettutskriftstype." @@ -28200,11 +28318,11 @@ msgstr "" "Spesifikt, følgende tillegg inneholder fortsatt data som avhenger av denne " "hendelsen: {plugin_names}" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Kommentaren har blitt oppdatert." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Kunne ikke oppdatere kommentaren." @@ -28603,13 +28721,13 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Tilgangen til den valgte applikasjonen er blitt tilbakekalt." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "Vi kunne ikke lagre dine endringer. Se under for detaljer." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." @@ -28617,7 +28735,7 @@ msgstr "" "Utførte handlingen \"{label}\" vellykket på {success} av {total} " "bestillinger." -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -28629,15 +28747,15 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "Ukjent ordrekode eller ikke autorisert tilgang til denne ordren." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Nedlasting av billett er ikke aktivert for dette produktet." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "Bestillingen er slettet." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -28645,51 +28763,51 @@ msgstr "" "Bestillingen kunne ikke slettes da visse begrensninger (f.eks. data " "opprettet av tilleggsprogrammer) ikke tillater det." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "Bare bestillinger opprettet i testmodus kan slettes." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "Bestillingen er blitt avvist og er derfor nå kansellert." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Denne betalingen er blitt kansellert." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Denne betalingen kan ikke kanselleres for øyeblikket." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "Refusjonen er blitt kansellert." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Denne refusjonen kan ikke avbrytes for øyeblikket." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "Refusjonen er blitt behandlet." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Denne refusjonen kan ikke behandles for øyeblikket." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "Refusjonen er blitt merket som fullført." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "The request has been canceled. If you wish, I can now notify the user." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Din forespørsel om avbestilling" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -28706,7 +28824,7 @@ msgstr "" "\n" "Ditt {event} team" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -28714,28 +28832,28 @@ msgstr "" "Betalingen er merket som fullført, men vi klarte ikke å sende en " "bekreftelsesmail." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "Betalingen er merket som fullført." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Denne betalingen kan ikke bekreftes for øyeblikket." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You entered an order that could not be found." msgid "You entered an order in an event with a different currency." msgstr "Du har lagt inn en bestilling som ikke kunne bli funnet." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." @@ -28743,7 +28861,7 @@ msgstr "" "Du kan ikke refundere mer enn beløpet av en betaling som ennå ikke er " "refundert." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -28751,7 +28869,7 @@ msgstr "" "Du valgte en delvis refusjon for en betalingsmetode som kun støtter full " "refusjon." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -28760,12 +28878,12 @@ msgstr "" "En av tilbakebetalingene kunne ikke behandles. Du bør prøve å refundere på " "en annen måte. Feilmeldingen var: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "En refusjon på {} er blitt behandlet." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -28774,17 +28892,17 @@ msgstr "" "En refusjon på {} er blitt lagret, men er ennå ikke fullstendig utført. Du " "kan markere den som fullført nedenfor." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" "En ny gavekort ble opprettet. Du kan nå sende brukeren gavekortkoden deres." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Din gavekortkode" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -28805,24 +28923,24 @@ msgstr "" "\n" "Ditt {event} team" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "De valgte tilbakebetalingene samsvarer ikke med det valgte totale " "tilbakebetalingsbeløpet." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" "Ordren er merket som betalt, men vi klarte ikke å sende en bekreftelsesmail." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "Betalingen er opprettet vellykket." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -28830,19 +28948,19 @@ msgstr "" "Bestillingen er blitt kansellert. Du kan nå velge hvordan du ønsker å " "overføre pengene tilbake til brukeren." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Ingen moms-ID spesifisert." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Ingen land spesifisert." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "MVA-nummeret kunne ikke bli sjekket siden dette landet ikke støttes." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -28850,66 +28968,66 @@ msgstr "" "MVA-nummeret kunne ikke bli sjekket, da MVA-sjekketjenesten for landet for " "øyeblikket ikke er tilgjengelig." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Dette momsnummeret er gyldig." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Ukjent faktura." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "Fakturaer kan ikke endres etter at de er opprettet." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 #, fuzzy #| msgid "Invoices may not be changed after they are created." msgid "Invoices may not be changed after they are transmitted." msgstr "Fakturaer kan ikke endres etter at de er opprettet." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "Fakturaen er allerede kansellert." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "En faktura for denne ordren eksisterer allerede." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "Fakturafilen er for gammel til å kunne genereres på nytt." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "Fakturaen er blitt renset for personlige opplysninger." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "Fakturaen er blitt renset for personlige opplysninger." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "E-posten er satt i kø for å bli sendt." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Denne fakturaen er ikke funnet." -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Fakturafilen er ikke lenger lagret på serveren." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -28917,11 +29035,11 @@ msgstr "" "Fakturafilen er ennå ikke generert, vi vil generere den for deg nå. " "Vennligst prøv igjen om noen få sekunder." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Betalingsbetingelsene har blitt endret." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." @@ -28929,28 +29047,28 @@ msgstr "" "Vi klarte ikke å behandle forespørselen fullstendig da serveren var for " "opptatt." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Denne handlingen er kun tillatt for ventende bestillinger." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Denne handlingen er kun tillatt for kansellerte bestillinger." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Det oppstod en feil. Vennligst se detaljene nedenfor." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "Rekkefølgen er endret, og brukeren er blitt varslet." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "Rekkefølgen har blitt endret." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." @@ -28958,31 +29076,31 @@ msgstr "" "Vi hadde problemer med å behandle inndataene dine. Vennligst se gjennom " "feilene nedenfor." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Ingenting ved bestillingen måtte endres." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "Vi klarte ikke å sende e-posten. Se nedenfor for detaljer." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Emne: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Din melding er satt i kø og vil bli sendt til {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Klarte ikke å sende e-post til følgende bruker: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -28990,39 +29108,39 @@ msgstr "" "Denne lenken er ikke lenger gyldig. Vennligst gå tilbake, oppdater siden og " "prøv igjen." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Det er ingen bestilling med den angitte bestillingskoden." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "Den valgte eksportøren ble ikke funnet." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" "Det oppstod et problem under behandlingen av inndataene dine. Se nedenfor " "for detaljer om feilen." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "Din eksportplan er lagret. Neste eksport vil starte rundt {datetime}." -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" "Eksportplanen din er lagret, men det er ingen planlagte eksporter i nær " "fremtid." -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, fuzzy, python-brace-format msgid "Export: {title}" msgstr "Eksport: {tittel}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -29033,7 +29151,7 @@ msgstr "" "\n" "vedlagt i denne e-posten finner du en ny planlagt rapport for {name}." -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -29041,7 +29159,7 @@ msgid "" "therefore you cannot schedule it." msgstr "Du har ikke tilstrekkelige tillatelser til å utføre denne eksporten." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " @@ -29051,11 +29169,11 @@ msgstr "" "post. Avhengig av systembelastning, type og størrelse på eksporten, kan " "dette ta noen minutter." -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Alle bestillinger er blitt kansellert." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " @@ -29064,7 +29182,7 @@ msgstr "" "Ordrene er blitt kansellert. Det oppstod en feil med {count} ordre, " "vennligst sjekk alle ikke-kansellerte ordre." -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" "Apologies for the inconvenience. Please provide the text you would like me " @@ -30281,7 +30399,7 @@ msgstr "Utforming av merkelapp: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -30316,7 +30434,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "Installer python-pakken 'chardet' for bedre CSV-importmuligheter." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -30330,23 +30448,23 @@ msgstr "" "importere en digital bankutskrift for å gi pretix den nødvendige " "informasjonen." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Kontotype for bankkonto" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "SEPA bankkonto" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Annen bankkonto" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Navn på kontoinnehaver" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -30354,35 +30472,35 @@ msgstr "" "Vennligst merk deg: Spesialtegn, bortsett fra bokstaver, tall og visse " "tegnsettingstegn, kan skape problemer med enkelte banker." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Navn på banken" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Bankkontodetaljer" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -30393,7 +30511,7 @@ msgstr "" "required for international customers. This may include your full address and " "the full address of your bank." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -30403,27 +30521,27 @@ msgstr "" "kundene dine trenger for å overføre penger, for eksempel kontonumre, " "rutingnumre, adresser, osv." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Ikke inkluder bindestreker i betalingsreferansen." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Dette er påkrevd i noen land." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Vennligst inkluder fakturanummeret i betalingsreferansen." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Prefiks for betalingsreferanse" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Ekstra tekst som skal vises på ventende bestillinger" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -30431,11 +30549,11 @@ msgstr "" "Denne teksten vil bli vist på bestillingsbekreftelsessiden for ventende " "bestillinger i tillegg til standardteksten." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "IBAN blokkeringsliste for tilbakebetalinger" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 #, fuzzy #| msgid "" #| "Put one IBAN or IBAN prefix per line. The system will not attempt to send " @@ -30459,11 +30577,11 @@ msgstr "" "eksempel \"GB\" hvis du aldri ønsker å sende tilbakebetalinger til IBANer " "fra et bestemt land." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Begrens til eventer" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -30471,23 +30589,23 @@ msgstr "" "Kun tillat valg av denne betalingsleverandøren for kunder som oppgir en " "fakturaadresse og velger \"Bedrift eller institusjonell kunde\"." -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Vennligst fyll ut dine bankkontodetaljer." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Vennligst oppgi dine bankkontodetaljer." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Vennligst overfør hele beløpet til følgende bankkonto:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -30497,9 +30615,9 @@ msgstr "Vennligst overfør hele beløpet til følgende bankkonto:" msgid "Account holder" msgstr "Kontoinnehaver" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -30509,27 +30627,27 @@ msgstr "Kontoinnehaver" msgid "Bank" msgstr "Bank" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "Ugyldig IBAN/BIC" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Bankkonto {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" "Kan kun opprette en tilbakebetaling via bankoverføring fra en eksisterende " "betaling." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (valgfritt)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -30566,8 +30684,8 @@ msgstr "Bestillingen er allerede kansellert." msgid "Currencies do not match." msgstr "Valutaene stemmer ikke overens." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -30575,8 +30693,8 @@ msgstr "" "Etter at du har fullført kjøpet, vil vi be deg om å overføre pengene til " "følgende bankkonto, ved hjelp av en personlig referansekode:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 #, fuzzy #| msgid "" #| "We will assign you a personal reference code to use after you completed " @@ -30588,14 +30706,14 @@ msgstr "" "Vi vil tildele deg en personlig referansekode som du skal bruke etter at du " "har fullført bestillingen." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Referansekode (viktig):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -30603,8 +30721,8 @@ msgstr "" "Vi vil tildele deg en personlig referansekode som du skal bruke etter at du " "har fullført bestillingen." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 #, fuzzy #| msgid "" #| "After completing your purchase, we will ask you to transfer the money to " diff --git a/src/pretix/locale/nb_NO/LC_MESSAGES/djangojs.po b/src/pretix/locale/nb_NO/LC_MESSAGES/djangojs.po index 103a0f7885..b50fb1b8f5 100644 --- a/src/pretix/locale/nb_NO/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/nb_NO/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2024-03-10 03:00+0000\n" "Last-Translator: fyksen \n" "Language-Team: Norwegian Bokmål \n" -"Language-Team: Dutch " -"\n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -231,7 +231,7 @@ msgstr "Beperk tot evenementen" msgid "Comment" msgstr "Opmerking" -#: pretix/api/serializers/cart.py:168 pretix/api/serializers/order.py:1466 +#: pretix/api/serializers/cart.py:168 pretix/api/serializers/order.py:1471 #, python-brace-format msgid "The product \"{}\" is not assigned to a quota." msgstr "Het product \"{}\" is niet toegewezen aan een quotum." @@ -351,18 +351,18 @@ msgstr "Een medium met dezelfde code bestaat al in uw organisatoraccount." msgid "\"{input}\" is not a valid choice." msgstr "\"{input}\" is geen geldige keuze." -#: pretix/api/serializers/order.py:1427 pretix/api/views/cart.py:224 +#: pretix/api/serializers/order.py:1432 pretix/api/views/cart.py:224 #: pretix/base/services/orders.py:1619 #, python-brace-format msgid "The selected seat \"{seat}\" is not available." msgstr "De gekozen stoel \"{seat}\" is niet beschikbaar." -#: pretix/api/serializers/order.py:1453 pretix/api/serializers/order.py:1460 +#: pretix/api/serializers/order.py:1458 pretix/api/serializers/order.py:1465 #, python-brace-format msgid "The product \"{}\" is not available on this date." msgstr "Het product \"{}\" is niet beschikbaar op deze datum." -#: pretix/api/serializers/order.py:1475 pretix/api/views/cart.py:200 +#: pretix/api/serializers/order.py:1480 pretix/api/views/cart.py:200 #, python-brace-format msgid "" "There is not enough quota available on quota \"{}\" to perform the operation." @@ -416,17 +416,17 @@ msgid "" msgstr "" "De applicatie \"{application_name}\" is toegang gegeven tot uw account." -#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1602 +#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1603 #: pretix/presale/views/order.py:736 pretix/presale/views/order.py:816 msgid "You cannot generate an invoice for this order." msgstr "U kunt geen factuur genereren voor deze bestelling." -#: pretix/api/views/order.py:613 pretix/control/views/orders.py:1604 +#: pretix/api/views/order.py:613 pretix/control/views/orders.py:1605 #: pretix/presale/views/order.py:738 pretix/presale/views/order.py:818 msgid "An invoice for this order already exists." msgstr "Er bestaat al een factuur voor deze bestelling." -#: pretix/api/views/order.py:639 pretix/control/views/orders.py:1763 +#: pretix/api/views/order.py:639 pretix/control/views/orders.py:1764 #: pretix/control/views/users.py:145 msgid "There was an error sending the mail. Please try again later." msgstr "" @@ -454,7 +454,7 @@ msgstr "Bestelling gemarkeerd als betaald" #: pretix/api/webhooks.py:274 pretix/base/models/checkin.py:355 #: pretix/base/notifications.py:251 #: pretix/control/templates/pretixcontrol/event/mail.html:114 -#: pretix/control/views/orders.py:1563 +#: pretix/control/views/orders.py:1564 msgid "Order canceled" msgstr "Bestelling geannuleerd" @@ -641,8 +641,8 @@ msgstr "Het klantenaccount is geanonimiseerd" #: pretix/control/forms/event.py:798 pretix/control/forms/event.py:838 #: pretix/control/forms/event.py:1455 pretix/control/forms/mailsetup.py:87 #: pretix/control/forms/mailsetup.py:129 pretix/control/forms/subevents.py:181 -#: pretix/plugins/banktransfer/payment.py:506 -#: pretix/plugins/banktransfer/payment.py:512 +#: pretix/plugins/banktransfer/payment.py:507 +#: pretix/plugins/banktransfer/payment.py:513 #: pretix/presale/forms/customer.py:152 msgid "This field is required." msgstr "Dit veld is verplicht." @@ -2640,7 +2640,9 @@ msgstr "Alleen bestellingen aangemaakt tussen deze datums." #: pretix/base/models/items.py:468 pretix/base/models/items.py:2060 #: pretix/base/models/orders.py:233 pretix/base/models/orders.py:3111 #: pretix/base/models/vouchers.py:184 pretix/base/models/waitinglist.py:55 -#: pretix/base/notifications.py:187 pretix/control/forms/filter.py:1025 +#: pretix/base/notifications.py:187 +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:4 +#: pretix/control/forms/filter.py:1025 #: pretix/control/templates/pretixcontrol/organizers/customer.html:206 #: pretix/control/templates/pretixcontrol/organizers/customer_membership.html:42 #: pretix/control/templates/pretixcontrol/search/orders.html:51 @@ -2808,8 +2810,8 @@ msgstr "Statuscode" #: pretix/control/templates/pretixcontrol/order/index.html:892 #: pretix/control/templates/pretixcontrol/orders/refunds.html:70 #: pretix/control/templates/pretixcontrol/search/payments.html:98 -#: pretix/plugins/banktransfer/payment.py:298 -#: pretix/plugins/banktransfer/payment.py:307 +#: pretix/plugins/banktransfer/payment.py:299 +#: pretix/plugins/banktransfer/payment.py:308 #: pretix/plugins/banktransfer/refund_export.py:46 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:25 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/transaction_list.html:13 @@ -3942,9 +3944,9 @@ msgstr "Kon {value} niet als ja-/nee waarde herkennen." msgid "Could not parse {value} as a date and time." msgstr "Kon {value} niet als datum en tijd herkennen." -#: pretix/base/modelimport.py:239 pretix/control/views/orders.py:1173 -#: pretix/control/views/orders.py:1202 pretix/control/views/orders.py:1247 -#: pretix/control/views/orders.py:1282 pretix/control/views/orders.py:1305 +#: pretix/base/modelimport.py:239 pretix/control/views/orders.py:1174 +#: pretix/control/views/orders.py:1203 pretix/control/views/orders.py:1248 +#: pretix/control/views/orders.py:1283 pretix/control/views/orders.py:1306 msgid "You entered an invalid number." msgstr "U voerde een ongeldig getal in." @@ -7724,7 +7726,7 @@ msgstr "Ticketbureau" msgid "Manual payment" msgstr "Handmatige betaling" -#: pretix/base/payment.py:1221 pretix/plugins/banktransfer/payment.py:195 +#: pretix/base/payment.py:1221 pretix/plugins/banktransfer/payment.py:196 msgid "" "In test mode, you can just manually mark this order as paid in the backend " "after it has been created." @@ -7733,7 +7735,7 @@ msgstr "" "backend." #: pretix/base/payment.py:1242 pretix/base/payment.py:1458 -#: pretix/plugins/banktransfer/payment.py:149 +#: pretix/plugins/banktransfer/payment.py:150 msgid "Payment method name" msgstr "Naam van betalingsmethode" @@ -7784,7 +7786,7 @@ msgstr "" "de betaling. U kunt hier de plaatsaanduidingen {order}, {amount}, {currency} " "en {amount_with_currency} gebruiken." -#: pretix/base/payment.py:1269 pretix/plugins/banktransfer/payment.py:144 +#: pretix/base/payment.py:1269 pretix/plugins/banktransfer/payment.py:145 msgid "" "Create an invoice for orders using bank transfer immediately if the event is " "otherwise configured to create invoices after payment is completed." @@ -7797,7 +7799,7 @@ msgstr "" msgid "Offsetting" msgstr "Verrekening" -#: pretix/base/payment.py:1334 pretix/control/views/orders.py:1256 +#: pretix/base/payment.py:1334 pretix/control/views/orders.py:1257 msgid "You entered an order that could not be found." msgstr "U voerde een bestelling in die niet kon worden gevonden." @@ -8315,11 +8317,17 @@ msgstr "" "offline scannen functioneert – zie de documentatie of neem contact op met " "support voor details)" -#: pretix/base/services/cancelevent.py:230 -#: pretix/base/services/cancelevent.py:308 +#: pretix/base/services/cancelevent.py:277 +#: pretix/base/services/cancelevent.py:363 msgid "Event canceled" msgstr "Evenement geannuleerd" +#: pretix/base/services/cancelevent.py:392 +#, fuzzy +#| msgid "Create configuration" +msgid "Bulk-refund confirmation" +msgstr "Maak configuratie" + #: pretix/base/services/cart.py:102 pretix/base/services/modelimport.py:247 #: pretix/base/services/orders.py:155 msgid "" @@ -9136,8 +9144,8 @@ msgid "" "The grouping \"%(value)s\" occurs on non-consecutive lines (seen again on " "line %(row)s)." msgstr "" -"De groepering \"%(value)s\" komt voor op niet opeenvolgende regels " -"(is ook het geval op regel %(row)s)." +"De groepering \"%(value)s\" komt voor op niet opeenvolgende regels (is ook " +"het geval op regel %(row)s)." #: pretix/base/services/modelimport.py:154 #, python-brace-format @@ -9145,8 +9153,8 @@ msgid "" "Inconsistent data in row {row}: Column {col} contains value \"{val_line}\", " "but for this order, the value has already been set to \"{val_order}\"." msgstr "" -"Inconsistente gegevens in rij {row}: Kolom {col} bevat waarde \"{val_line}\"" -", maar voor deze bestelling is de waarde al ingesteld op \"{val_order}\"." +"Inconsistente gegevens in rij {row}: Kolom {col} bevat waarde \"{val_line}" +"\", maar voor deze bestelling is de waarde al ingesteld op \"{val_order}\"." #: pretix/base/services/modelimport.py:168 #: pretix/base/services/modelimport.py:289 @@ -13101,6 +13109,23 @@ msgstr "" "Ververs de pagina of neem contact met ons op als dit langer dan een paar " "minuten duurt." +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:2 +msgid "" +"You have requested us to cancel an event which includes a larger bulk-refund:" +msgstr "" + +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:6 +#, fuzzy +#| msgid "Initiate a refund of %(amount)s" +msgid "Estimated refund amount" +msgstr "Start een terugbetaling van %(amount)s" + +#: pretix/base/templates/pretixbase/email/cancel_confirm.txt:8 +msgid "" +"Please confirm that you want to proceed by coping the following confirmation " +"code into the cancellation form:" +msgstr "" + #: pretix/base/templates/pretixbase/email/email_footer.html:3 #, python-format msgid "powered by pretix" @@ -16076,6 +16101,26 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "Bevestig dat u ALLE datums in deze evenementenreeks wilt annuleren." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Bevestigingscode" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "De bevestigingscode die u invoerde was onjuist." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Deze slug is al in gebruik, kies een andere." @@ -16843,7 +16888,7 @@ msgstr "De gebruiker bevestigde het volgende bericht: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "De bestelling is geannuleerd (commentaar: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "De bestelling is geannuleerd." @@ -16927,11 +16972,11 @@ msgstr "De bestelling is aangemerkt als bruikbaar voordat het is betaald." msgid "The order has been set to require payment before use." msgstr "De bestelling is zo ingesteld dat betaling vereist is vóór gebruik." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "De bestelling is aangemerkt als verlopen." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "De bestelling is aangemerkt als betaald." @@ -16943,7 +16988,7 @@ msgstr "Het annuleringsverzoek is verwijderd." msgid "The order has been refunded." msgstr "De bestelling is terugbetaald." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "De bestelling is opnieuw geactiveerd." @@ -16955,7 +17000,7 @@ msgstr "De bestelling is aangemaakt." msgid "The order requires approval before it can continue to be processed." msgstr "De bestelling moet worden goedgekeurd voordat hij kan worden verwerkt." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "De bestelling is goedgekeurd." @@ -16993,7 +17038,7 @@ msgstr "Het klantenaccount is aangepast." msgid "The order locale has been changed." msgstr "De taal van de bestelling is aangepast." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "De factuur is gegenereerd." @@ -17004,11 +17049,11 @@ msgstr "De factuur is gegenereerd." msgid "The invoice could not be generated." msgstr "De factuur is gegenereerd." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "De factuur is opnieuw gegenereerd." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "De factuur is opnieuw uitgegeven." @@ -18767,8 +18812,8 @@ msgid "Transaction ID" msgstr "Transactie-ID" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18922,7 +18967,7 @@ msgstr "Annuleer" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19963,6 +20008,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Annuleer evenement" @@ -23272,13 +23319,13 @@ msgstr "Bestellingsdetails: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Goedkeuren" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Weigeren" @@ -23320,7 +23367,7 @@ msgstr "" "kunt u de bestelling handmatig als verlopen markeren." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Terugbetaling voor overbetaling" @@ -24091,10 +24138,85 @@ msgstr "" "Gebruik deze functie niet meerdere keren voor hetzelfde evenement, omdat " "anders iedereen op de wachtlijst meerdere e-mails ontvangt." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Terug te betalen bedrag" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Annuleer alle bestellingen" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Stuur de volgende code mee als u contact met ons opneemt:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "Tekst (indien de bestelling niet automatisch zal vervallen)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Stuur informatie via e-mail" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Start een terugbetaling van %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Ja, annuleer bestelling" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24513,12 +24635,12 @@ msgid "Select action" msgstr "Selecteer actie" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "Betaal teveel betaalde bedrag terug" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "Markeer als vervallen indien achterstallig" @@ -26251,10 +26373,6 @@ msgstr "" "\"CONFIRM_CODE.txt\" met een code van zes tekens. Voer deze code hier in om " "te bevestigen dat u het bestand juist hebt gedownload." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Bevestigingscode" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -27877,7 +27995,7 @@ msgstr "Uw bestelling: %(code)s" msgid "Unknown email renderer." msgstr "Onbekende e-mail-renderer." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "U vroeg een ongeldig ticketsuitvoertype." @@ -27935,11 +28053,11 @@ msgstr "" "In het bijzonder hebben de volgende extensies nog steeds gegevens van dit " "evenement nodig: {plugin_names}" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Het commentaar is bijgewerkt." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Kon de opmerking niet bijwerken." @@ -28338,11 +28456,11 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "De toegang voor de gekozen applicatie is ingetrokken." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "Uw input kon niet worden verwerkt; zie hieronder voor meer informatie." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." @@ -28350,7 +28468,7 @@ msgstr "" "De actie \"{label}\" is succesvol uitgevoerd voor {success} van {total} " "bestellingen." -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -28362,15 +28480,15 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "Ongeldig bestelnummer of geen toegang tot deze bestelling." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Tickets downloaden is niet ingeschakeld voor dit product." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "De bestelling is verwijderd." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -28378,55 +28496,55 @@ msgstr "" "De bestelling kon niet worden verwijderd omdat sommige beperkingen (bijv. " "data aangemaakt door plug-ins) het niet toestaan." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" "Alleen bestellingen die in de testmodus zijn aangemaakt kunnen worden " "verwijderd." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "De bestelling is geweigerd, en is hierom nu geannuleerd." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Deze betaling is geannuleerd." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Deze betaling kan momenteel niet worden geannuleerd." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "De terugbetaling is geannuleerd." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Deze terugbetaling kan momenteel niet worden geannuleerd." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "De terugbetaling is verwerkt." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Deze terugbetaling kan momenteel niet worden verwerkt." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "De terugbetaling is gemarkeerd als uitgevoerd." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" "Het verzoek is verwijderd. Als u dit wilt kunt u nu de gebruiker hierover " "informeren." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Uw annuleringsverzoek" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -28443,7 +28561,7 @@ msgstr "" "\n" "Organisatie van {event}" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -28451,15 +28569,15 @@ msgstr "" "De betaling is als voltooid aangemerkt, maar we konden geen bevestigingsmail " "versturen." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "De betaling is als voltooid aangemerkt." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Deze betaling kan momenteel niet worden bevestigd." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " @@ -28469,12 +28587,12 @@ msgstr "" "terugbetaling in behandeling was. Controleer de bestelgegevens om te zien of " "de terugbetaling nog steeds nodig is." -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" "U voerde een bestelling in in een evenement met een andere munteenheid." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." @@ -28482,7 +28600,7 @@ msgstr "" "U kunt niet meer terugbetalen dan het bedrag van een betaling die nog niet " "is terugbetaald." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -28490,7 +28608,7 @@ msgstr "" "U koos een gedeeltelijke terugbetaling voor een betalingsmethode die alleen " "volledige terugbetalingen ondersteunt." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -28499,12 +28617,12 @@ msgstr "" "Een van de terugbetalingen kon niet worden verwerkt. Probeer op een andere " "manier terug te betalen. De foutmelding was: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "Een terugbetaling van {} is verwerkt." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -28513,18 +28631,18 @@ msgstr "" "Een terugbetaling van {} is opgeslagen, maar nog niet volledig uitgevoerd. U " "kunt de terugbetaling hieronder als voltooid aanmerken." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" "De cadeaubon is aangemaakt. U kunt de cadeauboncode nu naar de gebruiker " "sturen." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Uw cadeauboncode" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -28545,13 +28663,13 @@ msgstr "" "\n" "De organisatie van {event}" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "De terugbetalingen die u koos komen niet overeen met het gekozen totale " "terug te betalen bedrag." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -28559,11 +28677,11 @@ msgstr "" "De bestelling is als betaald aangemerkt, maar we konden geen " "bevestigingsmail versturen." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "De betaling is succesvol aangemaakt." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -28571,21 +28689,21 @@ msgstr "" "De bestelling is geannuleerd. U kunt nu kiezen hoe u het geld over wilt " "maken naar de gebruiker." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Geen btw-nummer opgegeven." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Geen land opgegeven." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" "Btw-nummer kon niet worden gecontroleerd omdat dit land niet wordt " "ondersteund." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -28593,66 +28711,66 @@ msgstr "" "Uw btw-nummer kon niet worden gecontroleerd, omdat de btw-controledienst van " "uw land momenteel niet beschikbaar is." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Dit btw-nummer is geldig." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Onbekende factuur." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "Facturen kunnen niet gewijzigd worden nadat ze zijn aangemaakt." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 #, fuzzy #| msgid "Invoices may not be changed after they are created." msgid "Invoices may not be changed after they are transmitted." msgstr "Facturen kunnen niet gewijzigd worden nadat ze zijn aangemaakt." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "De factuur is al geannuleerd." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "Het factuurbestand is al ge-exporteert." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "De factuur is te oud om opnieuw te genereren." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "Persoonlijke gegevens zijn uit de factuur verwijderd." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "Persoonlijke gegevens zijn uit de factuur verwijderd." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "De email is in de wachtrij gezet om te worden verstuurd." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Deze factuur is niet gevonden" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Het factuurbestand wordt niet meer opgeslagen op de server." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -28660,70 +28778,70 @@ msgstr "" "Het factuurbestand is nog niet gegenereerd, we zullen het nu voor u " "genereren. Probeer het over een paar seconden opnieuw." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "De betalingstermijn is veranderd." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" "We konden uw verzoek niet verwerken, omdat de server het te druk heeft." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Deze actie is alleen toegestaan voor openstaande bestellingen." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Deze actie is alleen toegestaan voor geannuleerde bestellingen." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Een fout is opgetreden. Zie de details hieronder." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "De bestelling is aangepast en de gebruiker is op de hoogte gesteld." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "De bestelling is aangepast." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" "We hadden moeite met het verwerken van uw invoer. Zie de fouten hieronder." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Niets hoefde te worden aangepast aan de bestelling." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "We konden de e-mail niet versturen. Zie onder voor details." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Onderwerp: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Uw bericht is in de wachtrij gezet en zal worden verstuurd naar {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Kon geen mail sturen naar de volgende gebruiker: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -28731,20 +28849,20 @@ msgstr "" "Deze link is niet meer geldig. Ga terug, ververs de pagina, en probeer het " "opnieuw." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Er is geen bestelling met de gegeven bestelcode." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "De gekozen exporteerder was niet gevonden." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" "Er was een probleem met het verwerken van uw invoer. Zie onder voor details." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " @@ -28753,17 +28871,17 @@ msgstr "" "De geplande export is opgeslagen. De volgende export begint omstreeks " "{datetime}." -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" "De geplande export is opgeslagen, maar er is geen volgende run gepland." -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "Export: {title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -28774,7 +28892,7 @@ msgstr "" "\n" "Als bijlage bij deze e-mail vindt u een nieuw rapport voor {name}." -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -28782,7 +28900,7 @@ msgid "" "therefore you cannot schedule it." msgstr "U heeft niet voldoende permissies om deze export uit te voeren." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " @@ -28792,11 +28910,11 @@ msgstr "" "Afhankelijk van de systeembelasting en het type en de grootte van de export " "kan dit enkele minuten duren." -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Alle bestellingen zijn geannuleerd." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " @@ -28805,7 +28923,7 @@ msgstr "" "De bestellingen zijn geannuleerd. Bij {count} bestellingen is er een fout " "opgetreden, controleer alstublieft alle nog niet geannuleerde bestellingen." -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "Uw invoer was ongeldig." @@ -29900,7 +30018,7 @@ msgstr "Badge-lay-out: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -29936,7 +30054,7 @@ msgid "" msgstr "" "Installeer het python-package 'chardet' voor betere CSV-importmogelijkheden." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -29950,23 +30068,23 @@ msgstr "" "of regelmatig een digitaal rekeningafschrift importeren om pretix de " "benodigde informatie te geven." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Bankrekeningtype" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "SEPA-bankrekening" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Andere bankrekening" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Naam van rekeninghouder" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -29974,35 +30092,35 @@ msgstr "" "Opgelet: andere tekens dan letters, nummers en sommige leestekens kunnen " "problemen veroorzaken bij sommige banken." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Naam van de bank" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Bankrekeninginformatie" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -30012,7 +30130,7 @@ msgstr "" "bankoverschrijving te sturen. Als u veel internationale klanten heeft hebben " "ze misschien uw volledige adres en het volledige adres van uw bank nodig." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -30022,27 +30140,27 @@ msgstr "" "klanten nodig zouden kunnen hebben om het geld over te maken, bijv. " "rekeningnummers, bankgegevens, adressen, etc." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Zet geen streepjes in de betalingscode." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Dit is in sommige landen verplicht." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Zet factuurnummer in de betalingscode." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Voorvoegsel voor de betalingscode" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Extra tekst om te tonen bij openstaande bestellingen" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -30050,11 +30168,11 @@ msgstr "" "Deze tekst zal naast de standaardtekst worden getoond op de " "bevestigingspagina voor openstaande bestellingen." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "IBAN-blokkadelijst voor terugbetalingen" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -30073,11 +30191,11 @@ msgstr "" "genegeerd worden bij de vergelijking, zodat u bijvoorbeeld DE0012345 kunt " "opgeven om alle Duitse IBANs te weigeren die met de bankcode 12345 beginnen." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Beperk tot zakelijke klanten" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -30085,23 +30203,23 @@ msgstr "" "Laat het kiezen van een betaalmethode toe voor klanten die een factuuradres " "ingeven en \"Zakelijke of institutionele klant\" selecteren." -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Vul de volgende bankrekeningdetails in." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Vul uw bankrekeninggegevens in." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Maak het volledige bedrag over naar de volgende bankrekening:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -30111,9 +30229,9 @@ msgstr "Maak het volledige bedrag over naar de volgende bankrekening:" msgid "Account holder" msgstr "Rekeninghouder" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -30123,27 +30241,27 @@ msgstr "Rekeninghouder" msgid "Bank" msgstr "Bank" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "Ongeldig IBAN/BIC" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Bankrekening {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" "Een terugbetaling via bankoverschrijving kan alleen van een bestaande " "betaling gestart worden." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (optioneel)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "Uw invoer was ongeldig, zie hieronder voor details." @@ -30178,8 +30296,8 @@ msgstr "De bestelling is al geannuleerd." msgid "Currencies do not match." msgstr "De munteenheden komen niet overeen." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -30188,8 +30306,8 @@ msgstr "" "bedrag over te maken naar het volgende bankrekeningnummer, met in de " "beschrijving een persoonlijke betalingscode:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." @@ -30197,14 +30315,14 @@ msgstr "" "Doe alstublieft nog geen betaling. We zullen na het afronden van de " "bestelling een persoonlijke betalingscode aan u toewijzen." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Betalingscode (belangrijk, plaats in omschrijving):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -30212,8 +30330,8 @@ msgstr "" "We zullen u nadat u de bestelling hebt geplaatst een persoonlijke " "betalingscode geven die u in de omschrijving moet zetten." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." @@ -37829,9 +37947,6 @@ msgstr "Kosovo" #~ "Maak eerst hier een configuratiecode om te beginnen met het scannen van " #~ "tickets met onze apps:" -#~ msgid "Create configuration" -#~ msgstr "Maak configuratie" - #~ msgid "Create a new configuration" #~ msgstr "Nieuwe configuratie aanmaken" diff --git a/src/pretix/locale/nl/LC_MESSAGES/djangojs.po b/src/pretix/locale/nl/LC_MESSAGES/djangojs.po index 68c7fa99bd..5ec1753d23 100644 --- a/src/pretix/locale/nl/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/nl/LC_MESSAGES/djangojs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: 1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-06-10 04:00+0000\n" "Last-Translator: Tim Maurizio Dullaart \n" "Language-Team: Dutch \n" "Language-Team: Dutch (informal) pretix" @@ -16587,6 +16612,26 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "Bevestig dat je ALLE datums in deze evenementenreeks wilt annuleren." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Bevestigingscode" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "De bevestigingscode die je invoerde was onjuist." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Deze slug is al in gebruik, kies een andere." @@ -17388,7 +17433,7 @@ msgstr "De gebruiker bevestigde het volgende bericht: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "De bestelling is geweigerd." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "De bestelling is geannuleerd." @@ -17480,11 +17525,11 @@ msgstr "De bestelling is aangemerkt als betaald." msgid "The order has been set to require payment before use." msgstr "De voucher is verstuurd naar {recipient}." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "De bestelling is aangemerkt als verlopen." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "De bestelling is aangemerkt als betaald." @@ -17496,7 +17541,7 @@ msgstr "Het annuleringsverzoek is verwijderd." msgid "The order has been refunded." msgstr "De bestelling is terugbetaald." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "De bestelling is opnieuw geactiveerd." @@ -17508,7 +17553,7 @@ msgstr "De bestelling is aangemaakt." msgid "The order requires approval before it can continue to be processed." msgstr "De bestelling moet worden goedgekeurd voordat hij kan worden verwerkt." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "De bestelling is goedgekeurd." @@ -17549,7 +17594,7 @@ msgstr "De vraag is aangepast." msgid "The order locale has been changed." msgstr "De taal van de bestelling is aangepast." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "De factuur is gegenereerd." @@ -17560,11 +17605,11 @@ msgstr "De factuur is gegenereerd." msgid "The invoice could not be generated." msgstr "De factuur is gegenereerd." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "De factuur is opnieuw gegenereerd." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "De factuur is opnieuw uitgegeven." @@ -19454,8 +19499,8 @@ msgid "Transaction ID" msgstr "Transacties" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -19623,7 +19668,7 @@ msgstr "Annuleren" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -20634,6 +20679,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Annuleer evenement" @@ -24056,13 +24103,13 @@ msgstr "Bestellingsdetails: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Goedkeuren" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Weigeren" @@ -24106,7 +24153,7 @@ msgstr "" "kan je de bestelling handmatig als verlopen markeren." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Terugbetaling voor overbetaling" @@ -24891,10 +24938,85 @@ msgstr "" "Gebruik deze functie niet meerdere keren voor hetzelfde evenement, omdat " "anders iedereen op de wachtlijst meerdere e-mails ontvangt." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Terug te betalen bedrag" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Annuleer alle bestellingen" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Stuur de volgende code mee als je contact met ons opneemt:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Checked in automatically" +msgid "Refunds will not happen automatically." +msgstr "Automatisch ingecheckt" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Stuur informatie via e-mail" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Start een terugbetaling van %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Ja, annuleer bestelling" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -25335,14 +25457,14 @@ msgid "Select action" msgstr "Kies een datum" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy #| msgid "Refund full paid amount" msgid "Refund overpaid amount" msgstr "Betaal volledige betaalde bedrag terug" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -27135,10 +27257,6 @@ msgstr "" "\"CONFIRM_CODE.txt\" met een code van zes tekens. Voer deze code hier in om " "te bevestigen dat je het bestand juist hebt gedownload." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Bevestigingscode" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -28835,7 +28953,7 @@ msgstr "Je bestelling: %(code)s" msgid "Unknown email renderer." msgstr "Onbekende e-mail-renderer." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Je vroeg een ongeldig kaartjesuitvoertype." @@ -28891,11 +29009,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Het commentaar is bijgewerkt." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Kon de opmerking niet bijwerken." @@ -29256,19 +29374,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "De toegang voor de gekozen applicatie is ingetrokken." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "We konden je wijzigingen niet opslaan. Zie hieronder voor details." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -29281,15 +29399,15 @@ msgid "Unknown order code or not authorized to access this order." msgstr "" "Onbekende bestelcode of niet gemachtigd om deze bestelling te bekijken." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Kaartjes downloaden is niet ingeschakeld voor dit product." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "De bestelling is verwijderd." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -29297,55 +29415,55 @@ msgstr "" "De bestelling kon niet worden verwijderd omdat sommige beperkingen (bijv. " "data aangemaakt door plug-ins) het niet toestaan." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" "Alleen bestellingen die in de testmodus zijn gemaakt kunnen worden " "verwijderd." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "De bestelling is geweigerd, en is hierom nu geannuleerd." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Deze betaling is geannuleerd." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Deze betaling kan momenteel niet worden geannuleerd." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "De terugbetaling is geannuleerd." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Deze terugbetaling kan momenteel niet worden geannuleerd." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "De terugbetaling is verwerkt." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Deze terugbetaling kan momenteel niet worden verwerkt." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "De terugbetaling is gemarkeerd als uitgevoerd." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" "Het verzoek is verwijderd. Als je dit wilt kan je nu de gebruiker hierover " "informeren." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Je annuleringsverzoek" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -29363,7 +29481,7 @@ msgstr "" "Met vriendelijke groeten, \n" "De organisatie van {event}" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -29371,28 +29489,28 @@ msgstr "" "De betaling is als voltooid aangemerkt, maar we konden geen bevestigingsmail " "versturen." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "De betaling is als voltooid aangemerkt." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Deze betaling kan momenteel niet worden bevestigd." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You entered an order that could not be found." msgid "You entered an order in an event with a different currency." msgstr "Je voerde een bestelling in die niet kon worden gevonden." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." @@ -29400,7 +29518,7 @@ msgstr "" "Je kan niet meer terugbetalen dan het bedrag van een betaling die nog niet " "is terugbetaald." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -29408,7 +29526,7 @@ msgstr "" "Je koos een gedeeltelijke terugbetaling voor een betalingsmethode die alleen " "volledige terugbetalingen ondersteunt." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -29417,12 +29535,12 @@ msgstr "" "Een van de terugbetalingen kon niet worden verwerkt. Probeer op een andere " "manier terug te betalen. De foutmelding was: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "Een terugbetaling van {} is verwerkt." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -29431,18 +29549,18 @@ msgstr "" "Een terugbetaling van {} is opgeslagen, maar nog niet volledig uitgevoerd. " "Je kan de terugbetaling hieronder als voltooid aanmerken." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" "De cadeaubon is aangemaakt. Je kan de cadeauboncode nu naar de gebruiker " "sturen." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Je cadeauboncode" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -29463,13 +29581,13 @@ msgstr "" "\n" "De organisatie van {event}" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "De terugbetalingen die je koos komen niet overeen met het gekozen totale " "terug te betalen bedrag." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -29477,11 +29595,11 @@ msgstr "" "De bestelling is als betaald aangemerkt, maar we konden geen " "bevestigingsmail versturen." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "De betaling is succesvol aangemaakt." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -29489,15 +29607,15 @@ msgstr "" "De bestelling is geannuleerd. Je kan nu kiezen hoe je het geld over wilt " "maken naar de gebruiker." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Geen btw-nummer opgegeven." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Geen land opgegeven." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 #, fuzzy #| msgid "" #| "VAT ID could not be checked since a non-EU country has been specified." @@ -29506,7 +29624,7 @@ msgstr "" "Btw-nummer kon niet worden gecontroleerd, omdat een land van buiten de EU " "was opgegeven." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -29514,68 +29632,68 @@ msgstr "" "Je btw-nummer kon niet worden gecontroleerd, omdat de btw-controledienst van " "jouw land momenteel niet beschikbaar is." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Dit btw-nummer is geldig." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Onbekende factuur." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "De factuur is al geannuleerd." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 #, fuzzy #| msgid "The invoice has already been canceled." msgid "The invoice file has already been exported." msgstr "De factuur is al geannuleerd." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 #, fuzzy #| msgid "The invoice has been regenerated." msgid "The invoice file is too old to be regenerated." msgstr "De factuur is opnieuw gegenereerd." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "Persoonlijke gegevens zijn uit de factuur verwijderd." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "Persoonlijke gegevens zijn uit de factuur verwijderd." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "De email is in de wachtrij gezet om te worden verstuurd." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Deze factuur is niet gevonden" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Het factuurbestand wordt niet meer opgeslagen op de server." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -29583,70 +29701,70 @@ msgstr "" "Het factuurbestand is nog niet gegenereerd, we zullen het nu voor je " "aanmaken. Probeer het over een paar seconden opnieuw." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "De betalingstermijn is veranderd." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" "We konden je verzoek niet verwerken, omdat de server het te druk heeft." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Deze actie is alleen toegestaan voor openstaande bestellingen." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Deze actie is alleen toegestaan voor geannuleerde bestellingen." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Er is iets misgegaan. Zie de details hieronder." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "De bestelling is aangepast en de gebruiker is op de hoogte gesteld." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "De bestelling is aangepast." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" "We hadden moeite met het verwerken van je invoer. Zie de fouten hieronder." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Niets hoefde te worden aangepast aan de bestelling." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "We konden de e-mail niet versturen. Zie onder voor details." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Onderwerp: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Je bericht is in de wachtrij gezet en zal worden verstuurd naar {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Kon geen mail sturen naar de volgende gebruiker: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -29654,37 +29772,37 @@ msgstr "" "Deze link is niet meer geldig. Ga terug, ververs de pagina, en probeer het " "opnieuw." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Er is geen bestelling met de gegeven bestelcode." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "De gekozen exporteerder was niet gevonden." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" "Er was een probleem met het verwerken van je invoer. Zie onder voor details." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, fuzzy, python-brace-format #| msgid "Export date" msgid "Export: {title}" msgstr "Exportdatum" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -29692,7 +29810,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have permission to perform this action." msgid "" @@ -29700,18 +29818,18 @@ msgid "" "therefore you cannot schedule it." msgstr "Je hebt geen toestemming om deze actie uit te voeren." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Alle bestellingen zijn geannuleerd." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " @@ -29720,7 +29838,7 @@ msgstr "" "De bestellingen zijn geannuleerd. Bij {count} bestellingen is er een fout " "opgetreden, controleer alsjeblieft alle nog niet geannuleerde bestellingen." -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "Je invoer was ongeldig." @@ -30911,7 +31029,7 @@ msgstr "Badge-lay-out: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -30945,7 +31063,7 @@ msgid "" msgstr "" "Installeer het python-package 'chardet' voor betere CSV-importmogelijkheden." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -30959,57 +31077,57 @@ msgstr "" "of regelmatig een digitaal rekeningafschrift importeren om pretix de " "benodigde informatie te geven." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Bankrekeningtype" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "SEPA-bankrekening" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Andere bankrekening" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Naam van rekeninghouder" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Naam van de bank" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Bankrekeninginformatie" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -31019,7 +31137,7 @@ msgstr "" "bankoverschrijving te sturen. Als je veel internationale klanten hebt hebben " "ze misschien jouw volledige adres en het volledige adres van je bank nodig." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -31029,27 +31147,27 @@ msgstr "" "klanten nodig zouden kunnen hebben om het geld over te maken, bijv. " "rekeningnummers, bankgegevens, adressen, etc." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Zet geen streepjes in de betalingscode." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Dit is in sommige landen verplicht." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Zet factuurnummer in de betalingscode." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Voorvoegsel voor de betalingscode" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Extra tekst om te tonen bij openstaande bestellingen" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -31057,11 +31175,11 @@ msgstr "" "Deze tekst zal naast de standaardtekst worden getoond op de " "bevestigingspagina voor openstaande bestellingen." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "IBAN-blokkadelijst voor terugbetalingen" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 #, fuzzy #| msgid "" #| "Put one IBAN or IBAN prefix per line. The system will not attempt to send " @@ -31085,35 +31203,35 @@ msgstr "" "kan hier ook landcodes zoals \"GB\" of \"NL\" invullen als je nooit " "automatisch terugbetalingen wilt overmaken naar IBANs uit een bepaald land." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy #| msgid "Business customers" msgid "Restrict to business customers" msgstr "Zakelijke klanten" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Vul de volgende bankrekeningdetails in." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Vul je bankrekeninggegevens in." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Maak het volledige bedrag over naar de volgende bankrekening:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -31123,9 +31241,9 @@ msgstr "Maak het volledige bedrag over naar de volgende bankrekening:" msgid "Account holder" msgstr "Rekeninghouder" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -31135,27 +31253,27 @@ msgstr "Rekeninghouder" msgid "Bank" msgstr "Bank" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "Ongeldig IBAN/BIC" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Bankrekening {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" "Een terugbetaling via bankoverschrijving kan alleen van een bestaande " "betaling gestart worden." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (optioneel)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "Je invoer was ongeldig, zie hieronder voor details." @@ -31192,8 +31310,8 @@ msgstr "De bestelling is al geannuleerd." msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -31202,8 +31320,8 @@ msgstr "" "bedrag over te maken naar het volgende bankrekeningnummer, met in de " "beschrijving een persoonlijke betalingscode:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 #, fuzzy #| msgid "" #| "We will assign you a personal reference code to use after you completed " @@ -31215,14 +31333,14 @@ msgstr "" "We zullen je nadat je de bestelling hebt geplaatst een persoonlijke " "betalingscode geven die je in de omschrijving moet zetten." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Betalingscode (belangrijk, zet in omschrijving):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -31230,8 +31348,8 @@ msgstr "" "We zullen je nadat je de bestelling hebt geplaatst een persoonlijke " "betalingscode geven die je in de omschrijving moet zetten." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." @@ -39272,9 +39390,6 @@ msgstr "Kosovo" #~ "Maak eerst hier een configuratiecode om te beginnen met het scannen van " #~ "kaartjes met onze apps:" -#~ msgid "Create configuration" -#~ msgstr "Maak configuratie" - #~ msgid "Create a new configuration" #~ msgstr "Nieuwe configuratie aanmaken" diff --git a/src/pretix/locale/nl_Informal/LC_MESSAGES/djangojs.po b/src/pretix/locale/nl_Informal/LC_MESSAGES/djangojs.po index 517c7f22ad..9e11289dea 100644 --- a/src/pretix/locale/nl_Informal/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/nl_Informal/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2021-08-05 04:00+0000\n" "Last-Translator: Maarten van den Berg \n" "Language-Team: Dutch (informal) \n" "Language-Team: Polish pretix" @@ -16081,6 +16106,26 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "Potwierdź, że chcesz anulować wszystkie daty w tej serii wydarzeń." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Kod potwierdzenia" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Wprowadzony przez ciebie kod potwierdzenia był nieprawidłowy." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Ten skrót został jest już w użyciu. Wybierz inny." @@ -16845,7 +16890,7 @@ msgstr "Użytkownik potwierdził następującą wiadomość: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Zamówienie zostało anulowane (komentarz: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Zamówienie zostało anulowane." @@ -16932,11 +16977,11 @@ msgid "The order has been set to require payment before use." msgstr "" "Zamówienie zostało ustawione tak, aby wymagało płatności przed użyciem." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "Zamówienie zostało oznaczone jako wygasłe." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "Zamówienie zostało oznaczone jako opłacone." @@ -16948,7 +16993,7 @@ msgstr "Żądanie anulowania zostało usunięte." msgid "The order has been refunded." msgstr "Płatność za zamówienie została zwrócona." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "Zamówienie zostało reaktywowane." @@ -16960,7 +17005,7 @@ msgstr "Zamówienie zostało utworzone." msgid "The order requires approval before it can continue to be processed." msgstr "Zamówienie wymaga zatwierdzenia, zanim będzie mogło być przetwarzane." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "Zamówienie zostało zatwierdzone." @@ -16997,7 +17042,7 @@ msgstr "Konto klienta zostało zmienione." msgid "The order locale has been changed." msgstr "Lokalizacja zamówienia została zmieniona." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Faktura została wygenerowana." @@ -17008,11 +17053,11 @@ msgstr "Faktura została wygenerowana." msgid "The invoice could not be generated." msgstr "Faktura została wygenerowana." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Faktura została wygenerowana ponownie." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Faktura została wystawiona ponownie." @@ -18763,8 +18808,8 @@ msgid "Transaction ID" msgstr "Identyfikator transakcji" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18918,7 +18963,7 @@ msgstr "Anuluj" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19957,6 +20002,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Anuluj wydarzenie" @@ -23267,13 +23314,13 @@ msgstr "Szczegóły zamówienia: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Zatwierdź" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Odmów" @@ -23315,7 +23362,7 @@ msgstr "" "ręcznie oznaczyć je jako wygasłe." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Zwrot nadpłaty" @@ -24075,10 +24122,89 @@ msgstr "" "przeciwnym razie wszyscy na liście oczekujących otrzymają wiele wiadomości e-" "mail." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Kwota zwrotu" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Anuluj wszystkie zamówienia" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "" +"Poniższy kod pomoże zdiagnozować ten konkretny problem - załącz go do " +"komunikacji z nami:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "Tekst (jeśli zamówienie nie wygasa automatycznie)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Wyślij informację pocztą elektroniczną" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Zainicjuj zwrot %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Tak, anuluj zamówienie" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24497,12 +24623,12 @@ msgid "Select action" msgstr "Wybierz akcję" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "Zwróć nadpłaconą kwotę" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "Oznacz jako wygasły, jeśli jest przeterminowany" @@ -26233,10 +26359,6 @@ msgstr "" "sześcioznakowym kodem. Wprowadź ten kod, aby potwierdzić pomyślne pobranie " "pliku." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Kod potwierdzenia" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -27851,7 +27973,7 @@ msgstr "Twoje zamówienie: %(code)s" msgid "Unknown email renderer." msgstr "Nieznany renderer wiadomości e-mail." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Zażądano nieprawidłowego typu wyjściowego biletu." @@ -27906,11 +28028,11 @@ msgstr "" "W szczególności następujące wtyczki nadal zawierają dane zależne od tego " "wydarzenia: {plugin_names}" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Komentarz został zaktualizowany." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Nie można zaktualizować komentarza." @@ -28307,17 +28429,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Dostęp do wybranej aplikacji został cofnięty." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "Nie mogliśmy przetworzyć twoich danych wejściowych. Poniżej szczegóły." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "Pomyślnie wykonano akcję \"{label}\" na {success} z {total} zamówień." -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -28330,15 +28452,15 @@ msgid "Unknown order code or not authorized to access this order." msgstr "" "Nieznany kod zamówienia lub brak autoryzacji dostępu do tego zamówienia." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Pobieranie biletów nie jest włączone dla tego produktu." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "Zamówienie zostało usunięte." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -28346,53 +28468,53 @@ msgstr "" "Zamówienie nie mogło zostać usunięte, ponieważ niektóre ograniczenia (np. " "dane utworzone przez wtyczki) na to nie pozwalają." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "Usunąć można tylko zamówienia utworzone w trybie testowym." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "Zamówienie zostało odrzucone i w związku z tym anulowane." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Ta płatność została anulowana." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Tej płatności nie można obecnie anulować." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "Zwrot został anulowany." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Ten zwrot nie może być obecnie anulowany." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "Zwrot został przetworzony." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Ten zwrot nie może być obecnie przetworzony." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "Zwrot został oznaczony jako wykonany." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" "Żądanie zostało usunięte. Jeśli chcesz, możesz teraz poinformować o tym " "użytkownika." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Twoja prośba o anulowanie" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -28408,7 +28530,7 @@ msgstr "" "\n" "Twój zespół - {event}" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -28416,15 +28538,15 @@ msgstr "" "Płatność została oznaczona jako zakończona, ale nie mogliśmy wysłać " "wiadomości z potwierdzeniem." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "Płatność została oznaczona jako zrealizowana." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Ta płatność nie może być obecnie potwierdzona." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " @@ -28434,11 +28556,11 @@ msgstr "" "samym czasie. Prosimy o zapoznanie się ze szczegółami zamówienia i " "sprawdzenie, czy zwrot jest nadal konieczny." -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "Wprowadzono zamówienie w wydarzeniu z inną walutą." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." @@ -28446,7 +28568,7 @@ msgstr "" "Nie można zwrócić więcej niż kwota płatności, która nie została jeszcze " "zwrócona." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -28454,7 +28576,7 @@ msgstr "" "Wybrano częściowy zwrot kosztów dla metody płatności, która obsługuje tylko " "pełne zwroty kosztów." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -28463,12 +28585,12 @@ msgstr "" "Jeden ze zwrotów nie został przetworzony. Powinieneś ponowić próbę dokonania " "zwrotu w inny sposób. Komunikat o błędzie brzmiał: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "Zwrot w wysokości {} został przetworzony." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -28477,18 +28599,18 @@ msgstr "" "Zwrot {} został zapisany, ale nie został jeszcze w pełni wykonany. Poniżej " "możesz oznaczyć go jako zakończony." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" "Utworzono nową kartę podarunkową. Możesz teraz wysłać użytkownikowi kod " "karty podarunkowej." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Kod karty podarunkowej" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -28509,11 +28631,11 @@ msgstr "" "\n" "Twój zespół - {event}" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "Wybrane zwroty nie są zgodne z wybraną całkowitą kwotą zwrotu." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -28521,11 +28643,11 @@ msgstr "" "Zamówienie zostało oznaczone jako opłacone, ale nie mogliśmy wysłać " "wiadomości potwierdzającej." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "Płatność została utworzona pomyślnie." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -28533,21 +28655,21 @@ msgstr "" "Zamówienie zostało anulowane. Możesz teraz wybrać, w jaki sposób chcesz " "przelać pieniądze z powrotem do użytkownika." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Nie określono identyfikatora VAT." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Nie określono kraju." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" "Identyfikator VAT nie mógł zostać sprawdzony, ponieważ ten kraj nie jest " "obsługiwany." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -28555,66 +28677,66 @@ msgstr "" "Identyfikator VAT nie mógł zostać sprawdzony, ponieważ usługa sprawdzania " "VAT w kraju jest obecnie niedostępna." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Ten identyfikator VAT jest ważny." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Nieznana faktura." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "Faktury nie mogą być zmieniane po ich utworzeniu." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 #, fuzzy #| msgid "Invoices may not be changed after they are created." msgid "Invoices may not be changed after they are transmitted." msgstr "Faktury nie mogą być zmieniane po ich utworzeniu." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "Faktura została już anulowana." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "Plik faktury został już wyeksportowany." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "Plik faktury jest zbyt stary, aby go zregenerować." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "Faktura została oczyszczona z danych osobowych." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "Faktura została oczyszczona z danych osobowych." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "Wiadomość e-mail została umieszczona w kolejce do wysłania." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Ta faktura nie została odnaleziona" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Plik faktury nie jest już przechowywany na serwerze." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -28622,11 +28744,11 @@ msgstr "" "Plik faktury nie został jeszcze wygenerowany, wygenerujemy go teraz. Spróbuj " "ponownie za kilka sekund." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Termin płatności został zmieniony." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." @@ -28634,28 +28756,28 @@ msgstr "" "Nie byliśmy w stanie w pełni przetworzyć żądania, ponieważ serwer był zbyt " "zajęty." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Ta czynność jest dozwolona tylko w przypadku zamówień w toku." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Ta czynność jest dozwolona tylko w przypadku anulowanych zamówień." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Wystąpił błąd. Sprawdź szczegóły poniżej." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "Zamówienie zostało zmienione, a użytkownik został o tym powiadomiony." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "Zamówienie zostało zmienione." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." @@ -28663,52 +28785,52 @@ msgstr "" "Wystąpiły trudności z przetworzeniem danych wejściowych. Przejrzyj poniższe " "błędy." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Nic w zamówieniu nie musiało zostać zmienione." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "Nie mogliśmy wysłać wiadomości e-mail. Szczegóły znajdują się poniżej." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Temat: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Wiadomość została umieszczona w kolejce i zostanie wysłana do {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Nie udało się wysłać poczty do następującego użytkownika: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" "Ten link jest już nieaktualny. Wróć, odśwież stronę i spróbuj ponownie." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Nie ma zamówienia z podanym kodem zamówienia." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "Wybrany eksporter nie został znaleziony." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" "Wystąpił problem z przetwarzaniem danych wejściowych. Szczegóły błędu " "znajdują się poniżej." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " @@ -28717,17 +28839,17 @@ msgstr "" "Harmonogram eksportu został zapisany. Następny eksport rozpocznie się około " "{datetime}." -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" "Harmonogram eksportu został zapisany, ale nie zaplanowano kolejnego eksportu." -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "Eksport: {title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -28739,7 +28861,7 @@ msgstr "" "W załączniku do tej wiadomości e-mail znajduje się nowy zaplanowany raport " "dla {name}." -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -28747,7 +28869,7 @@ msgid "" "therefore you cannot schedule it." msgstr "Nie masz wystarczającej zgody na wykonanie tego eksportu." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " @@ -28757,11 +28879,11 @@ msgstr "" "zależności od obciążenia systemu oraz typu i rozmiaru eksportu może to " "potrwać kilka minut." -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Wszystkie zamówienia zostały anulowane." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " @@ -28770,7 +28892,7 @@ msgstr "" "Zamówienia zostały anulowane. Wystąpił błąd z {count} zamówieniami, sprawdź " "wszystkie nie anulowane zamówienia." -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "Wprowadzone dane były niepoprawne." @@ -29869,7 +29991,7 @@ msgstr "Układ identyfikatora: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -29906,7 +30028,7 @@ msgstr "" "Zainstaluj pakiet Python \"chardet\", aby uzyskać lepsze możliwości importu " "CSV." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -29919,23 +30041,23 @@ msgstr "" "Dlatego będę ręcznie oznaczać płatności jako kompletne lub regularnie " "importować cyfrowy wyciąg bankowy, aby przekazać pretix wymagane informacje." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Typ konta bankowego" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "Konto bankowe SEPA" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Inne konto bankowe" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Imię i nazwisko posiadacza konta" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -29943,35 +30065,35 @@ msgstr "" "Uwaga: znaki specjalne inne niż litery, cyfry i niektóre znaki " "interpunkcyjne mogą powodować problemy z niektórymi bankami." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "Numer IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "Numer BIC (SWIFT)" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Nazwa banku" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Dane konta bankowego" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -29981,7 +30103,7 @@ msgstr "" "wysłania płatności przelewem bankowym. Jeśli masz wielu międzynarodowych " "klientów, mogą potrzebować pełnego adresu Twojej firmy i banku." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -29991,27 +30113,27 @@ msgstr "" "dodaj wszystko, czego potrzebują Twoi klienci, aby przelać pieniądze, np. " "numery kont, numery rozliczeniowe, adresy itp." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "W tytule płatności nie należy umieszczać myślników." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Jest to wymagane w niektórych krajach." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "W tytule płatności należy podać numer faktury." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Prefiks dla numeru referencyjnego (tytułu) płatności" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Dodatkowy tekst wyświetlany na zamówieniach w toku" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -30019,11 +30141,11 @@ msgstr "" "Ten tekst będzie wyświetlany na stronie potwierdzenia zamówienia dla " "zamówień w toku (oprócz standardowego tekstu)." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "Lista blokad IBAN dla zwrotów" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -30042,11 +30164,11 @@ msgstr "" "więc możesz np. zablokować DE0012345, aby zablokować wszystkie niemieckie " "numery IBAN z identyfikatorem banku zaczynającym się od 12345." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Ogranicz do klientów biznesowych" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -30054,23 +30176,23 @@ msgstr "" "Zezwól na wybór tego dostawcy płatności tylko klientom, którzy wprowadzą " "adres faktury i wybiorą opcję \"Klient biznesowy lub instytucjonalny\"." -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Prosimy o podanie danych konta bankowego." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Wprowadź dane swojego konta bankowego." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Prześlij pełną kwotę na następujące konto bankowe:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -30080,9 +30202,9 @@ msgstr "Prześlij pełną kwotę na następujące konto bankowe:" msgid "Account holder" msgstr "Właściciel konta" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -30092,25 +30214,25 @@ msgstr "Właściciel konta" msgid "Bank" msgstr "Bank" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "Nieprawidłowy IBAN/BIC" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Konto bankowe {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "Zwrot przelewem bankowym można utworzyć tylko z istniejącej płatności." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (opcjonalnie)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "Wprowadzone dane były nieprawidłowe, szczegóły znajdują się poniżej." @@ -30145,8 +30267,8 @@ msgstr "Zamówienie zostało już anulowane." msgid "Currencies do not match." msgstr "Waluty nie pasują do siebie." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -30154,8 +30276,8 @@ msgstr "" "Po utworzeniu zamówienia, poprosimy o przelanie pieniędzy na następujące " "konto bankowe, umieszczając następujący kod w tytule przelewu:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." @@ -30163,22 +30285,22 @@ msgstr "" "Proszę jeszcze nie rozpoczynać płatności. Przypiszemy ci osobisty kod " "referencyjny po zakończeniu zamówienia." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Kod referencyjny (tytuł przelewu) (ważny):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" "Kod do umieszczenia w tytule zostanie przypisany po przesłaniu zamówienia." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/pl/LC_MESSAGES/djangojs.po b/src/pretix/locale/pl/LC_MESSAGES/djangojs.po index aa84d4b433..1b83e8314f 100644 --- a/src/pretix/locale/pl/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/pl/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-04-28 01:00+0000\n" "Last-Translator: Anarion Dunedain \n" "Language-Team: Polish \n" "Language-Team: Polish (informal) pretix" @@ -14424,6 +14447,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -15085,7 +15126,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -15169,11 +15210,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -15185,7 +15226,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -15197,7 +15238,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -15232,7 +15273,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -15243,11 +15284,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "Zameldowanie biletu cofnięte" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16903,8 +16944,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -17055,7 +17096,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17931,6 +17972,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20840,13 +20883,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20885,7 +20928,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21561,10 +21604,80 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Generate automatically" +msgid "Refunds will not happen automatically." +msgstr "Generuj automatycznie" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Pending orders" +msgid "Proceed and cancel orders" +msgstr "Oczekujące zamówienia" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21960,12 +22073,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23482,10 +23595,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24930,7 +25039,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24978,11 +25087,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -25318,17 +25427,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -25340,65 +25449,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25409,72 +25518,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25487,201 +25596,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25689,31 +25798,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26736,7 +26845,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26769,7 +26878,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26778,101 +26887,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26883,33 +26992,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26919,9 +27028,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26931,25 +27040,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26984,35 +27093,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/pl_Informal/LC_MESSAGES/djangojs.po b/src/pretix/locale/pl_Informal/LC_MESSAGES/djangojs.po index a735431eae..c7e69fb0ee 100644 --- a/src/pretix/locale/pl_Informal/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/pl_Informal/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-01-19 06:00+0000\n" "Last-Translator: Serge Bazanski \n" "Language-Team: Polish (informal) \n" "Language-Team: Portuguese pretix" @@ -14419,6 +14442,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -15097,7 +15138,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -15181,11 +15222,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -15197,7 +15238,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -15209,7 +15250,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -15244,7 +15285,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -15254,11 +15295,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "O valor foi creditado no seu cartão." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16958,8 +16999,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -17111,7 +17152,7 @@ msgstr "Cancelar" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17985,6 +18026,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20916,13 +20959,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20961,7 +21004,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21641,10 +21684,74 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +msgid "Proceed and cancel orders" +msgstr "" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -22047,12 +22154,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23598,10 +23705,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -25052,7 +25155,7 @@ msgstr "Código de pedido" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -25100,11 +25203,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -25442,19 +25545,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "Nós não pudemos salvar suas alterações. Veja detalhes abaixo." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -25466,65 +25569,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "Código de pedido desconhecido ou não autorizado a acessar este pedido." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25535,72 +25638,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25613,201 +25716,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25815,31 +25918,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26906,7 +27009,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26939,7 +27042,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26948,101 +27051,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -27053,35 +27156,35 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy #| msgid "Limit to products" msgid "Restrict to business customers" msgstr "Limite de produtos" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -27091,9 +27194,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -27103,25 +27206,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -27156,35 +27259,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/pt/LC_MESSAGES/djangojs.po b/src/pretix/locale/pt/LC_MESSAGES/djangojs.po index a7ec4b3a57..bf04a2b29b 100644 --- a/src/pretix/locale/pt/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/pt/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-06-05 04:00+0000\n" "Last-Translator: Francisco Rosa \n" "Language-Team: Portuguese \n" "Language-Team: Portuguese (Brazil) pretix" @@ -15979,6 +16004,26 @@ msgstr "" "Por favor, confirme que você deseja cancelar TODAS as datas desta série de " "eventos." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Código de confirmação" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "O código de confirmação inserido estava incorreto." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Este slug já está em uso. Por favor, escolha um diferente." @@ -16736,7 +16781,7 @@ msgstr "O usuário confirmou a seguinte mensagem: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "O pedido foi cancelado (comentário: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Pedido cancelado." @@ -16820,11 +16865,11 @@ msgstr "O pedido foi definido para ser utilizável antes de ser pago." msgid "The order has been set to require payment before use." msgstr "O pedido foi definido para exigir pagamento antes do uso." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "O pedido foi marcado como expirado." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "O pedido foi marcado como pago." @@ -16836,7 +16881,7 @@ msgstr "A solicitação de cancelamento foi excluída." msgid "The order has been refunded." msgstr "O pedido foi reembolsado." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "O pedido foi reativado." @@ -16848,7 +16893,7 @@ msgstr "O pedido foi criado." msgid "The order requires approval before it can continue to be processed." msgstr "O pedido requer aprovação antes de continuar a ser processado." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "O pedido foi aprovado." @@ -16887,7 +16932,7 @@ msgstr "A conta do cliente foi alterada." msgid "The order locale has been changed." msgstr "A localização do pedido foi alterada." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "A fatura foi gerada." @@ -16898,11 +16943,11 @@ msgstr "A fatura foi gerada." msgid "The invoice could not be generated." msgstr "A fatura foi gerada." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "A fatura foi gerada novamente." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "A fatura foi reemitida." @@ -18644,8 +18689,8 @@ msgid "Transaction ID" msgstr "ID de transação" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18799,7 +18844,7 @@ msgstr "Cancelar" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19824,6 +19869,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Cancelar evento" @@ -23007,13 +23054,13 @@ msgstr "Detalhes do pedido: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Aprovar" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Negar" @@ -23055,7 +23102,7 @@ msgstr "" "precisa marcá-lo como expirado manualmente." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Reembolso por pagamento em excesso" @@ -23783,10 +23830,86 @@ msgstr "" "Você não deve executar essa função várias vezes para o mesmo evento, ou " "todos na lista de espera receberão vários e-mails." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Valor de reembolso" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Cancelar todos os pedidos" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "" +"Se você entrar em contato conosco, por favor, nos informe o seguinte código:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "Texto (se o pedido não expirar automaticamente)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Enviar informação por email" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Iniciar um reembolso de %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Sim, cancele o pedido" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24198,12 +24321,12 @@ msgid "Select action" msgstr "Selecionar ação" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "Reembolsar o valor pago em excesso" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "Marcar como expirado se estiver vencido" @@ -25770,10 +25893,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Código de confirmação" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -27301,7 +27420,7 @@ msgstr "Seu pedido: %(code)s" msgid "Unknown email renderer." msgstr "Renderizador de eemail desconhecido." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -27351,11 +27470,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "O comentário foi atualizado." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Não foi possível atualizar o comentário." @@ -27710,18 +27829,18 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Acesso à aplicação selecionada foi revogado." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "Não conseguimos processar sua entrada. Veja detalhes abaixo." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" "Ação \"{label}\" executada com sucesso em {success} de {total} pedidos." -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -27734,15 +27853,15 @@ msgid "Unknown order code or not authorized to access this order." msgstr "" "Código de pedido desconhecido ou não autorizado para acessar este pedido." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "O download de ingressos não está habilitado para este produto." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "O pedido foi excluído." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -27750,52 +27869,52 @@ msgstr "" "O pedido não pode ser excluído pois algumas restrições (p. ex. dados criados " "por plugins) não permitem." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "Apenas pedidos criados em modo de teste podem ser excluídos." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "O pedido foi negado e, portanto, agora está cancelado." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Este pagamento foi cancelado." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Este pagamento não pode ser cancelado no momento." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "O reembolso foi cancelado." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Este reembolso não pode ser cancelado no momento." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "O reembolso foi processado." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Este reembolso não pode ser processado no momento." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "O reembolso foi marcado como concluído." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" "A solicitação foi removida. Se você quiser, pode informar ao usuário agora." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Seus pedidos de cancelamento" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -27812,7 +27931,7 @@ msgstr "" "\n" "Organização {event}" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -27820,15 +27939,15 @@ msgstr "" "O pagamento foi marcado como completado, mas não conseguimos enviar um email " "de confirmação." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "O pagamento foi marcado como completo." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Este pagamento não pode ser confirmado no momento." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " @@ -27837,11 +27956,11 @@ msgstr "" "Já existe um reembolso sendo processado ao mesmo tempo. Por favor, acesse os " "detalhes do pedido e verifique se o seu reembolso ainda é necessário." -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "Você inseriu um pedido em um evento com uma moeda diferente." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." @@ -27849,7 +27968,7 @@ msgstr "" "Você não pode reembolsar mais do que o valor de um pagamento que ainda não " "foi reembolsado." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -27857,7 +27976,7 @@ msgstr "" "Você selecionou um reembolso parcial para uma forma de pagamento que suporta " "apenas reembolsos totais." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -27866,12 +27985,12 @@ msgstr "" "Um dos reembolsos não foi processado. Você deve tentar reembolsar novamente " "de uma maneira diferente. A mensagem de erro foi: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "Um reembolso de {} foi processado." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -27880,17 +27999,17 @@ msgstr "" "Um reembolso de {} foi salvo, mas ainda não totalmente executado. Você pode " "marcá-lo como concluído abaixo." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" "Um novo cartão-presente foi criado. Você pode enviá-lo agora ao usuário." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Seu código de cartão-presente" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -27911,13 +28030,13 @@ msgstr "" "\n" "Organização {event}" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "Os reembolsos selecionados não correspondem ao valor total do reembolso " "selecionado." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -27925,11 +28044,11 @@ msgstr "" "O pedido foi marcado como pago, mas não foi possível enviar um e-mail de " "confirmação." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "O pagamento foi criado com sucesso." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -27937,84 +28056,84 @@ msgstr "" "O pedido foi cancelado. Agora você pode selecionar como deseja transferir o " "dinheiro de volta para o usuário." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Nenhum país especificado." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Fatura desconhecida." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "As faturas não podem ser alteradas depois de criadas." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 #, fuzzy #| msgid "Invoices may not be changed after they are created." msgid "Invoices may not be changed after they are transmitted." msgstr "As faturas não podem ser alteradas depois de criadas." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "A fatura já foi cancelada." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "O arquivo de fatura já foi exportado." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "A fatura é muito antiga para ser gerada novamente." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "A fatura foi limpa de dados pessoais." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "A fatura foi limpa de dados pessoais." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "O e-mail foi colocado na fila para ser enviado." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Esta fatura não foi encontrada" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "O arquivo de fatura não está mais armazenado no servidor." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -28022,11 +28141,11 @@ msgstr "" "O arquivo de fatura ainda não foi gerado, vamos gerá-lo para você agora. " "Tente novamente em alguns segundos." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "O prazo de pagamento foi alterado." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." @@ -28034,58 +28153,58 @@ msgstr "" "Não conseguimos processar a solicitação completamente, pois o servidor " "estava muito ocupado." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Esta ação não é permitida para pedidos pendentes." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Esta ação não é permitida para pedidos cancelados." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Ocorreu um erro. Por favor, veja os detalhes abaixo." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "O pedido foi alterado e o usuário foi notificado." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "O pedido foi alterado." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Nada sobre o pedido teve que ser alterado." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "Não foi possível enviar o e-mail. Veja abaixo os detalhes." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Assunto: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Sua mensagem foi enfileirada e será enviada para {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Falha no envio de email para o seguinte usuário: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -28093,36 +28212,36 @@ msgstr "" "Este link não é mais válido. Por favor, recarregue a página e tente " "novamente." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Não há pedido com o código de pedido fornecido." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "O exportador seleccionado não foi encontrado." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" "Houve um problema ao processar sua entrada. Veja abaixo os detalhes do erro." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "Exportar: {title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -28130,7 +28249,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -28138,25 +28257,25 @@ msgid "" "therefore you cannot schedule it." msgstr "Você não tem permissão suficiente para executar essa exportação." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Todos os pedidos foram cancelados." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "Sua entrada não era válida." @@ -29205,7 +29324,7 @@ msgstr "Modelo do crachá: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -29238,7 +29357,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -29252,23 +29371,23 @@ msgstr "" "importarei regularmente um extrato bancário digital para fornecer ao pretix " "as informações necessárias." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Tipo de conta bancária" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "Conta bancária SEPA" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Outra conta bancária" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Nome do titular da conta" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -29276,35 +29395,35 @@ msgstr "" "Observação: caracteres especiais que não sejam letras, números e alguma " "pontuação podem causar problemas em alguns bancos." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Nome da Banco" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Detalhes da Conta Bancária" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -29315,7 +29434,7 @@ msgstr "" "eles podem precisar do seu endereço completo e do endereço completo do seu " "banco." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -29325,27 +29444,27 @@ msgstr "" "o que seus clientes precisam para transferir o dinheiro, por exemplo, " "números de conta, números de roteamento, endereços, etc." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Não inclua hífens na referência de pagamento." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Isso é necessário em alguns países." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Inclua o número da fatura na referência de pagamento." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Prefixo para a referência de pagamento" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Texto adicional para exibir em pedidos pendentes" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -29353,11 +29472,11 @@ msgstr "" "Este texto será mostrado na página de confirmação do pedido para pedidos " "pendentes, além do texto padrão." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "Lista de bloqueio de IBAN para reembolsos" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -29376,33 +29495,33 @@ msgstr "" "banir DE0012345 banir todos os IBANs alemães com o identificador do banco " "começando com 12345." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Restringir a clientes empresariais" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Informe os detalhes da conta bancária." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -29412,9 +29531,9 @@ msgstr "" msgid "Account holder" msgstr "Titular da conta" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -29424,27 +29543,27 @@ msgstr "Titular da conta" msgid "Bank" msgstr "Banco" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "IBAN/BIC inválido" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Conta bancária {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" "Só é possível criar um reembolso por transferência bancária a partir de um " "pagamento existente." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (opcional)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -29479,8 +29598,8 @@ msgstr "O pedido foi cancelado." msgid "Currencies do not match." msgstr "As moedas não correspondem." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -29488,8 +29607,8 @@ msgstr "" "Após concluir sua compra, solicitaremos que você transfira o dinheiro para a " "seguinte conta bancária, usando um código de referência pessoal:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." @@ -29497,14 +29616,14 @@ msgstr "" "Por favor, ainda não inicie um pagamento. Atribuiremos a você um código de " "referência pessoal depois que você concluir o pedido." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Código de referência (importante):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -29512,8 +29631,8 @@ msgstr "" "Atribuiremos a você um código de referência pessoal para usar depois de " "concluir o pedido." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/pt_BR/LC_MESSAGES/djangojs.po b/src/pretix/locale/pt_BR/LC_MESSAGES/djangojs.po index 54861c0916..7acc6b7aa8 100644 --- a/src/pretix/locale/pt_BR/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/pt_BR/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-08-28 13:43+0000\n" "Last-Translator: Renne Rocha \n" "Language-Team: Portuguese (Brazil) \n" "Language-Team: Portuguese (Portugal) pretix" @@ -16245,6 +16270,26 @@ msgstr "" "Por favor, confirme que você deseja cancelar TODAS as datas nesta série de " "eventos." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Código de confirmação" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "O código de confirmação que inseriu é incorrecto." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Este slug já está a ser usado. Por favor, escolha um diferente." @@ -17020,7 +17065,7 @@ msgstr "O utilizador confirmou a seguinte mensagem: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "o pedido foi cancelada (comentário: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "o pedido foi cancelada." @@ -17111,11 +17156,11 @@ msgstr "O pedido foi marcado como usável antes de ser pago." msgid "The order has been set to require payment before use." msgstr "O voucher foi enviado para {recipient}." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "O pedido foi marcada como expirado." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "O pedido foi marcada como pago." @@ -17127,7 +17172,7 @@ msgstr "O pedido de cancelamento foi eliminado." msgid "The order has been refunded." msgstr "O pedido foi reembolsado." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "O pedido foi reativado." @@ -17139,7 +17184,7 @@ msgstr "O pedido foi criado." msgid "The order requires approval before it can continue to be processed." msgstr "o pedido exige aprovação antes que possa continuar a ser processada." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "o pedido foi aprovada." @@ -17178,7 +17223,7 @@ msgstr "A conta do cliente foi alterada." msgid "The order locale has been changed." msgstr "O locale do pedido foi alterado." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "A factura foi gerada." @@ -17189,11 +17234,11 @@ msgstr "A factura foi gerada." msgid "The invoice could not be generated." msgstr "A factura foi gerada." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "A factura foi regerada." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "A factura foi reeditada." @@ -19010,8 +19055,8 @@ msgid "Transaction ID" msgstr "ID da transação" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -19173,7 +19218,7 @@ msgstr "Cancelar" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -20204,6 +20249,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Cancelar evento" @@ -23564,13 +23611,13 @@ msgstr "Detalhes do pedido: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Aprovar" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Negar" @@ -23612,7 +23659,7 @@ msgstr "" "como expirado manualmente." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Reembolso para pagamento em excesso" @@ -24377,10 +24424,84 @@ msgstr "" "Não deve executar esta função várias vezes para o mesmo evento, ou todos na " "lista de espera receberão vários e-mails." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Quantia de reembolso" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Cancelar todas os pedidos" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Se entrar em contato connosco, envie-nos o seguinte código:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +msgid "Refunds will not happen automatically." +msgstr "Assunto (se o pedido não expirar automaticamente)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Enviar informação via e-mail" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Iniciar um reembolso de %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Sim, cancelar o pedido" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24810,14 +24931,14 @@ msgid "Select action" msgstr "Selecione a data" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy #| msgid "Refund full paid amount" msgid "Refund overpaid amount" msgstr "Reembolsar totalidade do valor pago" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -26569,10 +26690,6 @@ msgstr "" "\"CONFIRM_CODE.txt\" com um código de seis caracteres. Por favor digite o " "código aqui para confirmar que você descarregou o ficheiro com êxito." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Código de confirmação" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -28207,7 +28324,7 @@ msgstr "o seu pedido: %(code)s" msgid "Unknown email renderer." msgstr "Renderizador de e-mail desconhecido." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Pediu um tipo de saída de bilhete inválido." @@ -28259,11 +28376,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "O comentário foi atualizado." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Não foi possível atualizar o comentário." @@ -28663,20 +28780,20 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Acesso para a aplicação selecionada foi revogada." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "" "Nós não conseguimos salvar as alterações. Veja abaixo para mais detalhes." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -28689,15 +28806,15 @@ msgid "Unknown order code or not authorized to access this order." msgstr "" "Código de pedido desconhecido ou não autorizado a aceder a este pedido." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "O download de bilhete não está ativado para este produto." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "o pedido foi apagada." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -28705,51 +28822,51 @@ msgstr "" "o pedido não pôde ser removida porque algumas limitações (por exemplo, dados " "criados por plug-ins) não permitem." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "Somente os pedidos criadas no modo de teste podem ser apagadas." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "o pedido foi negada e é, portanto, agora cancelada." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Este pagamento foi cancelado." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Este pagamento não pode ser cancelada de momento." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "O reembolso foi cancelado." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Este reembolso não pode ser cancelado de momento." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "O reembolso foi processado." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Este reembolso não pode ser processado de momento." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "O reembolso foi marcado como concluído." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "O pedido foi removido. Se quiser, agora pode informar o utilizador ." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "O seu pedido de cancelamento" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -28766,7 +28883,7 @@ msgstr "" "\n" "A sua equipa {event}" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -28774,28 +28891,28 @@ msgstr "" "O pagamento foi marcado como concluída, mas não foi possível enviar um e-" "mail de confirmação." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "O pagamento foi marcado como concluída." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Este pagamento não pode ser confirmado no momento." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You entered an order that could not be found." msgid "You entered an order in an event with a different currency." msgstr "Procurou um pedido que não pode ser encontrada." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." @@ -28803,7 +28920,7 @@ msgstr "" "Não pode reembolsar mais do que o valor de um pagamento que ainda não foi " "reembolsado." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -28811,7 +28928,7 @@ msgstr "" "Selecionou um reembolso parcial para um método de pagamento que só suporta " "reembolsos totais." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -28820,12 +28937,12 @@ msgstr "" "Um dos reembolsos não conseguiu ser processado. Deve repetir a devolução de " "uma maneira diferente. A mensagem de erro foi: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "Um reembolso de {} foi processado." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -28834,18 +28951,18 @@ msgstr "" "Um reembolso de {} foi salvo, mas ainda não foi totalmente executado. Pode " "marcá-la como completo abaixo." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" "Um novo cartão-presente foi criado. Agora pode enviar ao utilizador o seu " "código de cartão-presente." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "O seu código do cartão-presente" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -28866,13 +28983,13 @@ msgstr "" "\n" "A sua equipa {event}" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "Os reembolsos selecionados não correspondem ao valor total de reembolso " "selecionado." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -28880,11 +28997,11 @@ msgstr "" "o pedido foi marcada como paga, mas não fomos capazes de enviar um e-mail de " "confirmação." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "O pagamento foi criado com sucesso." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -28892,19 +29009,19 @@ msgstr "" "o pedido foi cancelada. Agora você deve selecionar como pretende transferir " "o dinheiro de volta para o utilizador ." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Sem número de IVA definido." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Nenhum país selecionado." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "O VAT ID não pôde ser verificado, pois este país não é suportado." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -28912,66 +29029,66 @@ msgstr "" "O número de IVA não pode ser verificado, dado que o serviço de verificação " "de númerod de IVA do país não está atualmente disponível." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Este número de IVA é válido." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Factura desconhecida." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "As faturas não podem ser alteradas após serem criadas." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 #, fuzzy #| msgid "Invoices may not be changed after they are created." msgid "Invoices may not be changed after they are transmitted." msgstr "As faturas não podem ser alteradas após serem criadas." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "A factura já foi cancelada." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "O arquivo de fatura já foi exportado." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "O arquivo de fatura é antigo demais para ser regenerado." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "Os dados pessoais foram removidos da factura." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "Os dados pessoais foram removidos da factura." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "O e-mail foi colocado na fila para ser enviado." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Esta factura não foi encontrada" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "O ficheiro da factura já não está armazenado no servidor." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -28979,11 +29096,11 @@ msgstr "" "O ficheiro com a factura ainda não foi gerado, iremos gerá-lo agora para si. " "Por favor, tente novamente dentro de alguns segundos." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "O prazo de pagamento foi alterado." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." @@ -28991,28 +29108,28 @@ msgstr "" "Não fomos capazes de processar o seu pedido dado que o servidor estava " "demasiado ocupado." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Esta ação só é permitida para pedidos pendentes." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Esta ação só é permitida para pedidos canceladas." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Ocorreu um erro. Por favor, veja os detalhes abaixo." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "o pedido foi alterada e o utilizador foi notificado." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "O pedido foi alterado." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." @@ -29020,31 +29137,31 @@ msgstr "" "Tivemos dificuldades a processar os dados introduzidos. Verifique os erros " "abaixo." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Nenhum detalhe do pedido teve de ser alterado." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "Não conseguimos enviar o e-mail. Veja mais detalhes abaixo." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Assunto: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "A sua mensagem foi colocado na fila e será enviado para {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Erro ao enviar e-mail para o seguinte utilizador : {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -29052,36 +29169,36 @@ msgstr "" "Este link deixou de ser válido. Por favor volte atrás, atualize a página e " "tente novamente." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Não há nenhum pedido com o código indicado." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "O exportador seleccionado não foi encontrado." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" "Houve um problema ao processar sua entrada. Veja abaixo os detalhes de erro." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "Exportação: {title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -29089,7 +29206,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -29097,18 +29214,18 @@ msgid "" "therefore you cannot schedule it." msgstr "Não tem permissão suficiente para executar essa exportação." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Todas os pedidos foram canceladas." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " @@ -29117,7 +29234,7 @@ msgstr "" "Os pedidos foram cancelados. Ocorreu um erro com {count} pedidos, por favor, " "verifique todos os pedidos não cancelados." -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "O texto introduzido não é válido." @@ -30287,7 +30404,7 @@ msgstr "Layout de crachá: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -30324,7 +30441,7 @@ msgstr "" "Instale o pacote python 'chardet' para obter melhores capacidades de " "importação CSV." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -30338,23 +30455,23 @@ msgstr "" "manualmente, ou importar regularmente um extrato bancário digital, a fim de " "dar à pretix as informações necessárias." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Tipo de conta bancária" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "Conta bancária SEPA" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Outra conta bancária" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Nome do titular da conta" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -30362,35 +30479,35 @@ msgstr "" "Observe: Personagens especiais que não sejam letras, números e algumas " "pontuações podem causar problemas com alguns bancos." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Nome do banco" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Detalhes da conta bancária" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -30401,7 +30518,7 @@ msgstr "" "internacionais, eles podem precisar da sua morada completa e da morada " "completa do seu banco." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -30411,27 +30528,27 @@ msgstr "" "adicionar tudo o que seus clientes precisam para transferir o dinheiro, por " "exemplo, números de conta, números de encaminhamento, endereços, etc." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Não inclua hífens na referência de pagamento." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Isso é necessário em alguns países." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Inclua o número da fatura na referência de pagamento." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Prefixo para a referência de pagamento" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Texto adicional para mostrar em pedidos pendentes" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -30439,11 +30556,11 @@ msgstr "" "Este texto será mostrado na página de confirmação do pedido para pedidos " "pendentes, além do texto padrão." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "Lista de bloqueio iban para reembolsos" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 #, fuzzy #| msgid "" #| "Put one IBAN or IBAN prefix per line. The system will not attempt to send " @@ -30466,35 +30583,35 @@ msgstr "" "terceiros. Você também pode listar códigos de país como \"GB\" se nunca " "quiser enviar reembolsos para os ibans de um país específico." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy #| msgid "Business customers" msgid "Restrict to business customers" msgstr "Clientes comerciais" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Por favor, preencha os seus dados bancários." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Por favor, informe seus dados de conta bancária." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Por favor, transfere o valor total para a seguinte conta bancária:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -30504,9 +30621,9 @@ msgstr "Por favor, transfere o valor total para a seguinte conta bancária:" msgid "Account holder" msgstr "Titular da conta" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -30516,27 +30633,27 @@ msgstr "Titular da conta" msgid "Bank" msgstr "Banco" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "IBAN/BIC invalido" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Conta bancária {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" "Só pode criar um reembolso por transferência bancária a partir de um " "pagamento existente." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (opcional)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "Sua opinião foi inválida, veja abaixo os detalhes." @@ -30573,8 +30690,8 @@ msgstr "o pedido já foi cancelada." msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -30582,8 +30699,8 @@ msgstr "" "Após a conclusão da tua compra, pedir-te-emos que transfiras o dinheiro para " "uma conta bancária, utilizando um código de referência pessoal." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 #, fuzzy #| msgid "" #| "We will assign you a personal reference code to use after you completed " @@ -30595,14 +30712,14 @@ msgstr "" "Vamos atribuir-lhe um código de referência pessoal para uso depois de " "concluída o pedido." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Código de referência (importante):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -30610,8 +30727,8 @@ msgstr "" "Vamos atribuir-lhe um código de referência pessoal para uso depois de " "concluída o pedido." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/pt_PT/LC_MESSAGES/djangojs.po b/src/pretix/locale/pt_PT/LC_MESSAGES/djangojs.po index 87efbf3f8e..254657fc9b 100644 --- a/src/pretix/locale/pt_PT/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/pt_PT/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2024-09-08 11:04+0000\n" "Last-Translator: Martin Gross \n" "Language-Team: Portuguese (Portugal) \n" "Language-Team: Romanian pretix" @@ -16694,6 +16719,26 @@ msgstr "" "Vă rugăm să confirmați că doriți să anulați TOATE datele din această serie " "de evenimente." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Cod de confirmare" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Codul de confirmare pe care l-ați introdus este incorect." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Descriptorul URL este utilizat deja. Te rugăm să alegi ceva diferit." @@ -17501,7 +17546,7 @@ msgstr "Utilizatorul a confirmat următorul mesaj: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Comanda a fost anulată (comentariu: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Comanda a fost anulată." @@ -17595,11 +17640,11 @@ msgstr "Comanda a fost marcată ca fiind plătită." msgid "The order has been set to require payment before use." msgstr "Voucherul a fost trimis la {recipient}." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "Comanda a fost marcată ca fiind expirată." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "Comanda a fost marcată ca fiind plătită." @@ -17611,7 +17656,7 @@ msgstr "Cererea de anulare a fost ștearsă." msgid "The order has been refunded." msgstr "Comanda a fost rambursată." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "Comanda a fost reactivată." @@ -17623,7 +17668,7 @@ msgstr "Comanda a fost creată." msgid "The order requires approval before it can continue to be processed." msgstr "Comanda trebuie aprobată înainte de a putea continua să fie procesată." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "Comanda a fost aprobată." @@ -17662,7 +17707,7 @@ msgstr "Contul clientului a fost modificat." msgid "The order locale has been changed." msgstr "S-a schimbat locația comenzii." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Factura a fost generată." @@ -17673,11 +17718,11 @@ msgstr "Factura a fost generată." msgid "The invoice could not be generated." msgstr "Factura a fost generată." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Factura a fost regenerată." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Factura a fost emisă din nou." @@ -19532,8 +19577,8 @@ msgid "Transaction ID" msgstr "Tranzacții" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -19704,7 +19749,7 @@ msgstr "Anulează" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -20763,6 +20808,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Anulează evenimentul" @@ -24162,13 +24209,13 @@ msgstr "Detalii de comandă: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Aprobă" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Revocă" @@ -24210,7 +24257,7 @@ msgstr "" "marca manual comanda ca fiind expirată." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Rambursați pentru plata în exces" @@ -24973,10 +25020,87 @@ msgstr "" "eveniment, pentru că toți cei de pe lista de așteptare vor primi mai multe e-" "mailuri." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Sumă de rambursat" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Anulează toate comenzile" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Dacă ne contactați, vă rugăm să ne trimiteți următorul cod:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Checked in automatically" +msgid "Refunds will not happen automatically." +msgstr "Check-in înregistrat automat" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Trimiteți informații prin e-mail" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Inițiați o rambursare de %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Da, anulați comanda" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -25415,14 +25539,14 @@ msgid "Select action" msgstr "Selectează data" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy #| msgid "Refund full paid amount" msgid "Refund overpaid amount" msgstr "Rambursați întreaga sumă plătită" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -27202,10 +27326,6 @@ msgstr "" "un cod de șase caractere. Vă rugăm să introduceți acest cod aici pentru a " "confirma că ați descărcat cu succes fișierul." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Cod de confirmare" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -28871,7 +28991,7 @@ msgstr "Comanda dumneavoastră: %(code)s" msgid "Unknown email renderer." msgstr "Renderer de e-mail necunoscut." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Ați solicitat un tip de bilet de ieșire invalid." @@ -28925,11 +29045,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Comentariul a fost actualizat." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Nu s-a putut actualiza comentariul." @@ -29335,19 +29455,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Accesul pentru aplicația selectată a fost revocat." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "Nu am putut să vă salvăm modificările. Vedeți mai jos pentru detalii." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -29361,15 +29481,15 @@ msgstr "" "Cod de comandă necunoscut sau nu sunteți autorizat să accesați această " "comandă." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Descărcarea biletelor nu este activată pentru acest produs." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "Comanda a fost ștearsă." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -29377,52 +29497,52 @@ msgstr "" "Comanda nu a putut fi ștearsă deoarece unele constrângeri (de exemplu, " "datele create de plug-in-uri) nu permit acest lucru." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "Numai comenzile create în modul de testare pot fi șterse." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "Comanda a fost respinsă și, prin urmare, este anulată." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Această plată a fost anulată." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Această plată nu poate fi anulată în acest moment." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "Rambursarea a fost anulată." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Această rambursare nu poate fi anulată în acest moment." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "Rambursarea a fost procesată." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Această rambursare nu poate fi procesată în acest moment." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "Rambursarea a fost marcată ca fiind efectuată." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" "Cererea a fost eliminată. Dacă doriți, acum puteți informa utilizatorul." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Cererea dumneavoastră de anulare" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -29438,7 +29558,7 @@ msgstr "" "\n" "Echipa {event}" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -29446,28 +29566,28 @@ msgstr "" "Plata a fost marcată ca fiind completă, dar nu am putut trimite un e-mail de " "confirmare." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "Plata a fost marcată ca fiind completă." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Această plată nu poate fi confirmată în acest moment." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You entered an order that could not be found." msgid "You entered an order in an event with a different currency." msgstr "Ați introdus o comandă care nu a putut fi găsită." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." @@ -29475,7 +29595,7 @@ msgstr "" "Nu puteți rambursa mai mult decât suma unei plăți care nu a fost încă " "rambursată." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -29483,7 +29603,7 @@ msgstr "" "Ați selectat o rambursare parțială pentru o metodă de plată care acceptă " "numai rambursări integrale." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -29492,12 +29612,12 @@ msgstr "" "Una dintre rambursări nu a fost procesată. Ar trebui să încercați din nou să " "efectuați rambursarea într-un alt mod. Mesajul de eroare a fost următorul: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "A fost procesată o rambursare de {}." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -29506,18 +29626,18 @@ msgstr "" "O rambursare de {} a fost salvată, dar nu a fost încă executată integral. " "Puteți să o marcați ca fiind completă mai jos." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" "A fost creat un nou card cadou. Acum puteți trimite utilizatorului codul " "cardului cadou." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Codul cardului dvs. cadou" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -29538,13 +29658,13 @@ msgstr "" "\n" "Echipa {event}" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "Rambursările pe care le-ați selectat nu corespund cu suma totală de " "rambursare selectată." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -29552,11 +29672,11 @@ msgstr "" "Comanda a fost marcată ca fiind plătită, dar nu am putut trimite un e-mail " "de confirmare." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "Plata a fost creată cu succes." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -29564,20 +29684,20 @@ msgstr "" "Comanda a fost anulată. Acum puteți selecta modul în care doriți să " "transferați banii înapoi către utilizator." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Nu este specificat niciun cod de TVA." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Nu este specificată nicio țară." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" "Codul TVA nu a putut fi verificat, deoarece această țară nu este acceptată." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -29585,66 +29705,66 @@ msgstr "" "Codul TVA nu a putut fi verificat, deoarece serviciul de verificare a TVA " "din țara respectivă nu este disponibil în prezent." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Acest cod de TVA este valabil." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Factură necunoscută." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "Facturile nu pot fi modificate după ce au fost create." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 #, fuzzy #| msgid "Invoices may not be changed after they are created." msgid "Invoices may not be changed after they are transmitted." msgstr "Facturile nu pot fi modificate după ce au fost create." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "Factura a fost deja anulată." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "Fișierul facturii a fost deja exportat." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "Fișierul facturii este prea vechi pentru a fi regenerat." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "Factura a fost curățată de datele cu caracter personal." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "Factura a fost curățată de datele cu caracter personal." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "E-mailul a fost pus în coadă pentru a fi trimis." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Această factură nu a fost găsită" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Fișierul facturii nu mai este stocat pe server." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -29652,11 +29772,11 @@ msgstr "" "Fișierul de factură nu a fost încă generat, îl vom genera pentru dvs acum. " "Vă rugăm să încercați din nou în câteva secunde." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Termenul de plată a fost modificat." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." @@ -29664,28 +29784,28 @@ msgstr "" "Nu am reușit să procesăm cererea în întregime, deoarece serverul era prea " "ocupat." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Această acțiune este permisă numai pentru comenzile în curs." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Această acțiune este permisă numai pentru comenzile anulate." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "S-a produs o eroare. Vă rugăm să consultați detaliile de mai jos." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "Comanda a fost modificată, iar utilizatorul a fost notificat." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "Comanda a fost schimbată." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." @@ -29693,31 +29813,31 @@ msgstr "" "Am întâmpinat dificultăți în procesarea datelor dumneavoastră. Vă rugăm să " "analizați erorile de mai jos." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Nimic nu a trebuit să fie schimbat în legătură cu comanda." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "Nu am putut trimite e-mailul. Vedeți mai jos pentru detalii." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Subiect: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Mesajul dvs. a fost pus în coadă și va fi trimis la {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Nu s-a reușit trimiterea de mesaje către următorul utilizator: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -29725,38 +29845,38 @@ msgstr "" "Acest link nu mai este valabil. Vă rugăm să vă întoarceți, să reîmprospătați " "pagina și să încercați din nou." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Nu există nicio comandă cu codul de comandă dat." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "Exportatorul selectat nu a fost găsit." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" "A existat o problemă în procesarea datelor dumneavoastră. Vedeți mai jos " "pentru detalii despre eroare." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, fuzzy, python-brace-format #| msgid "Export date" msgid "Export: {title}" msgstr "Export date" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -29764,7 +29884,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have permission to perform this action." msgid "" @@ -29772,18 +29892,18 @@ msgid "" "therefore you cannot schedule it." msgstr "Ne pare rău, nu aveți permisiunea de a efectua această acțiune." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Toate comenzile au fost anulate." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " @@ -29792,7 +29912,7 @@ msgstr "" "Comenzile au fost anulate. A apărut o eroare cu {count} comenzi, vă rugăm să " "verificați toate comenzile neanulate." -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "Intrarea dvs nu a fost validă." @@ -30971,7 +31091,7 @@ msgstr "Macheta insignei: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -31008,7 +31128,7 @@ msgstr "" "Instalați pachetul python \"chardet\" pentru o mai bună capacitate de import " "CSV." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -31022,57 +31142,57 @@ msgstr "" "un extras de cont bancar digital pentru a oferi lui pretix informațiile " "necesare." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Tipul de cont bancar" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "Cont bancar SEPA" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Alt cont bancar" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Numele titularului de cont" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "Codul bancii BIC/SWIFT" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Numele băncii" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Detalii privind contul bancar" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -31083,7 +31203,7 @@ msgstr "" "internaționali, aceștia ar putea avea nevoie de adresa dvs. completă și de " "adresa completă a băncii dvs." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -31093,27 +31213,27 @@ msgstr "" "vă rugăm să adăugați tot ceea ce au nevoie clienții dvs. pentru a transfera " "banii, de exemplu, numere de cont, numere de rutare, adrese etc." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Nu includeți liniuțe în referința de plată." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Acest lucru este obligatoriu în unele țări." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Includeți numărul facturii în referința de plată." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Prefixul pentru referința de plată" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Text suplimentar pentru a afișa pe comenzile în așteptare" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -31121,11 +31241,11 @@ msgstr "" "Acest text va fi afișat pe pagina de confirmare a comenzii pentru comenzile " "în așteptare, pe lângă textul standard." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "Lista de blocare IBAN pentru rambursări" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 #, fuzzy #| msgid "" #| "Put one IBAN or IBAN prefix per line. The system will not attempt to send " @@ -31149,35 +31269,35 @@ msgstr "" "dacă nu doriți să trimiteți niciodată rambursări către IBAN-uri dintr-o " "anumită țară." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy #| msgid "Business customers" msgid "Restrict to business customers" msgstr "Clienți Business" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Vă rugăm să completați datele contului bancar." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Vă rugăm să introduceți detaliile contului bancar." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Vă rugăm să transferați întreaga sumă în următorul cont bancar:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -31187,9 +31307,9 @@ msgstr "Vă rugăm să transferați întreaga sumă în următorul cont bancar:" msgid "Account holder" msgstr "Titular de cont" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -31199,26 +31319,26 @@ msgstr "Titular de cont" msgid "Bank" msgstr "Bancă" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "IBAN/BIC invalid" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Cont bancar {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" "Se poate crea o rambursare prin transfer bancar doar dintr-o plată existentă." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (opțional)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" "Intrarea dvs. nu a fost validă, vă rugăm să consultați mai jos pentru " @@ -31259,8 +31379,8 @@ msgstr "Comanda a fost deja anulată." msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -31268,8 +31388,8 @@ msgstr "" "După finalizarea achiziției, vă vom cere să transferați banii în următorul " "cont bancar, folosind un cod de referință personal:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 #, fuzzy #| msgid "" #| "We will assign you a personal reference code to use after you completed " @@ -31281,14 +31401,14 @@ msgstr "" "Vă vom atribui un cod de referință personal pe care îl veți utiliza după ce " "ați finalizat comanda." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Codul de referință (important):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -31296,8 +31416,8 @@ msgstr "" "Vă vom atribui un cod de referință personal pe care îl veți utiliza după ce " "ați finalizat comanda." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 #, fuzzy #| msgid "" #| "After completing your purchase, we will ask you to transfer the money to " diff --git a/src/pretix/locale/ro/LC_MESSAGES/djangojs.po b/src/pretix/locale/ro/LC_MESSAGES/djangojs.po index 59554b7147..6a49f38b1a 100644 --- a/src/pretix/locale/ro/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/ro/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2022-04-29 04:00+0000\n" "Last-Translator: Edd28 \n" "Language-Team: Romanian \n" "Language-Team: Russian pretix" @@ -15894,6 +15919,26 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Введённый вами код подтверждения неверен." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Этот идентификатор уже используется. Пожалуйста, выберите другой." @@ -16602,7 +16647,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Заказ отменён." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Заказ отменён." @@ -16690,11 +16735,11 @@ msgstr "Заказ отменён." msgid "The order has been set to require payment before use." msgstr "Заказ отменён." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -16708,7 +16753,7 @@ msgstr "Счёт сгенерирован" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 #, fuzzy #| msgid "The order has been canceled." msgid "The order has been reactivated." @@ -16722,7 +16767,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -16760,7 +16805,7 @@ msgstr "Ваш подарочный сертификат использован. msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Счёт сгенерирован" @@ -16771,11 +16816,11 @@ msgstr "Счёт сгенерирован" msgid "The invoice could not be generated." msgstr "Счёт сгенерирован" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -18610,8 +18655,8 @@ msgid "Transaction ID" msgstr "Отменить заказ" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18769,7 +18814,7 @@ msgstr "Отменить" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19695,6 +19740,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 #, fuzzy #| msgid "Can create events" msgid "Cancel event" @@ -22805,13 +22852,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -22854,7 +22901,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 #, fuzzy #| msgid "External refund of payment" msgid "Refund for overpayment" @@ -23606,12 +23653,89 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Pending amount" +msgid "Preview refund amount" +msgstr "Неуплаченная сумма" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 #, fuzzy #| msgid "Cancel order" msgid "Cancel all orders" msgstr "Отменить заказ" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "" +"Если вы будет связываться с нами, пожалуйста, отправьте нам следующий код:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Generate tickets" +msgid "Refunds will not happen automatically." +msgstr "Генерировать билеты" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Order information changed" +msgid "Inform all customers via email." +msgstr "Информация в заказе изменена" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Да, отменить заказ" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24036,14 +24160,14 @@ msgid "Select action" msgstr "Выбрать штат/страну" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy #| msgid "Pending amount" msgid "Refund overpaid amount" msgstr "Неуплаченная сумма" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -25691,10 +25815,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -27230,7 +27350,7 @@ msgstr "Ваш заказ: {code}" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Вы запросили неверный тип вывода билета." @@ -27278,11 +27398,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -27630,19 +27750,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We successfully received your payment. See below for details." msgid "We could not process your input. See below for details." msgstr "Ваш платёж успешно получен. Подробности смотрите ниже." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -27654,67 +27774,67 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "Неизвестный код заказа или не разрешён доступ к этому заказу." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Скачивание билета не активировано для этого продукта." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 #, fuzzy #| msgid "Cancellation fee" msgid "Your cancellation request" msgstr "Плата за отмену" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -27725,76 +27845,76 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You cannot select an item that belongs to a different event." msgid "You entered an order in an event with a different currency." msgstr "Вы не можете выбрать продукт, который относится к другому мероприятию." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 #, fuzzy #| msgid "Gift card code" msgid "Your gift card code" msgstr "Код подарочного сертификата" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -27807,106 +27927,106 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 #, fuzzy #| msgid "The invoice has been generated." msgid "The invoice file has already been exported." msgstr "Счёт сгенерирован" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 #, fuzzy #| msgid "The invoice has been generated." msgid "The invoice file is too old to be regenerated." msgstr "Счёт сгенерирован" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been generated." msgid "The invoice has been scheduled for retransmission." msgstr "Счёт сгенерирован" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Этот счёт не был найден" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Файл счёта больше не хранится на сервере." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -27914,38 +28034,38 @@ msgstr "" "Файл счёта ещё не сгенерирован, мы сгенерируем его для вас сейчас. " "Пожалуйста, попробуйте ещё раз через несколько секунд." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." @@ -27953,31 +28073,31 @@ msgstr "" "У нас возникли трудности при обработке вашего ввода. Пожалуйста, просмотрите " "ошибки ниже." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -27985,36 +28105,36 @@ msgstr "" "Эта ссылка больше не действительна. Пожалуйста, вернитесь, обновите страницу " "и попробуйте ещё раз." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, fuzzy, python-brace-format #| msgid "Expired" msgid "Export: {title}" msgstr "Истёк срок" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -28022,7 +28142,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have access to this page." msgid "" @@ -28030,27 +28150,27 @@ msgid "" "therefore you cannot schedule it." msgstr "У вас нет доступа к этой странице." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 #, fuzzy #| msgid "The order has been canceled." msgid "All orders have been canceled." msgstr "Заказ отменён." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 #, fuzzy #| msgid "Your gift card has been applied." msgid "Your input was not valid." @@ -29195,7 +29315,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -29228,7 +29348,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -29237,103 +29357,103 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 #, fuzzy #| msgid "Payment process description for pending orders" msgid "Additional text to show on pending orders" msgstr "Описание процесса оплаты для незавершённых заказов" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -29344,35 +29464,35 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy #| msgid "Business customer" msgid "Restrict to business customers" msgstr "Корпоративный заказчик" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Пожалуйста, переведите всю сумму на следующий банковский счет:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -29382,9 +29502,9 @@ msgstr "Пожалуйста, переведите всю сумму на сле msgid "Account holder" msgstr "Владелец счёта" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -29394,27 +29514,27 @@ msgstr "Владелец счёта" msgid "Bank" msgstr "Банк" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 #, fuzzy #| msgid "(optional)" msgid "BIC (optional)" msgstr "(по желанию)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 #, fuzzy #| msgid "Your order has been placed successfully. See below for details." msgid "Your input was invalid, please see below for details." @@ -29456,35 +29576,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/ru/LC_MESSAGES/djangojs.po b/src/pretix/locale/ru/LC_MESSAGES/djangojs.po index 992e683f6c..26d1c9fd7f 100644 --- a/src/pretix/locale/ru/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/ru/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-10-17 16:55+0000\n" "Last-Translator: fd \n" "Language-Team: Russian \n" "Language-Team: Sinhala pretix" @@ -14202,6 +14223,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -14863,7 +14902,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -14947,11 +14986,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -14963,7 +15002,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -14975,7 +15014,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -15010,7 +15049,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -15021,11 +15060,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "ඇණවුම් කේතය" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16681,8 +16720,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -16832,7 +16871,7 @@ msgstr "අවලංගු" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17695,6 +17734,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20607,13 +20648,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20652,7 +20693,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21330,10 +21371,74 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +msgid "Proceed and cancel orders" +msgstr "" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21728,12 +21833,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23262,10 +23367,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24708,7 +24809,7 @@ msgstr "ඇණවුම් කේතය" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24756,11 +24857,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -25096,17 +25197,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -25118,65 +25219,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25187,72 +25288,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25265,201 +25366,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25467,31 +25568,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26532,7 +26633,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26565,7 +26666,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26574,101 +26675,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26679,33 +26780,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26715,9 +26816,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26727,25 +26828,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26780,35 +26881,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/si/LC_MESSAGES/djangojs.po b/src/pretix/locale/si/LC_MESSAGES/djangojs.po index 2e4875532b..f230dd9896 100644 --- a/src/pretix/locale/si/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/si/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -637,40 +637,40 @@ msgid "" "will be impacted." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "" diff --git a/src/pretix/locale/sk/LC_MESSAGES/django.po b/src/pretix/locale/sk/LC_MESSAGES/django.po index a380f1d9e3..15180ac382 100644 --- a/src/pretix/locale/sk/LC_MESSAGES/django.po +++ b/src/pretix/locale/sk/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2025-03-15 20:49+0000\n" "Last-Translator: Kristian Feldsam \n" "Language-Team: Slovak pretix" @@ -15926,6 +15951,26 @@ msgstr "Ak nastavujete rozsah dátumov, nastavte začiatok aj koniec." msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "Potvrďte, že chcete zrušiť VŠETKY termíny tejto série podujatí." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Potvrdzovací kód" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Zadaný potvrdzovací kód bol nesprávny." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Tento slimák sa už používa. Vyberte si prosím iný." @@ -16690,7 +16735,7 @@ msgstr "Používateľ potvrdil nasledujúcu správu: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Objednávka bola zrušená (komentár: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Objednávka bola zrušená." @@ -16777,11 +16822,11 @@ msgstr "Objednávka bola nastavená tak, aby sa dala použiť pred jej zaplaten msgid "The order has been set to require payment before use." msgstr "Objednávka bola nastavená tak, aby sa pred použitím vyžadovala platba." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "Objednávka bola označená ako neplatná." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "Objednávka bola označená ako zaplatená." @@ -16793,7 +16838,7 @@ msgstr "Žiadosť o zrušenie bola vymazaná." msgid "The order has been refunded." msgstr "Objednávka bola vrátená." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "Objednávka bola opätovne aktivovaná." @@ -16805,7 +16850,7 @@ msgstr "Objednávka bola vytvorená." msgid "The order requires approval before it can continue to be processed." msgstr "Pred ďalším spracovaním objednávky je potrebné ju schváliť." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "Objednávka bola schválená." @@ -16842,7 +16887,7 @@ msgstr "Účet zákazníka bol zmenený." msgid "The order locale has been changed." msgstr "Lokalita objednávky bola zmenená." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Faktúra bola vygenerovaná." @@ -16853,11 +16898,11 @@ msgstr "Faktúra bola vygenerovaná." msgid "The invoice could not be generated." msgstr "Faktúra bola vygenerovaná." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Faktúra bola regenerovaná." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Faktúra bola opätovne vystavená." @@ -18582,8 +18627,8 @@ msgid "Transaction ID" msgstr "ID transakcie" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18746,7 +18791,7 @@ msgstr "Zrušiť" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19767,6 +19812,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Zrušiť udalosť" @@ -22934,13 +22981,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Schváliť" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Odmietnuť" @@ -22979,7 +23026,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Vrátenie preplatku" @@ -23708,10 +23755,87 @@ msgstr "" "Túto funkciu by ste nemali vykonávať viackrát pre tú istú udalosť, inak " "všetci v zozname čakateľov dostanú viacero e-mailov." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Výška refundácie" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Zrušiť všetky objednávky" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Ak nás kontaktujete, pošlite nám prosím nasledujúci kód:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "Text (ak objednávka nevyprší automaticky)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Odoslanie informácií prostredníctvom e-mailu" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Iniciovať vrátenie %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Áno, zrušte objednávku" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24121,12 +24245,12 @@ msgid "Select action" msgstr "Vyberte akciu" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "Vrátenie preplatku" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "Označiť ako neplatné, ak je po termíne splatnosti" @@ -25822,10 +25946,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Potvrdzovací kód" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -27374,7 +27494,7 @@ msgstr "Vaša objednávka: %(code)s" msgid "Unknown email renderer." msgstr "Neznámy e-mailový renderer." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Vyžiadali ste si neplatný typ výstupu tipu." @@ -27426,11 +27546,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Komentár bol aktualizovaný." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Komentár sa nepodarilo aktualizovať." @@ -27797,19 +27917,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Prístup k vybranej aplikácii bol zrušený." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We successfully received your payment. See below for details." msgid "We could not process your input. See below for details." msgstr "Úspešne sme prijali platbu. Podrobnosti nájdete nižšie." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "Úspešne vykonaná akcia \"{label}\" na {success} z {total} príkazov." -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -27822,15 +27942,15 @@ msgid "Unknown order code or not authorized to access this order." msgstr "" "Neznámy kód objednávky alebo nemáte oprávnenie na prístup k tejto objednávke." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Preberanie vstupeniek nie je pre tento produkt povolené." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "Objednávka bola vymazaná." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -27838,51 +27958,51 @@ msgstr "" "Zákazku nebolo možné odstrániť, pretože niektoré obmedzenia (napr. údaje " "vytvorené zásuvnými modulmi) to neumožňujú." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "Vymazať možno len objednávky vytvorené v testovacom režime." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "Objednávka bola zamietnutá, a preto sa teraz ruší." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Táto platba bola zrušená." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Túto platbu nie je možné v súčasnosti zrušiť." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "Vrátenie peňazí bolo zrušené." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Túto refundáciu nie je možné v súčasnosti zrušiť." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "Refundácia bola spracovaná." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Túto refundáciu momentálne nie je možné spracovať." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "Refundácia bola označená ako hotová." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Vaša žiadosť o zrušenie" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -27898,7 +28018,7 @@ msgstr "" "\n" "Váš tím {event}" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -27906,32 +28026,32 @@ msgstr "" "Platba bola označená ako dokončená, ale nepodarilo sa nám odoslať " "potvrdzujúci mail." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "Platba bola označená ako úplná." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Túto platbu nie je možné v súčasnosti potvrdiť." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "Zadali ste objednávku v podujatí s inou menou." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "Nemôžete vrátiť viac ako sumu platby, ktorá ešte nebola vrátená." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -27939,35 +28059,35 @@ msgstr "" "Vybrali ste čiastočnú refundáciu pre spôsob platby, ktorý podporuje len " "úplné refundácie." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "Bola spracovaná refundácia vo výške {}." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Kód vašej darčekovej karty" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -27980,11 +28100,11 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "Vybrané refundácie sa nezhodujú s vybranou celkovou sumou refundácií." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -27992,30 +28112,30 @@ msgstr "" "Objednávka bola označená ako zaplatená, ale nepodarilo sa nám odoslať " "potvrdzujúci mail." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "Platba bola úspešne vytvorená." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Nie je uvedené IČ DPH." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Žiadna krajina nie je uvedená." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" "IČ DPH nebolo možné skontrolovať, pretože táto krajina nie je podporovaná." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -28023,76 +28143,76 @@ msgstr "" "IČ DPH nebolo možné skontrolovať, pretože služba kontroly DPH v danej " "krajine v súčasnosti nie je k dispozícii." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Toto IČ DPH je platné." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Neznáma faktúra." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "Po vytvorení faktúr ich nemožno meniť." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 #, fuzzy #| msgid "Invoices may not be changed after they are created." msgid "Invoices may not be changed after they are transmitted." msgstr "Po vytvorení faktúr ich nemožno meniť." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "Faktúra už bola zrušená." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "Súbor faktúry už bol exportovaný." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "Súbor faktúry je príliš starý na to, aby sa dal regenerovať." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "Z faktúry boli odstránené osobné údaje." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "Z faktúry boli odstránené osobné údaje." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "E-mail bol zaradený do frontu na odoslanie." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Táto faktúra nebola nájdená" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Súbor s faktúrou už nie je uložený na serveri." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Termín platby bol zmenený." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." @@ -28100,58 +28220,58 @@ msgstr "" "Požiadavku sme nemohli úplne spracovať, pretože server bol príliš " "zaneprázdnený." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Táto akcia je povolená len pre čakajúce objednávky." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Táto akcia je povolená len pre zrušené objednávky." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "Objednávka bola zmenená a používateľ bol o tom informovaný." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "Poradie bolo zmenené." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Na objednávke nebolo potrebné nič meniť." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Predmet: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Vaša správa bola zaradená do frontu a bude odoslaná na adresu {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -28159,35 +28279,35 @@ msgstr "" "Toto prepojenie už nie je platné. Vráťte sa späť, obnovte stránku a skúste " "to znova." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Neexistuje žiadna objednávka s daným kódom objednávky." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "Vybraný vývozca nebol nájdený." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "Váš plán exportu bol uložený, ale ďalší export nie je naplánovaný." -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -28198,7 +28318,7 @@ msgstr "" "\n" "v prílohe tohto e-mailu nájdete novú plánovanú správu pre {name}." -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -28206,7 +28326,7 @@ msgid "" "therefore you cannot schedule it." msgstr "Nemáte dostatočné povolenie na vykonanie tohto exportu." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " @@ -28215,18 +28335,18 @@ msgstr "" "Váš export sa čoskoro začne. Výsledky budú odoslané e-mailom. V závislosti " "od zaťaženia systému a typu a veľkosti exportu to môže trvať niekoľko minút." -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Všetky objednávky boli zrušené." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "Váš príspevok nebol platný." @@ -29335,7 +29455,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -29370,7 +29490,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "Nainštalujte balík Python 'chardet' pre lepšie možnosti importu CSV." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -29379,23 +29499,23 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Typ bankového účtu" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "Bankový účet SEPA" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Iný bankový účet" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Meno držiteľa účtu" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -29403,35 +29523,35 @@ msgstr "" "Upozornenie: špeciálne znaky iné ako písmená, číslice a niektoré " "interpunkčné znamienka môžu v niektorých bankách spôsobovať problémy." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Názov banky" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Údaje o bankovom účte" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -29441,7 +29561,7 @@ msgstr "" "poslať platbu bankovým prevodom. Ak máte veľa zahraničných zákazníkov, môžu " "potrebovať vašu úplnú adresu a úplnú adresu vašej banky." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -29451,27 +29571,27 @@ msgstr "" "prípadoch doplňte všetko, čo vaši zákazníci potrebujú na prevod peňazí, " "napr. čísla účtov, smerovacie čísla, adresy atď." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "V odkaze na platbu neuvádzajte pomlčky." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "V niektorých krajinách sa to vyžaduje." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Do referencie platby uveďte číslo faktúry." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Prefix pre referenciu platby" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Dodatočný text, ktorý sa zobrazí na čakajúcich objednávkach" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -29479,11 +29599,11 @@ msgstr "" "Tento text sa zobrazí na stránke s potvrdením objednávky pre čakajúce " "objednávky okrem štandardného textu." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "Zoznam blokovaných IBAN pre refundácie" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -29501,11 +29621,11 @@ msgstr "" "ignorovať, takže môžete napr. zakázať DE0012345, aby ste zakázali všetky " "nemecké IBAN s identifikátorom banky začínajúcim na 12345." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Obmedzenie na firemných zákazníkov" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -29514,23 +29634,23 @@ msgstr "" "fakturačnú adresu a vyberú možnosť \"Podnikateľský alebo inštitucionálny " "zákazník\"." -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Vyplňte údaje o svojom bankovom účte." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Zadajte údaje o svojom bankovom účte." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Platbu vykonajte podľa nasledujúcich bankových údajov:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -29540,9 +29660,9 @@ msgstr "Platbu vykonajte podľa nasledujúcich bankových údajov:" msgid "Account holder" msgstr "Držiteľ účtu" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -29552,25 +29672,25 @@ msgstr "Držiteľ účtu" msgid "Bank" msgstr "Banka" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "Neplatný IBAN/BIC" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Bankový účet {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "Môže vytvoriť len refundáciu bankového prevodu z existujúcej platby." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (nepovinné)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "Váš vstup bol neplatný, podrobnosti nájdete nižšie." @@ -29607,8 +29727,8 @@ msgstr "Objednávka už bola zrušená." msgid "Currencies do not match." msgstr "Meny sa nezhodujú." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -29616,8 +29736,8 @@ msgstr "" "Po dokončení nákupu vás požiadame o prevod peňazí na nasledujúci bankový " "účet s použitím osobného referenčného kódu:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." @@ -29625,15 +29745,15 @@ msgstr "" "Prosím, ešte nezačínajte s platbou. Osobný referenčný kód vám pridelíme po " "dokončení objednávky." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" "Referencia platby
Poznámka alebo správa pre prijímateľa:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -29641,8 +29761,8 @@ msgstr "" "Po dokončení objednávky vám pridelíme osobný referenčný kód, ktorý budete " "používať." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/sk/LC_MESSAGES/djangojs.po b/src/pretix/locale/sk/LC_MESSAGES/djangojs.po index c538f9d1db..d4068826ff 100644 --- a/src/pretix/locale/sk/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/sk/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-03-01 15:14+0000\n" "Last-Translator: Kristian Feldsam \n" "Language-Team: Slovak \n" "Language-Team: Slovenian pretix" @@ -15766,6 +15791,26 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Potrditvena koda je napačna." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -16473,7 +16518,7 @@ msgstr "Uporabnik je potrdil naslednje sporočilo: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Bon je poslan prejemniku/ci {recipient}." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -16561,11 +16606,11 @@ msgstr "Bon je poslan prejemniku/ci {recipient}." msgid "The order has been set to require payment before use." msgstr "Bon je poslan prejemniku/ci {recipient}." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -16579,7 +16624,7 @@ msgstr "Naročilo {order.code} je preklicano." msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 #, fuzzy #| msgid "This entry is anonymized and can no longer be used." msgid "The order has been reactivated." @@ -16593,7 +16638,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -16631,7 +16676,7 @@ msgstr "Vprašanje je spremenjeno." msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -16642,11 +16687,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "Račun je ustvarjen." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -18474,8 +18519,8 @@ msgid "Transaction ID" msgstr "Variacije" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18633,7 +18678,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19544,6 +19589,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 #, fuzzy #| msgid "Can create events" msgid "Cancel event" @@ -22631,13 +22678,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -22680,7 +22727,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 #, fuzzy #| msgid "External refund of payment" msgid "Refund for overpayment" @@ -23425,12 +23472,88 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Pending amount" +msgid "Preview refund amount" +msgstr "Čakajoči znesek" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 #, fuzzy #| msgid "Can change orders" msgid "Cancel all orders" msgstr "Lahko spreminja naročila" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Generate automatically" +msgid "Refunds will not happen automatically." +msgstr "Ustvari samodejno" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Order information changed" +msgid "Inform all customers via email." +msgstr "Podatki naročila so spremenjeni" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Can change orders" +msgid "Proceed and cancel orders" +msgstr "Lahko spreminja naročila" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -23851,14 +23974,14 @@ msgid "Select action" msgstr "Izberite deželo" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy #| msgid "Pending amount" msgid "Refund overpaid amount" msgstr "Čakajoči znesek" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -25507,10 +25630,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -27024,7 +27143,7 @@ msgstr "Vaše naročilo: %(code)s" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -27072,11 +27191,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -27422,17 +27541,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -27444,69 +27563,69 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 #, fuzzy #| msgid "This entry is anonymized and can no longer be used." msgid "The request has been removed. If you want, you can now inform the user." msgstr "Ta vnos je anonimiziran in ga ni več mogoče uporabljati." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 #, fuzzy #| msgid "Cancellation fee" msgid "Your cancellation request" msgstr "Stroški preklica" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -27517,78 +27636,78 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You entered an order that could not be found." msgid "You entered an order in an event with a different currency." msgstr "Vpisali ste naročilo, ki ga ni bilo mogoče najti." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 #, fuzzy #| msgid "This entry is anonymized and can no longer be used." msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "Ta vnos je anonimiziran in ga ni več mogoče uporabljati." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 #, fuzzy #| msgid "Gift card" msgid "Your gift card code" msgstr "Darilna kartica" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -27601,208 +27720,208 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 #, fuzzy #| msgid "This ticket has already been redeemed." msgid "The invoice file has already been exported." msgstr "Ta vstopnica je že unovčena." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 #, fuzzy #| msgid "An invoice has been generated." msgid "The invoice file is too old to be regenerated." msgstr "Račun je ustvarjen." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The voucher has been sent to {recipient}." msgid "The invoice has been scheduled for retransmission." msgstr "Bon je poslan prejemniku/ci {recipient}." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, fuzzy, python-brace-format #| msgid "Expiration date" msgid "Export: {title}" msgstr "Datum poteka" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -27810,33 +27929,33 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 #, fuzzy #| msgid "Order {order.code} has been canceled." msgid "All orders have been canceled." msgstr "Naročilo {order.code} je preklicano." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -28977,7 +29096,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -29010,7 +29129,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -29019,103 +29138,103 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 #, fuzzy #| msgid "Payment process description for pending orders" msgid "Additional text to show on pending orders" msgstr "Opis postopka plačila za čakajoča naročila" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -29126,35 +29245,35 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy #| msgid "Business customer" msgid "Restrict to business customers" msgstr "Poslovna stranka" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -29164,9 +29283,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -29176,25 +29295,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -29231,35 +29350,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/sl/LC_MESSAGES/djangojs.po b/src/pretix/locale/sl/LC_MESSAGES/djangojs.po index a776676a7b..f0d6afccde 100644 --- a/src/pretix/locale/sl/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/sl/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-05-16 17:00+0000\n" "Last-Translator: bstramsek \n" "Language-Team: Slovenian pretix" @@ -14115,6 +14136,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -14776,7 +14815,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -14860,11 +14899,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -14876,7 +14915,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -14888,7 +14927,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -14923,7 +14962,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -14932,11 +14971,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16590,8 +16629,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -16741,7 +16780,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17602,6 +17641,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20499,13 +20540,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20544,7 +20585,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21218,10 +21259,74 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +msgid "Proceed and cancel orders" +msgstr "" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21616,12 +21721,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23135,10 +23240,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24578,7 +24679,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24626,11 +24727,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -24966,17 +25067,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -24988,65 +25089,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25057,72 +25158,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25135,201 +25236,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25337,31 +25438,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26380,7 +26481,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26413,7 +26514,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26422,101 +26523,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26527,33 +26628,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26563,9 +26664,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26575,25 +26676,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26628,35 +26729,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/sq/LC_MESSAGES/djangojs.po b/src/pretix/locale/sq/LC_MESSAGES/djangojs.po index bad2fcfb00..fb41580643 100644 --- a/src/pretix/locale/sq/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/sq/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -638,40 +638,40 @@ msgid "" "will be impacted." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "" diff --git a/src/pretix/locale/sv/LC_MESSAGES/django.po b/src/pretix/locale/sv/LC_MESSAGES/django.po index 08aa9e5fc9..f92227b055 100644 --- a/src/pretix/locale/sv/LC_MESSAGES/django.po +++ b/src/pretix/locale/sv/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2025-10-10 17:00+0000\n" "Last-Translator: Linnea Thelander \n" "Language-Team: Swedish pretix" @@ -16061,6 +16086,26 @@ msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" "Var god bekräfta att du vill avboka ALLA datum i denna evenemangsserie." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Bekräftelsekod" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Bekräftelsekoden du angav var felaktig." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Den här slugen används redan. Vänligen välj en annan." @@ -16829,7 +16874,7 @@ msgstr "Användaren bekräftade följande meddelande: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Bokningen har blivit inställd (kommentar: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Denna bokning har avbrutits." @@ -16916,11 +16961,11 @@ msgstr "Bokningen har ställts in så att den kan användas innan den är betald msgid "The order has been set to require payment before use." msgstr "Bokning har ställts in för att kräva betalning innan den kan användas." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "Bokningen har markerats som utgången." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "Bokningen har markerats som betald." @@ -16932,7 +16977,7 @@ msgstr "Begäran om avbokning har tagits bort." msgid "The order has been refunded." msgstr "Bokningen har återbetalats." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "Bokningen har återaktiverats." @@ -16944,7 +16989,7 @@ msgstr "Bokning enhar skapats." msgid "The order requires approval before it can continue to be processed." msgstr "Bokningen kräver godkännande innan den kan fortsätta behandlas." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "Bokningen har godkänts." @@ -16981,7 +17026,7 @@ msgstr "Kundkontot har ändrats." msgid "The order locale has been changed." msgstr "Bokningens språk har ändrats." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Denna faktura har skapats." @@ -16992,11 +17037,11 @@ msgstr "Denna faktura har skapats." msgid "The invoice could not be generated." msgstr "Denna faktura har skapats." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Fakturan har genererats på nytt." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Fakturan har utfärdats på nytt." @@ -18749,8 +18794,8 @@ msgid "Transaction ID" msgstr "Transaktions-ID" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -18910,7 +18955,7 @@ msgstr "Avbryt" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -19946,6 +19991,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Avbryt evenemang" @@ -23266,13 +23313,13 @@ msgstr "Bokningsdetaljer: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Godkänn" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Neka" @@ -23314,7 +23361,7 @@ msgstr "" "markera den som förfallen manuellt." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Återbetalning för överbetalning" @@ -24079,10 +24126,85 @@ msgstr "" "Du bör inte köra den här funktionen flera gånger för samma evenemang, annars " "kommer alla på väntelistan att få flera e-postmeddelanden." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Återbetalningsbelopp" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Avbryt alla bokningar" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Om du kontaktar oss, vänligen skicka följande kod:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "Text (om bokningen inte löper ut automatiskt)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Skicka information via e-post" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Initiera en återbetalning av %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Ja, avbryt bokning" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24500,12 +24622,12 @@ msgid "Select action" msgstr "Välj åtgärd" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "Återbetala överbetalt belopp" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "Markera som utgånget om förfallet" @@ -26229,10 +26351,6 @@ msgstr "" "en sexsiffrig kod. Vänligen ange denna kod här för att bekräfta att du har " "laddat ner filen." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Bekräftelsekod" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -27861,7 +27979,7 @@ msgstr "Din bokning: %(code)s" msgid "Unknown email renderer." msgstr "Okänd e-postrenderare." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Du har valt en ogiltig biljetttyp." @@ -27915,11 +28033,11 @@ msgstr "" "Specifikt innehåller följande tillägg fortfarande data som är beroende av " "detta evenemang: {plugin_names}" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Kommentaren har uppdaterats." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Kunde inte uppdatera kommentaren." @@ -28315,20 +28433,20 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Åtkomst för den valda applikationen har återkallats." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "Vi kunde inte spara dina ändringar. Se nedan för detaljer." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" "Åtgärden \"{label}\" utfördes korrekt på {success} av {total} bokningar." -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -28341,15 +28459,15 @@ msgid "Unknown order code or not authorized to access this order." msgstr "" "Okänd bokningskod eller så har du inte rättigheter att se denna bokning." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Nedladdning av biljett är inte aktiverat för denna produkt." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "Bokningen har raderats." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -28357,51 +28475,51 @@ msgstr "" "Bokning kunde inte raderas eftersom vissa begränsningar (t.ex. data skapad " "av tillägg) inte tillåter det." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "Endast bokningar skapade i testläge kan raderas." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "Bokningen har nekats och är därför avbruten." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Denna betalning har blivit avbruten." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Denna betalning kan inte avbrytas för tillfället." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "Återbetalningen har blivit avbruten." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Denna återbetalning kan inte avbrytas för tillfället." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "Återbetalningen har behandlats." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Denna återbetalning kan inte behandlas för tillfället." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "Återbetalningen har markerats som utförd." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "Begäran har tagits bort. Om du vill kan du nu informera användaren." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Din begäran om avbokning" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -28418,7 +28536,7 @@ msgstr "" "\n" "Ditt {event} team" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -28426,15 +28544,15 @@ msgstr "" "Betalningen har markerats som komplett, men vi kunde inte skicka en " "bekräftelsemejl." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "Betalningen har markerats som komplett." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Denna betalning kan inte bekräftas för tillfället." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " @@ -28444,11 +28562,11 @@ msgstr "" "samtidigt. Vänligen se över bokningsdetaljerna och kontrollera om din " "återbetalning fortfarande är nödvändig." -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "Du angav en bokning i ett evenemang med en annan valuta." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." @@ -28456,7 +28574,7 @@ msgstr "" "Du kan inte återbetala mer än beloppet på en betalning som ännu inte har " "återbetalats helt." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -28464,7 +28582,7 @@ msgstr "" "Du har valt en delvis återbetalning för en betalningsmetod som endast stöder " "fullständiga återbetalningar." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -28473,12 +28591,12 @@ msgstr "" "En av återbetalningarna kunde inte behandlas. Du bör försöka återbetala på " "ett annat sätt. Felmeddelandet var: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "En återbetalning på {} har behandlats." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -28487,18 +28605,18 @@ msgstr "" "En återbetalning på {} har sparats, men har ännu inte genomförts " "fullständigt. Du kan markera den som komplett nedan." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" "Ett nytt presentkort har skapats. Du kan nu skicka användaren deras " "presentkortskod." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Din presentkortskod" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -28519,13 +28637,13 @@ msgstr "" "\n" "Ditt {event} team" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "Återbetalningarna du valde matchar inte det totala återbetalningsbeloppet du " "valt." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -28533,11 +28651,11 @@ msgstr "" "Bokningen har markerats som betald, men vi kunde inte skicka något " "bekräftelsemejl." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "Betalningen har skapats framgångsrikt." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -28545,20 +28663,20 @@ msgstr "" "Bokning har blivit avbruten. Du kan nu välja hur du vill återbetala pengarna " "till användaren." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Inget organisationsnummer angivet." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Inget land angivet." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" "Organisationsnummer kunde inte kontrolleras eftersom detta land inte stöds." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -28566,66 +28684,66 @@ msgstr "" "Organisationsnummer kunde inte kontrolleras eftersom moms kontrolltjänsten " "för landet för tillfället inte är tillgänglig." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Det här organisationsnumret är giltigt." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Okänd faktura." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "Fakturor får inte ändras efter att de har skapats." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 #, fuzzy #| msgid "Invoices may not be changed after they are created." msgid "Invoices may not be changed after they are transmitted." msgstr "Fakturor får inte ändras efter att de har skapats." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "Fakturan har redan blivit avbruten." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "Fakturafil har redan exporterats." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "Fakturafil är för gammal för att kunna återskapas." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "Fakturan har rensats från personuppgifter." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "Fakturan har rensats från personuppgifter." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "E-postmeddelandet har lagts i kön för att skickas." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Fakturan kan inte hittas" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Filen för fakturan finns inte längre lagrad på servern." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -28633,68 +28751,68 @@ msgstr "" "Filen för fakturan har inte skapats ännu. Vi kommer skapa den nu. Vänligen " "försök igen om en liten stund." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Betalningsvillkoret har ändrats." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "Vi kunde inte behandla begäran helt eftersom servern var för upptagen." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Denna åtgärd är endast tillåten för obetalda bokningar." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Denna åtgärd är endast tillåten för avbrutna bokningar." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Ett fel uppstod. Vänligen se detaljerna nedan." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "Bokningen har ändrats och användaren har meddelats." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "Bokningen har ändrats." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "Vi har problem att processa din indata. Kontrollera felen nedan." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Ingenting behövde ändras i bokningen." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "Vi kunde inte skicka e-postmeddelandet. Se nedan för detaljer." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Ämne: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Ditt meddelande har lagts i kön och kommer att skickas till {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Misslyckades att skicka e-post till följande användare: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -28702,21 +28820,21 @@ msgstr "" "Denna länk är inte längre giltig. Gå tillbaka, uppdatera sidan och försök " "igen." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Det finns ingen bokning med den angivna koden." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "Den valda exportören hittades inte." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" "Det uppstod ett problem med att behandla din begäran. Se nedan för detaljer " "om felet." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " @@ -28725,16 +28843,16 @@ msgstr "" "Din exportplan har sparats. Nästa export kommer att starta omkring " "{datetime}." -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "Din exportplan har sparats, men ingen nästa export är planerad." -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "Export: {title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -28745,7 +28863,7 @@ msgstr "" "\n" "bifogat till detta mejl hittar du en ny schemalagd rapport för {name}." -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -28753,7 +28871,7 @@ msgid "" "therefore you cannot schedule it." msgstr "Du har inte tillräckliga behörigheter för att utföra denna export." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " @@ -28763,11 +28881,11 @@ msgstr "" "post. Beroende på systembelastning samt typ och storlek på exporten kan " "detta ta några minuter." -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Alla bokningar har annullerats." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " @@ -28776,7 +28894,7 @@ msgstr "" "Bokningarna har blivit avbokade. Ett fel inträffade med {count} bokning, " "vänligen kontrollera alla ej avbokade bokningar." -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "Ditt angivna inmatning var inte giltig." @@ -29925,7 +30043,7 @@ msgstr "Bricklayout: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -29960,7 +30078,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "Installera Python-paketet 'chardet' för bättre CSV-importförmåga." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -29974,23 +30092,23 @@ msgstr "" "slutförda manuellt eller regelbundet importera ett digitalt bankutdrag för " "att ge pretix den nödvändiga informationen." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Bankkonto typ" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "SEPA bank konto" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "andra bank konto" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Namn på kontoinnehavare" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -29998,35 +30116,35 @@ msgstr "" "Observera: Specialtecken som inte är bokstäver, siffror och vissa " "skiljetecken kan orsaka problem med vissa banker." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Namn på bank" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Bankkonto detaljer" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -30036,7 +30154,7 @@ msgstr "" "Om du har mycket internationella kunder kan de kanske behöva din " "fullständiga adress och bankens fullständiga adress." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -30046,27 +30164,27 @@ msgstr "" "som din kund kan behöva för att skicka över pengarna, t.ex. kontonummer, " "clearing nummer, adress, osv." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Inkludera inte bindestreck i betalningsreferensen." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Detta är obligatoriskt i vissa länder." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Inkludera fakturanumret i betalningsreferensen." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Prefix för betalningsreferensen" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Ytterligare text att visa på obetalda bokningar" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -30074,11 +30192,11 @@ msgstr "" "Denna text kommer att visas på orderbekräftelsesidan för obetalda bokningar, " "utöver den vanliga texten." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "IBAN-spärrlista för återbetalningar" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -30097,11 +30215,11 @@ msgstr "" "förbjuda DE0012345 för att förbjuda alla tyska IBAN-nummer med " "bankidentifierare som börjar med 12345." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Begränsa till företagskunder" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -30109,23 +30227,23 @@ msgstr "" "Tillåt endast val av denna betalningsleverantör för kunder som anger en " "fakturaadress och väljer \"Företag, förening eller organisation\"." -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Vänligen fyll i dina bankkontouppgifter." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Vänligen ange dina bankkontouppgifter." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Vänligen överför hela beloppet till följande bankkonto:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -30135,9 +30253,9 @@ msgstr "Vänligen överför hela beloppet till följande bankkonto:" msgid "Account holder" msgstr "Kontoinnehavare" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -30147,27 +30265,27 @@ msgstr "Kontoinnehavare" msgid "Bank" msgstr "Bank" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "Ogiltigt IBAN/BIC" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "Bankkonto {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" "Det går bara att skapa en återbetalning via banköverföring från en befintlig " "betalning." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (valfritt)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "Din inmatning var ogiltig, se nedan för detaljer." @@ -30204,8 +30322,8 @@ msgstr "Bokning har redan blivit avbruten." msgid "Currencies do not match." msgstr "Valutorna matchar inte." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -30213,8 +30331,8 @@ msgstr "" "Efter att du har slutfört ditt köp kommer vi be dig att överföra pengarna " "till följande bankkonto, med hjälp av en personlig referenskod:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." @@ -30222,14 +30340,14 @@ msgstr "" "Vänligen påbörja inte en betalning ännu. Vi kommer tilldela dig en personlig " "referenskod efter att du har slutfört bokningen." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Referenskod (viktig):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -30237,8 +30355,8 @@ msgstr "" "Vi kommer tilldela dig en personlig referenskod att använda efter att du har " "slutfört bokningen." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/sv/LC_MESSAGES/djangojs.po b/src/pretix/locale/sv/LC_MESSAGES/djangojs.po index 5952dba18c..8360f22da7 100644 --- a/src/pretix/locale/sv/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/sv/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-10-10 17:00+0000\n" "Last-Translator: Linnea Thelander \n" "Language-Team: Swedish \n" "Language-Team: Thai pretix" @@ -14118,6 +14139,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -14779,7 +14818,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -14863,11 +14902,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -14879,7 +14918,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -14891,7 +14930,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -14926,7 +14965,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -14935,11 +14974,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16593,8 +16632,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -16743,7 +16782,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17602,6 +17641,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20499,13 +20540,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20544,7 +20585,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21218,10 +21259,72 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +msgid "Proceed and cancel orders" +msgstr "" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21616,12 +21719,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23134,10 +23237,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24576,7 +24675,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24624,11 +24723,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -24964,17 +25063,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -24986,65 +25085,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25055,72 +25154,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25133,201 +25232,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25335,31 +25434,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26380,7 +26479,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26413,7 +26512,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26422,101 +26521,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26527,33 +26626,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26563,9 +26662,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26575,25 +26674,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26628,35 +26727,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/th/LC_MESSAGES/djangojs.po b/src/pretix/locale/th/LC_MESSAGES/djangojs.po index 00199aa032..39d742922a 100644 --- a/src/pretix/locale/th/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/th/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -638,40 +638,40 @@ msgid "" "will be impacted." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "" diff --git a/src/pretix/locale/tr/LC_MESSAGES/django.po b/src/pretix/locale/tr/LC_MESSAGES/django.po index c29f94c8b6..6eafa97a44 100644 --- a/src/pretix/locale/tr/LC_MESSAGES/django.po +++ b/src/pretix/locale/tr/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2025-01-04 01:00+0000\n" "Last-Translator: Hijiri Umemoto \n" "Language-Team: Turkish pretix" @@ -17097,6 +17122,26 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Onay kodu" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Girdiğiniz onay kodu yanlış." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Bu sıra zaten kullanımda. Lütfen farklı bir tane seçin." @@ -17924,7 +17969,7 @@ msgstr "Kullanıcı şu mesajı doğruladı: \"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Sipariş reddedildi." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Sipariş iptal edildi." @@ -18017,11 +18062,11 @@ msgstr "Sipariş ödenmiş olarak işaretlendi." msgid "The order has been set to require payment before use." msgstr "Kupon oluşturuldu." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "Siparişin süresi dolmuş olarak işaretlendi." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "Sipariş ödenmiş olarak işaretlendi." @@ -18035,7 +18080,7 @@ msgstr "Seçilen soru silindi." msgid "The order has been refunded." msgstr "Sipariş iade edildi." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 #, fuzzy #| msgid "The order has been created." msgid "The order has been reactivated." @@ -18049,7 +18094,7 @@ msgstr "Sipariş oluşturuldu." msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "Sipariş onaylandı." @@ -18092,7 +18137,7 @@ msgstr "Soru değişti." msgid "The order locale has been changed." msgstr "Sipariş yerel ayarları değiştirildi." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Fatura oluşturuldu." @@ -18103,11 +18148,11 @@ msgstr "Fatura oluşturuldu." msgid "The invoice could not be generated." msgstr "Fatura oluşturuldu." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Fatura yeniden oluşturuldu." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Fatura yeniden yayınlandı." @@ -20088,8 +20133,8 @@ msgid "Transaction ID" msgstr "Oluşturulma tarihi" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -20254,7 +20299,7 @@ msgstr "İptal et" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -21260,6 +21305,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 #, fuzzy #| msgid "Choose event" msgid "Cancel event" @@ -24704,13 +24751,13 @@ msgstr "Sipariş detayı: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Onay" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Reddet" @@ -24756,7 +24803,7 @@ msgstr "" "süresi dolmuş olarak işaretleyebilirsiniz." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 #, fuzzy #| msgid "Refund order" msgid "Refund for overpayment" @@ -25544,12 +25591,87 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund only" +msgid "Preview refund amount" +msgstr "Sadece iade" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 #, fuzzy #| msgid "Cancel order" msgid "Cancel all orders" msgstr "Siparişi iptal et" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Bize ulaşırsanız, lütfen aşağıdaki kodu bize gönderin:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Generate invoices" +msgid "Refunds will not happen automatically." +msgstr "Faturalar oluştur" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send vouchers" +msgid "Inform all customers via email." +msgstr "Makbuz gönder" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "%(amount)s tutarında geri ödeme başlat" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Evet, siparişi iptal et" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -25993,14 +26115,14 @@ msgid "Select action" msgstr "Ön satış başlamadı" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy #| msgid "Refund full paid amount" msgid "Refund overpaid amount" msgstr "Tam ödenen tutarı iade edin" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -27838,10 +27960,6 @@ msgstr "" "metin dosyası var. Lütfen dosyayı başarıyla indirdiğinizi onaylamak için bu " "kodu buraya girin." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Onay kodu" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -29576,7 +29694,7 @@ msgstr "Siparişiniz: %(code)s" msgid "Unknown email renderer." msgstr "Bilinmeyen e-posta oluşturucu." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Geçersiz bir bilet çıkış türü talep ettiniz." @@ -29634,11 +29752,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Yorum güncellendi." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Yorum güncellenemedi." @@ -30013,19 +30131,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Seçilen uygulama için erişim iptal edildi." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "Değişikliklerinizi kaydedemedik. Detaylar için aşağıya bakın." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -30037,19 +30155,19 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "Bilinmeyen sipariş kodu veya bu siparişe erişim yetkisi yok." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 #, fuzzy #| msgid "Ticket download is not enabled for add-on products." msgid "Ticket download is not enabled for this product." msgstr "Eklenti ürünleri için bilet indirme etkin değil." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 #, fuzzy #| msgid "The order has been denied." msgid "The order has been deleted." msgstr "Sipariş reddedildi." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 #, fuzzy #| msgid "" #| "The event could not be deleted as some constraints (e.g. data created by " @@ -30061,57 +30179,57 @@ msgstr "" "Bazı kısıtlamalar (ör. Eklentiler tarafından oluşturulan veriler) izin " "vermediğinden, etkinlik silinemedi." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 #, fuzzy #| msgid "The selected team cannot be deleted." msgid "Only orders created in test mode can be deleted." msgstr "Seçilen takım silinemez." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "Sipariş reddedildi ve bu nedenle şimdi iptal edildi." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Bu ödeme iptal edildi." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Bu ödeme şu anda iptal edilemez." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "Geri ödeme iptal edildi." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Bu geri ödeme şu anda iptal edilemez." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "Para iadesi yapıldı." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Bu geri ödeme şu anda işleme alınamaz." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "Geri ödeme yapıldı olarak işaretlendi." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 #, fuzzy #| msgid "The device has been verified and can now be used." msgid "The request has been removed. If you want, you can now inform the user." msgstr "Cihaz doğrulandı ve şimdi kullanılabilir." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 #, fuzzy #| msgid "Cancellation" msgid "Your cancellation request" msgstr "İptal" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, fuzzy, python-brace-format #| msgid "" #| "Hello,\n" @@ -30147,35 +30265,35 @@ msgstr "" "En iyi dileklerimizle \n" "{event} ekibiniz" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" "Ödeme tamamlandı olarak işaretlendi, ancak bir onay postası gönderemedik." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "Ödeme eksiksiz olarak işaretlendi." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Bu ödeme şu anda teyit edilemez." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You entered an order that could not be found." msgid "You entered an order in an event with a different currency." msgstr "Bulunamayan bir sipariş girdiniz." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." @@ -30183,7 +30301,7 @@ msgstr "" "Henüz geri ödenmeyen bir ödemenin tutarından daha fazla geri ödeme " "yapamazsınız." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -30191,7 +30309,7 @@ msgstr "" "Yalnızca tam para iadelerini destekleyen bir ödeme yöntemi için kısmi geri " "ödeme seçtiniz." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " @@ -30200,12 +30318,12 @@ msgstr "" "İadelerden biri işlenemedi. Farklı bir şekilde geri ödemeyi tekrar " "denemelisiniz. Hata mesajı: {}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "{} Tutarında geri ödeme yapıldı." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " @@ -30214,20 +30332,20 @@ msgstr "" "{} Para iadesi kaydedildi, ancak henüz tam olarak çalıştırılmadı. Aşağıda " "eksiksiz olarak işaretleyebilirsiniz." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 #, fuzzy #| msgid "The device has been verified and can now be used." msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "Cihaz doğrulandı ve şimdi kullanılabilir." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 #, fuzzy #| msgid "Gift card" msgid "Your gift card code" msgstr "Hediye kartı" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -30240,25 +30358,25 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "Seçtiğiniz geri ödemeler seçilen toplam geri ödeme tutarıyla eşleşmiyor." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" "Sipariş ödenmiş olarak işaretlendi, ancak bir onay postası gönderemedik." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 #, fuzzy #| msgid "The event has been created." msgid "The payment has been created successfully." msgstr "Etkinlik oluşturuldu." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 #, fuzzy #| msgid "" #| "The order has been marked as refunded. Please transfer the money back to " @@ -30270,15 +30388,15 @@ msgstr "" "Sipariş iade edildi olarak işaretlendi. Lütfen parayı alıcıya manuel olarak " "geri gönderin." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "KDV numarası belirtilmemiş." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Ülke belirtilmedi." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 #, fuzzy #| msgid "" #| "VAT ID could not be checked since a non-EU country has been specified." @@ -30286,7 +30404,7 @@ msgid "VAT ID could not be checked since this country is not supported." msgstr "" "AB üyesi olmayan bir ülke belirtildiği için KDV Kimliği kontrol edilemedi." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -30294,68 +30412,68 @@ msgstr "" "Ülkenin KDV kontrol servisi şu anda mevcut olmadığı için KDV Kimliği kontrol " "edilemedi." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "Bu KDV numarası geçerlidir." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Bilinmeyen fatura." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "Fatura zaten iptal edildi." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 #, fuzzy #| msgid "The invoice has already been canceled." msgid "The invoice file has already been exported." msgstr "Fatura zaten iptal edildi." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 #, fuzzy #| msgid "The invoice has been regenerated." msgid "The invoice file is too old to be regenerated." msgstr "Fatura yeniden oluşturuldu." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "Fatura kişisel verilerden temizlendi." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "Fatura kişisel verilerden temizlendi." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "E-posta gönderilmek üzere sıraya alındı." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Bu fatura bulunamadı" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Fatura dosyası artık sunucuda saklanmaz." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." @@ -30363,71 +30481,71 @@ msgstr "" "Fatura dosyası henüz oluşturulmadı, sizin için şimdi oluşturacağız. Lütfen " "birkaç saniye içinde tekrar deneyin." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Ödeme süresi değiştirildi." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "Sunucu çok meşgul olduğu için isteği tamamen işleme koyamadık." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Bu işlem yalnızca bekleyen siparişlerde kullanılabilir." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 #, fuzzy #| msgid "This action is only allowed for pending orders." msgid "This action is only allowed for canceled orders." msgstr "Bu işlem yalnızca bekleyen siparişlerde kullanılabilir." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Bir hata oluştu. Lütfen aşağıdaki detaylara bakınız." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "Sipariş değiştirildi ve kullanıcı bilgilendirildi." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "Sipariş değiştirildi." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" "Girişinizi işlerken zorluklar yaşadık. Lütfen aşağıdaki hataları inceleyin." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Siparişle ilgili hiçbir şey değişmemişti." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "E-postayı gönderemedik. Detaylar için aşağıya bakın." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "Konu: {subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Mesajınız kuyruğa alındı ve {} adresine gönderilecek." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Aşağıdaki kullanıcıya posta gönderilemedi: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -30435,37 +30553,37 @@ msgstr "" "Bu bağlantı artık geçerli değil. Lütfen geri dönün, sayfayı yenileyin ve " "tekrar deneyin." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Verilen sipariş kodu ile sipariş yok." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "Seçilen ihracatçı bulunamadı." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" "Girişinizi işlerken bir sorun oluştu. Hata detayları için aşağıya bakın." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, fuzzy, python-brace-format #| msgid "Expiry date" msgid "Export: {title}" msgstr "Son kullanma tarihi" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -30473,7 +30591,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have permission to perform this action." msgid "" @@ -30481,27 +30599,27 @@ msgid "" "therefore you cannot schedule it." msgstr "Bu eylemi gerçekleştirme izniniz yok." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 #, fuzzy #| msgid "The order has been canceled." msgid "All orders have been canceled." msgstr "Sipariş iptal edildi." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 #, fuzzy #| msgid "The password you entered was invalid, please try again." msgid "Your input was not valid." @@ -31739,7 +31857,7 @@ msgstr "Rozet düzeni: {}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -31775,7 +31893,7 @@ msgid "" msgstr "" "Daha iyi CSV içe aktarma yetenekleri için python paketini 'chardet' takın." -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -31784,65 +31902,65 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 #, fuzzy #| msgid "Bank account details" msgid "Bank account type" msgstr "Banka hesap detayları" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 #, fuzzy #| msgid "Create a new account" msgid "Other bank account" msgstr "Yeni bir hesap oluştur" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 #, fuzzy #| msgid "Account holder" msgid "Name of account holder" msgstr "Hesap sahibi" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "SWIFT BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 #, fuzzy #| msgid "Number of days" msgid "Name of bank" msgstr "Gün sayısı" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Banka hesap detayları" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 #, fuzzy #| msgid "" #| "Include everything that your customers need to send you a bank transfer " @@ -31859,54 +31977,54 @@ msgstr "" "Çok sayıda uluslararası müşteriniz varsa, tam adresinize ve bankanızın tam " "adresine de ihtiyaçları olabilir." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 #, fuzzy #| msgid "Do not include a hyphen in the payment reference." msgid "Do not include hyphens in the payment reference." msgstr "Ödeme referansında kısa çizgi eklemeyin." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Bu bazı ülkelerde gereklidir." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 #, fuzzy #| msgid "Do not include a hyphen in the payment reference." msgid "Include invoice number in the payment reference." msgstr "Ödeme referansında kısa çizgi eklemeyin." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 #, fuzzy #| msgid "Tax rule for payment fees" msgid "Prefix for the payment reference" msgstr "Ödeme ücretleri için vergi kuralı" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 #, fuzzy #| msgid "This action is only allowed for pending orders." msgid "Additional text to show on pending orders" msgstr "Bu işlem yalnızca bekleyen siparişlerde kullanılabilir." -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 #, fuzzy #| msgid "All open refunds" msgid "IBAN blocklist for refunds" msgstr "Tüm açık iadeler" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -31917,39 +32035,39 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy #| msgid "Business customer" msgid "Restrict to business customers" msgstr "Kurumsal müşteri" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 #, fuzzy #| msgid "Please confirm the following payment details." msgid "Please fill out your bank account details." msgstr "Lütfen aşağıdaki ödeme bilgilerini doğrulayın." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 #, fuzzy #| msgid "Please enter your name." msgid "Please enter your bank account details." msgstr "Lütfen adınızı giriniz." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Lütfen tüm tutarı aşağıdaki banka hesabına aktarın:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -31959,9 +32077,9 @@ msgstr "Lütfen tüm tutarı aşağıdaki banka hesabına aktarın:" msgid "Account holder" msgstr "Hesap sahibi" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -31971,28 +32089,28 @@ msgstr "Hesap sahibi" msgid "Bank" msgstr "Banka" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, fuzzy, python-brace-format #| msgid "Bank account details" msgid "Bank account {iban}" msgstr "Banka hesap detayları" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 #, fuzzy #| msgid "(optional)" msgid "BIC (optional)" msgstr "(isteğe bağlı)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 #, fuzzy #| msgid "The password you entered was invalid, please try again." msgid "Your input was invalid, please see below for details." @@ -32031,8 +32149,8 @@ msgstr "Sipariş zaten iptal edildi." msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -32040,8 +32158,8 @@ msgstr "" "Satın alma işleminizi tamamladıktan sonra, kişisel bir referans kodu " "kullanarak parayı aşağıdaki banka hesabına aktarmanızı rica ederiz:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 #, fuzzy #| msgid "" #| "We will assign you a personal reference code to use after you completed " @@ -32053,14 +32171,14 @@ msgstr "" "Siparişi tamamladıktan sonra kullanmanız için size kişisel bir referans kodu " "atayacağız." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Referans kodu (önemli):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -32068,8 +32186,8 @@ msgstr "" "Siparişi tamamladıktan sonra kullanmanız için size kişisel bir referans kodu " "atayacağız." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." @@ -39926,9 +40044,6 @@ msgstr "" #~ "Biletlerimizi uygulamalarımızla taramaya başlamak için önce burada bir " #~ "yapılandırma kodu oluşturun:" -#~ msgid "Create configuration" -#~ msgstr "Yapılandırma oluştur" - #~ msgid "Create a new configuration" #~ msgstr "Yeni bir yapılandırma oluştur" diff --git a/src/pretix/locale/tr/LC_MESSAGES/djangojs.po b/src/pretix/locale/tr/LC_MESSAGES/djangojs.po index 444fc20d64..b5914c74c9 100644 --- a/src/pretix/locale/tr/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/tr/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2023-11-16 04:00+0000\n" "Last-Translator: Ramazan Sancar \n" "Language-Team: Turkish \n" "Language-Team: Ukrainian pretix" @@ -16437,6 +16462,26 @@ msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" "Будь ласка, підтвердьте, що ви хочете скасувати ВСІ дати в цій серії подій." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Код підтвердження" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Код підтвердження, який ви ввели, був неправильним." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Ця помітка вже використовується, будь ласка оберіть іншу." @@ -17224,7 +17269,7 @@ msgstr "Користувач підтвердив таке повідомлен msgid "The order has been canceled (comment: \"{comment}\")." msgstr "Замовлення скасовано (comment: \"{comment}\")." -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "Замовлення скасовано." @@ -17317,11 +17362,11 @@ msgstr "Замовлення позначено як оплачене." msgid "The order has been set to require payment before use." msgstr "Ваучер надіслано{recipient}." -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "Замовлення позначено як прострочене." -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "Замовлення позначено як оплачене." @@ -17333,7 +17378,7 @@ msgstr "Запит на скасування видалено." msgid "The order has been refunded." msgstr "Кошти за замовлення повернуто." -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "Замовлення відновлено." @@ -17345,7 +17390,7 @@ msgstr "Замовлення створено." msgid "The order requires approval before it can continue to be processed." msgstr "Щоб продовжити обробку, замовлення потребує підтвердження." -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "Замовлення затверджено." @@ -17382,7 +17427,7 @@ msgstr "Обліковий запис клієнта змінено." msgid "The order locale has been changed." msgstr "Регіон замовлення було змінено." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Рахунок-фактуру створено." @@ -17393,11 +17438,11 @@ msgstr "Рахунок-фактуру створено." msgid "The invoice could not be generated." msgstr "Рахунок-фактуру створено." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Рахунок-фактуру відновлено." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Рахунок-фактуру переоформлено." @@ -19211,8 +19256,8 @@ msgid "Transaction ID" msgstr "Транзакції" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -19373,7 +19418,7 @@ msgstr "Скасувати" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -20372,6 +20417,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -23518,13 +23565,13 @@ msgstr "Деталі замовлення: %(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Затвердити" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Відхилити" @@ -23566,7 +23613,7 @@ msgstr "" "прострочену вручну." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Повернення коштів за переплату" @@ -24306,10 +24353,87 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Сума відшкодування" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Скасувати всі замовлення" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Якщо ви з нами контактуєте, будь ласка, надішліть нам наступний код:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Checked in automatically" +msgid "Refunds will not happen automatically." +msgstr "Зареєстровано автоматично" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Надсилати інформацію електронною поштою" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "Ініціювати відшкодування %(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Так, скасувати замовлення" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -24735,14 +24859,14 @@ msgid "Select action" msgstr "Oберіть дату" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy #| msgid "Refund full paid amount" msgid "Refund overpaid amount" msgstr "Повернути повну оплачену суму" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -26463,10 +26587,6 @@ msgstr "" "який міститиме шестизначний код. Будь ласка введеіть тут цей код для " "підтвердження того, що ви завантажили цей файл." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Код підтвердження" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -27977,7 +28097,7 @@ msgstr "Ваше замовлення: %(code)s" msgid "Unknown email renderer." msgstr "Невідомий засіб обробки електронної пошти." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -28025,11 +28145,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -28373,19 +28493,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "Доступ для обраної програми відкликаний." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "Нам не вдалося зберегти Ваші зміни. Подробиці дивіться нижче." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -28398,65 +28518,65 @@ msgid "Unknown order code or not authorized to access this order." msgstr "" "Невідомий код замовлення або доступ до цього замовлення отримати неможливо." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "Замовлення було відхилено, тому тепер скасовано." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -28472,7 +28592,7 @@ msgstr "" "\n" "Ваша команда {event}" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -28480,70 +28600,70 @@ msgstr "" "Платіж позначено як завершений, але нам не вдалося надіслати лист із " "підтвердженням." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "На даний момент цей платіж не може бути підтверджений." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You entered an order that could not be found." msgid "You entered an order in an event with a different currency." msgstr "Ви ввели замовлення, яке не вдалося знайти." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "Ви не можете повернути більше суми платежу, яка ще не повернута." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" "Створено новий подарунковий сертифікат. Тепер ви можете надіслати " "користувачеві код його подарункового сертифікату." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -28556,24 +28676,24 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "Вибрані вами відшкодування не відповідають вибраній загальній сумі " "відшкодування." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" "Замовлення позначено як оплачене, але нам не вдалося надіслати підтвердження." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." @@ -28581,149 +28701,149 @@ msgstr "" "Замовлення скасовано. Тепер ви можете вибрати, як ви хочете переказати гроші " "назад користувачеві." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been reissued." msgid "The invoice has been scheduled for retransmission." msgstr "Рахунок-фактуру переоформлено." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Ця дія дозволена лише для замовлень, що очікують на розгляд." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Ця дія дозволена лише для скасованих замовлень." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "Ми не змогли надіслати електронного листа. Подробиці дивіться нижче." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Не вдалося надіслати пошту такому користувачеві: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." @@ -28731,36 +28851,36 @@ msgstr "" "Це посилання більше не дійсне. Будь ласка, поверніться, оновіть сторінку та " "повторіть спробу." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, fuzzy, python-brace-format #| msgid "Import file" msgid "Export: {title}" msgstr "Імпортувати файл" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -28768,25 +28888,25 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "Ви не маєте дозволу переглядати цей контент." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Усі замовлення скасовано." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " @@ -28795,7 +28915,7 @@ msgstr "" "Замовлення скасовано. Сталася помилка з {count} замовленнями. Перевірте всі " "нескасовані замовлення." -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -29905,7 +30025,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -29940,7 +30060,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -29949,101 +30069,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -30054,35 +30174,35 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy #| msgid "Business customers" msgid "Restrict to business customers" msgstr "Бізнес-клієнти" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Перекажіть, будь ласка, повну суму на вказаний банківський рахунок:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -30092,9 +30212,9 @@ msgstr "Перекажіть, будь ласка, повну суму на вк msgid "Account holder" msgstr "Власник рахунку" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -30104,25 +30224,25 @@ msgstr "Власник рахунку" msgid "Bank" msgstr "Банк" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -30161,35 +30281,35 @@ msgstr "Замовлення вже скасовано." msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Код призначення (важливо):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/uk/LC_MESSAGES/djangojs.po b/src/pretix/locale/uk/LC_MESSAGES/djangojs.po index ab175f1ba3..4c57fb735b 100644 --- a/src/pretix/locale/uk/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/uk/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2024-05-22 16:00+0000\n" "Last-Translator: Serhii Horichenko \n" "Language-Team: Ukrainian \n" "Language-Team: Vietnamese pretix" @@ -15122,6 +15146,26 @@ msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" "Vui lòng xác nhận rằng bạn muốn hủy tất cả các ngày trong chuỗi sự kiện này." +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "Mã xác nhận" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "Mã xác nhận bạn đã nhập không chính xác." + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "Sên này đã được sử dụng." @@ -15831,7 +15875,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -15915,11 +15959,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -15931,7 +15975,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -15943,7 +15987,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -15981,7 +16025,7 @@ msgstr "Tài khoản khách hàng đã được thay đổi." msgid "The order locale has been changed." msgstr "Địa điểm đặt hàng đã được thay đổi." -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "Hóa đơn đã được tạo ra." @@ -15992,11 +16036,11 @@ msgstr "Hóa đơn đã được tạo ra." msgid "The invoice could not be generated." msgstr "Hóa đơn đã được tạo ra." -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "Hóa đơn đã được tái sinh." -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "Hóa đơn đã được phát hành lại." @@ -17720,8 +17764,8 @@ msgid "Transaction ID" msgstr "ID giao dịch" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -17870,7 +17914,7 @@ msgstr "Huỷ" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -18808,6 +18852,8 @@ msgstr "Bạn có thể tham gia sự kiện của bạn ngoại tuyến." #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "Hủy sự kiện" @@ -21946,13 +21992,13 @@ msgstr "Chi tiết đặt hàng: %(Mã) s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "Phê duyệt" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "Từ chối" @@ -21993,7 +22039,7 @@ msgstr "" "để hết hạn." #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "Hoàn trả cho thanh toán vượt mức" @@ -22731,10 +22777,82 @@ msgstr "" "Bạn không nên thực hiện chức năng này nhiều lần cho cùng một sự kiện hoặc " "mọi người trong danh sách chờ sẽ nhận được nhiều email." -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "Số tiền hoàn lại" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Hủy tất cả các đơn đặt hàng" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "Nếu bạn liên hệ với chúng tôi, vui lòng gửi cho chúng tôi mã sau:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "Văn bản (nếu đơn hàng sẽ không hết hạn tự động)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "Gửi thông tin qua email" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "Bắt đầu hoàn lại %(số tiền) s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "Có, hủy đặt hàng" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -23139,12 +23257,12 @@ msgid "Select action" msgstr "Chọn hành động" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "Số tiền hoàn trả quá mức" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "Đánh dấu là hết hạn nếu quá hạn" @@ -24784,10 +24902,6 @@ msgstr "" "Trong tệp đã tải xuống, có một tệp văn bản có tên là \"isport_code.txt \" " "với mã sáu ký tự." -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "Mã xác nhận" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -26336,7 +26450,7 @@ msgstr "Đơn hàng của bạn: %(mã) s" msgid "Unknown email renderer." msgstr "Trình kết xuất email không xác định." -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "Bạn đã yêu cầu một loại đầu ra vé không hợp lệ." @@ -26390,11 +26504,11 @@ msgstr "" "Cụ thể, các plugin sau vẫn chứa dữ liệu phụ thuộc vào sự kiện này: " "{plugin_names}" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "Nhận xét đã được cập nhật." -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "Không thể cập nhật bình luận." @@ -26764,11 +26878,11 @@ msgstr "Một bí mật khách hàng mới đã được tạo ra." msgid "Access for the selected application has been revoked." msgstr "Truy cập cho ứng dụng đã chọn đã bị thu hồi." -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "Chúng tôi không thể xử lý đầu vào của bạn." -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, fuzzy, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." @@ -26776,7 +26890,7 @@ msgstr "" "Thực hiện thành công hành động \"{nhãn} \" trên {thành công} của {Total} " "đơn hàng." -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -26790,15 +26904,15 @@ msgstr "" "Mã đặt hàng không xác định hoặc không được ủy quyền truy cập đơn đặt hàng " "này." -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "Tải xuống vé không được bật cho sản phẩm này." -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "Lệnh đã bị xóa." -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." @@ -26806,51 +26920,51 @@ msgstr "" "Không thể xóa thứ tự vì một số ràng buộc (ví dụ: dữ liệu được tạo bởi các " "trình cắm) không cho phép nó." -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "Chỉ các đơn đặt hàng được tạo ở chế độ kiểm tra mới có thể bị xóa." -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "Lệnh đã bị từ chối và do đó đã bị hủy." -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "Khoản thanh toán này đã bị hủy bỏ." -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "Khoản thanh toán này không thể bị hủy tại thời điểm này." -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "Hoàn tiền đã bị hủy bỏ." -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "Điều này không thể bị hủy tại thời điểm này." -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "Hoàn tiền đã được xử lý." -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "Điều này không thể được xử lý vào lúc này." -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "Việc hoàn lại đã được đánh dấu là thực hiện." -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "Yêu cầu đã bị xóa." -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "Yêu cầu hủy bỏ của bạn" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, fuzzy, python-brace-format msgid "" "Hello,\n" @@ -26863,7 +26977,7 @@ msgstr "" "Xin chào, n NUN Thật không may, chúng tôi không thể đáp ứng yêu cầu của " "bạn và hủy đơn đặt hàng của bạn." -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." @@ -26871,15 +26985,15 @@ msgstr "" "Khoản thanh toán đã được đánh dấu là hoàn tất, nhưng chúng tôi không thể gửi " "thư xác nhận." -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "Khoản thanh toán đã được đánh dấu là hoàn tất." -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "Khoản thanh toán này không thể được xác nhận tại thời điểm này." -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " @@ -26887,19 +27001,19 @@ msgid "" msgstr "" "Việc hoàn lại đã được ngăn chặn do hoàn lại tiền đã được xử lý cùng một lúc." -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" "Bạn đã nhập một đơn đặt hàng trong một sự kiện với một loại tiền tệ khác." -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" "Bạn không thể hoàn trả nhiều hơn số tiền thanh toán chưa được hoàn lại." -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." @@ -26907,7 +27021,7 @@ msgstr "" "Bạn đã chọn một khoản hoàn trả một phần cho một phương thức thanh toán chỉ " "hỗ trợ hoàn tiền đầy đủ." -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, fuzzy, python-brace-format #| msgid "" #| "One of the refunds failed to be processed. You should retry to refund in " @@ -26917,28 +27031,28 @@ msgid "" "different way. The error message was: {}" msgstr "Một trong những khoản hoàn trả không được xử lý." -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "Một khoản hoàn trả của {} đã được xử lý." -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "Hoàn lại tiền {} đã được lưu, nhưng chưa được thực hiện đầy đủ." -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "Một thẻ quà tặng mới đã được tạo ra." -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "Mã thẻ quà tặng của bạn" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, fuzzy, python-brace-format msgid "" "Hello,\n" @@ -26952,12 +27066,12 @@ msgid "" msgstr "" "Xin chào, n nwe đã hoàn trả cho bạn {số tiền} cho đơn đặt hàng của bạn." -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" "Các khoản hoàn trả bạn đã chọn không khớp với tổng số tiền hoàn lại đã chọn." -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." @@ -26965,29 +27079,29 @@ msgstr "" "Đơn hàng đã được đánh dấu là đã thanh toán, nhưng chúng tôi không thể gửi " "thư xác nhận." -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "Thanh toán đã được tạo thành công." -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "Lệnh đã bị hủy bỏ." -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "Không có ID VAT được chỉ định." -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "Không có quốc gia được chỉ định." -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "Không thể kiểm tra ID VAT vì đất nước này không được hỗ trợ." -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." @@ -26995,169 +27109,169 @@ msgstr "" "Không thể kiểm tra ID VAT, vì dịch vụ kiểm tra VAT của đất nước hiện không " "có sẵn." -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "ID VAT này là hợp lệ." -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "Hóa đơn không xác định." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "Hóa đơn có thể không được thay đổi sau khi chúng được tạo." -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 #, fuzzy #| msgid "Invoices may not be changed after they are created." msgid "Invoices may not be changed after they are transmitted." msgstr "Hóa đơn có thể không được thay đổi sau khi chúng được tạo." -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "Hóa đơn đã bị hủy." -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "Tệp hóa đơn đã được xuất." -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "Tệp hóa đơn quá cũ để được tái sinh." -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "Hóa đơn đã được làm sạch dữ liệu cá nhân." -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "Hóa đơn đã được làm sạch dữ liệu cá nhân." -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "Email đã được xếp hàng để được gửi." -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "Hóa đơn này chưa được tìm thấy" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "Tệp hóa đơn không còn được lưu trữ trên máy chủ." -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "Tệp hóa đơn chưa được tạo, chúng tôi sẽ tạo nó cho bạn ngay bây giờ." -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "Thời hạn thanh toán đã được thay đổi." -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "Chúng tôi không thể xử lý hoàn toàn yêu cầu vì máy chủ quá bận." -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "Hành động này chỉ được phép cho các đơn đặt hàng đang chờ xử lý." -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "Hành động này chỉ được phép cho các đơn đặt hàng bị hủy." -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "Đã xảy ra lỗi." -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "Đơn hàng đã được thay đổi và người dùng đã được thông báo." -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "Thứ tự đã được thay đổi." -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "Chúng tôi đã gặp khó khăn khi xử lý đầu vào của bạn." -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "Không có gì về thứ tự phải được thay đổi." -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "Chúng tôi không thể gửi email." -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, fuzzy, python-brace-format msgid "Subject: {subject}" msgstr "Chủ đề: {chủ đề}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "Tin nhắn của bạn đã được xếp hàng và sẽ được gửi đến {}." -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "Không thể gửi thư cho người dùng sau: {}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "Liên kết này không còn hợp lệ." -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "Không có thứ tự với mã đặt hàng đã cho." -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "Không tìm thấy nhà xuất khẩu được chọn." -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "Có một vấn đề xử lý đầu vào của bạn." -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, fuzzy, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "Lịch trình xuất khẩu của bạn đã được lưu." -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" "Lịch trình xuất khẩu của bạn đã được lưu, nhưng không có kế hoạch xuất khẩu " "tiếp theo." -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, fuzzy, python-brace-format msgid "Export: {title}" msgstr "Xuất khẩu: {Tiêu đề}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -27167,7 +27281,7 @@ msgstr "" "Xin chào, n nattached vào email này, bạn có thể tìm thấy một báo cáo theo " "lịch trình mới cho {name}." -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -27175,25 +27289,25 @@ msgid "" "therefore you cannot schedule it." msgstr "Bạn không có đủ quyền để thực hiện xuất khẩu này." -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "Xuất khẩu của bạn được xếp hàng để bắt đầu sớm." -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "Tất cả các đơn đặt hàng đã bị hủy bỏ." -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, fuzzy, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "Các đơn đặt hàng đã bị hủy bỏ." -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "Đầu vào của bạn không hợp lệ." @@ -28270,7 +28384,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -28303,7 +28417,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -28314,23 +28428,23 @@ msgstr "" "Tôi đã hiểu rằng mọi người sẽ trả giá vé trực tiếp vào tài khoản ngân hàng " "của tôi và Pretix không thể tự động biết các khoản thanh toán đã đến." -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "Loại tài khoản ngân hàng" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "Tài khoản ngân hàng SEPA" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "Tài khoản ngân hàng khác" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "Tên của chủ tài khoản" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." @@ -28338,35 +28452,35 @@ msgstr "" "Xin lưu ý: Các ký tự đặc biệt khác ngoài chữ cái, số và một số dấu câu có " "thể gây ra vấn đề với một số ngân hàng." -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "Iban" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "Tên của ngân hàng" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "Chi tiết tài khoản ngân hàng" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -28375,34 +28489,34 @@ msgstr "" "Bao gồm mọi thứ khác mà khách hàng của bạn có thể cần gửi cho bạn một khoản " "thanh toán chuyển khoản ngân hàng." -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "Đối với tài khoản SEPA, bạn có thể để trống cái này." -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "Không bao gồm dấu gạch nối trong tham chiếu thanh toán." -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "Điều này được yêu cầu ở một số quốc gia." -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "Bao gồm số hóa đơn trong tham chiếu thanh toán." -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "Tiền tố cho tham chiếu thanh toán" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "Văn bản bổ sung để hiển thị trên các đơn đặt hàng đang chờ xử lý" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." @@ -28410,11 +28524,11 @@ msgstr "" "Văn bản này sẽ được hiển thị trên trang Xác nhận đơn hàng để chờ các đơn đặt " "hàng ngoài văn bản tiêu chuẩn." -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "Danh sách khối Iban để hoàn lại tiền" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -28425,11 +28539,11 @@ msgid "" "starting with 12345." msgstr "Đặt một tiền tố IBAN hoặc IBAN cho mỗi dòng." -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "Hạn chế cho khách hàng doanh nghiệp" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -28437,23 +28551,23 @@ msgstr "" "Chỉ cho phép chọn nhà cung cấp thanh toán này cho khách hàng nhập địa chỉ " "hóa đơn và chọn \"Khách hàng kinh doanh hoặc tổ chức \"." -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "Vui lòng điền vào chi tiết tài khoản ngân hàng của bạn." -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "Vui lòng nhập chi tiết tài khoản ngân hàng của bạn." -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "Vui lòng chuyển toàn bộ số tiền vào tài khoản ngân hàng sau:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -28463,9 +28577,9 @@ msgstr "Vui lòng chuyển toàn bộ số tiền vào tài khoản ngân hàng msgid "Account holder" msgstr "Chủ tài khoản" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -28475,27 +28589,27 @@ msgstr "Chủ tài khoản" msgid "Bank" msgstr "Ngân hàng" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "IBAN/BIC không hợp lệ" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, fuzzy, python-brace-format msgid "Bank account {iban}" msgstr "Tài khoản ngân hàng {IBAN}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" "Chỉ có thể tạo khoản hoàn trả chuyển khoản ngân hàng từ khoản thanh toán " "hiện có." -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC (tùy chọn)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "Đầu vào của bạn không hợp lệ, vui lòng xem bên dưới để biết chi tiết." @@ -28530,8 +28644,8 @@ msgstr "Đơn hàng đã bị hủy bỏ." msgid "Currencies do not match." msgstr "Tiền tệ không khớp." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" @@ -28539,21 +28653,21 @@ msgstr "" "Sau khi hoàn thành việc mua hàng của bạn, chúng tôi sẽ yêu cầu bạn chuyển " "tiền vào tài khoản ngân hàng sau, sử dụng mã tham chiếu cá nhân:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "Vui lòng không bắt đầu thanh toán." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "Mã tham khảo (quan trọng):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." @@ -28561,8 +28675,8 @@ msgstr "" "Chúng tôi sẽ gán cho bạn một mã tham chiếu cá nhân để sử dụng sau khi bạn " "hoàn thành đơn đặt hàng." -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/vi/LC_MESSAGES/djangojs.po b/src/pretix/locale/vi/LC_MESSAGES/djangojs.po index 45d39d9fd4..59fc37825a 100644 --- a/src/pretix/locale/vi/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/vi/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-06-06 06:09+0000\n" "Last-Translator: Michael Dao \n" "Language-Team: Vietnamese pretix" @@ -14115,6 +14136,24 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +msgid "The confirmation code is incorrect." +msgstr "" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "" @@ -14776,7 +14815,7 @@ msgstr "" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "" @@ -14860,11 +14899,11 @@ msgstr "" msgid "The order has been set to require payment before use." msgstr "" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "" @@ -14876,7 +14915,7 @@ msgstr "" msgid "The order has been refunded." msgstr "" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "" @@ -14888,7 +14927,7 @@ msgstr "" msgid "The order requires approval before it can continue to be processed." msgstr "" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "" @@ -14923,7 +14962,7 @@ msgstr "" msgid "The order locale has been changed." msgstr "" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "" @@ -14932,11 +14971,11 @@ msgstr "" msgid "The invoice could not be generated." msgstr "" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "" @@ -16590,8 +16629,8 @@ msgid "Transaction ID" msgstr "" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -16741,7 +16780,7 @@ msgstr "" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -17602,6 +17641,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "" @@ -20499,13 +20540,13 @@ msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "" @@ -20544,7 +20585,7 @@ msgid "" msgstr "" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "" @@ -21218,10 +21259,74 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +msgid "Preview refund amount" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +msgid "If you proceed, the system will do the following:" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" +msgstr[1] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +msgid "Refunds will not happen automatically." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +msgid "Inform all customers via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, python-format +msgid "Proceed and refund approx. %(amount)s" +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +msgid "Proceed and cancel orders" +msgstr "" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -21616,12 +21721,12 @@ msgid "Select action" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 msgid "Refund overpaid amount" msgstr "" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -23135,10 +23240,6 @@ msgid "" "successfully downloaded the file." msgstr "" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -24578,7 +24679,7 @@ msgstr "" msgid "Unknown email renderer." msgstr "" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "" @@ -24626,11 +24727,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "" @@ -24966,17 +25067,17 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 msgid "We could not process your input. See below for details." msgstr "" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -24988,65 +25089,65 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -25057,72 +25158,72 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 msgid "You entered an order in an event with a different currency." msgstr "" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -25135,201 +25236,201 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 msgid "The invoice has been scheduled for retransmission." msgstr "" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -25337,31 +25438,31 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 msgid "" "Your user account does not have sufficient permission to run this report, " "therefore you cannot schedule it." msgstr "" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "" @@ -26380,7 +26481,7 @@ msgstr "" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -26413,7 +26514,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -26422,101 +26523,101 @@ msgid "" "information." msgstr "" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " "need your full address and your bank's full address." msgstr "" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " "numbers, routing numbers, addresses, etc." msgstr "" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -26527,33 +26628,33 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -26563,9 +26664,9 @@ msgstr "" msgid "Account holder" msgstr "" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -26575,25 +26676,25 @@ msgstr "" msgid "Bank" msgstr "" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "" @@ -26628,35 +26729,35 @@ msgstr "" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 msgid "" "Please do not yet start a payment. We'll assign you a personal reference " "code after you completed the order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/vls/LC_MESSAGES/djangojs.po b/src/pretix/locale/vls/LC_MESSAGES/djangojs.po index 250d7614a4..3ad08f20a7 100644 --- a/src/pretix/locale/vls/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/vls/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -638,40 +638,40 @@ msgid "" "will be impacted." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:417 -#: pretix/static/pretixcontrol/js/ui/main.js:437 +#: pretix/static/pretixcontrol/js/ui/main.js:418 +#: pretix/static/pretixcontrol/js/ui/main.js:438 msgid "Search query" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:435 +#: pretix/static/pretixcontrol/js/ui/main.js:436 msgid "All" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:436 +#: pretix/static/pretixcontrol/js/ui/main.js:437 msgid "None" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:440 +#: pretix/static/pretixcontrol/js/ui/main.js:441 msgid "Selected only" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:813 +#: pretix/static/pretixcontrol/js/ui/main.js:814 msgid "Enter page number between 1 and %(max)s." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:816 +#: pretix/static/pretixcontrol/js/ui/main.js:817 msgid "Invalid page number." msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:974 +#: pretix/static/pretixcontrol/js/ui/main.js:975 msgid "Use a different name internally" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1014 +#: pretix/static/pretixcontrol/js/ui/main.js:1015 msgid "Click to close" msgstr "" -#: pretix/static/pretixcontrol/js/ui/main.js:1095 +#: pretix/static/pretixcontrol/js/ui/main.js:1096 msgid "You have unsaved changes!" msgstr "" diff --git a/src/pretix/locale/zh_Hans/LC_MESSAGES/django.po b/src/pretix/locale/zh_Hans/LC_MESSAGES/django.po index b8741633ef..532473c692 100644 --- a/src/pretix/locale/zh_Hans/LC_MESSAGES/django.po +++ b/src/pretix/locale/zh_Hans/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:26+0000\n" +"POT-Creation-Date: 2025-10-29 07:54+0000\n" "PO-Revision-Date: 2024-12-25 23:27+0000\n" "Last-Translator: Aarni Heinonen \n" "Language-Team: Chinese (Simplified Han script) pretix" @@ -16431,6 +16456,26 @@ msgstr "" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "验证码" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "您输入的确认号码不正确。" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "这个slug已经在使用了。请选择其他的。" @@ -17237,7 +17282,7 @@ msgstr "用户确认以下消息:\"{}\"" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "订单已拒绝。" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "订单已取消。" @@ -17327,11 +17372,11 @@ msgstr "订单已标记为已付款。" msgid "The order has been set to require payment before use." msgstr "优惠券已创建。" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "订单已标记为已过期。" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "订单已标记为已付款。" @@ -17345,7 +17390,7 @@ msgstr "所选问题已被删除。" msgid "The order has been refunded." msgstr "订单已退款。" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 #, fuzzy #| msgid "The order has been created." msgid "The order has been reactivated." @@ -17359,7 +17404,7 @@ msgstr "订单已创建。" msgid "The order requires approval before it can continue to be processed." msgstr "订单需要获得批准才能继续处理。" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "订单已批准。" @@ -17400,7 +17445,7 @@ msgstr "该问题已被更改。" msgid "The order locale has been changed." msgstr "订单区域设置已更改。" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "发票已生成。" @@ -17411,11 +17456,11 @@ msgstr "发票已生成。" msgid "The invoice could not be generated." msgstr "发票已生成。" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "发票已重新生成。" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "发票已重新发行。" @@ -19322,8 +19367,8 @@ msgid "Transaction ID" msgstr "交易码" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -19483,7 +19528,7 @@ msgstr "取消" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -20477,6 +20522,8 @@ msgstr "" #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 #, fuzzy #| msgid "Clone event" msgid "Cancel event" @@ -23807,13 +23854,13 @@ msgstr "订单详细信息:%(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "批准" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "拒绝" @@ -23858,7 +23905,7 @@ msgstr "" "标记为过期。" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 #, fuzzy #| msgid "Refund order" msgid "Refund for overpayment" @@ -24624,12 +24671,85 @@ msgid "" "everyone on the waiting list will get multiple emails." msgstr "" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount:" +msgid "Preview refund amount" +msgstr "退款金额:" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 #, fuzzy #| msgid "Cancel order" msgid "Cancel all orders" msgstr "取消订单" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "如果您与我们联系,请将以下号码发送给我们:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Generate tickets" +msgid "Refunds will not happen automatically." +msgstr "生成门票" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send vouchers" +msgid "Inform all customers via email." +msgstr "发送优惠券" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "开始退款%(amount)s" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "是的,取消订单" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -25078,14 +25198,14 @@ msgid "Select action" msgstr "选择 州" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy #| msgid "Refund full paid amount" msgid "Refund overpaid amount" msgstr "全额退款" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -26877,10 +26997,6 @@ msgstr "" "在下载的文件中,有一个名为“CONFIRM_CODE.txt”的文本文件,其中包含六个字符的代" "码。 请在此处输入此代码以确认您已成功下载该文件。" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "验证码" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -28537,7 +28653,7 @@ msgstr "您的订单:{code}" msgid "Unknown email renderer." msgstr "未知的电子邮件渲染器。" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "您请求的票证输出类型无效。" @@ -28585,11 +28701,11 @@ msgid "" "event: {plugin_names}" msgstr "" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "评论已更新。" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "无法更新评论。" @@ -28951,19 +29067,19 @@ msgstr "你的修改已被保存。 请注意,您的更改可能需要很短 msgid "Access for the selected application has been revoked." msgstr "已撤销对所选应用程序的访问权限。" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "我们无法保存您的更改。详见下文。" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -28975,69 +29091,69 @@ msgstr "" msgid "Unknown order code or not authorized to access this order." msgstr "未知订单代码或未授权访问此订单。" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "此产品未启用票证下载。" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "订单已被删除。" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "无法删除订单,因为某些约束(例如插件创建的数据)不允许删除。" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "只能删除在测试模式下创建的订单。" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "该订单已被拒绝,因此现已取消。" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "此付款已被取消。" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "目前不能取消这笔付款。" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "退款已被取消。" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "此退款目前无法取消。" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "退款已处理完毕。" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "此退款目前无法处理。" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "退款已标记为已完成。" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 #, fuzzy #| msgid "The device has been verified and can now be used." msgid "The request has been removed. If you want, you can now inform the user." msgstr "该设备已经过验证,现在可以使用。" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 #, fuzzy #| msgid "Cancellation fee" msgid "Your cancellation request" msgstr "取消费用" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, fuzzy, python-brace-format #| msgid "" #| "Hello,\n" @@ -29073,78 +29189,78 @@ msgstr "" "致敬,\n" "您的{event}团队" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "付款已标记为已完成,但我们无法发送确认邮件。" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "付款已标记为已完成。" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "目前无法确认这笔付款。" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " "still necessary." msgstr "" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You entered an order that could not be found." msgid "You entered an order in an event with a different currency." msgstr "您输入了无法找到的订单。" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "您的退款金额不能超过尚未退款的付款金额。" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "您为仅支持全额退款的付款方式选择了部分退款。" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "其中一个退款处理失败。您应该以不同的方式重新尝试退款。错误消息为:{}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "已处理的退款{}。" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "{}的退款已保存,但尚未完全执行。 您可以在下面将其标记为完成。" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 #, fuzzy #| msgid "The device has been verified and can now be used." msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "该设备已经过验证,现在可以使用。" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 #, fuzzy #| msgid "Gift card code" msgid "Your gift card code" msgstr "礼品卡代码" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -29157,213 +29273,213 @@ msgid "" "Your {event} team" msgstr "" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "您选择的退款与所选的退款总额不符。" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "订单已标记为已付款,但我们无法发送确认邮件。" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "已成功创建付款。" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "订单已被取消。 您现在可以选择将资金转回给用户的方式。" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "未指定增值税ID。" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "未指定国家。" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 #, fuzzy #| msgid "" #| "VAT ID could not be checked since a non-EU country has been specified." msgid "VAT ID could not be checked since this country is not supported." msgstr "由于指定了非欧盟国家/地区,因此无法检查增值税ID。" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "无法检查增值税ID,因为该国家的增值税检查服务目前无法使用。" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "此增值税ID有效。" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "未知发票。" -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 msgid "Invoices may not be changed after they are transmitted." msgstr "" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "发票已被取消。" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 #, fuzzy #| msgid "The invoice has already been canceled." msgid "The invoice file has already been exported." msgstr "发票已被取消。" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 #, fuzzy #| msgid "The invoice has been regenerated." msgid "The invoice file is too old to be regenerated." msgstr "发票已重新生成。" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "发票已清除个人数据。" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "发票已清除个人数据。" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "电子邮件已排队等待发送。" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "尚未找到此发票" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "发票文件不再存储在服务器上。" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "尚未生成发票文件,我们现在将为您生成。 请在几秒钟后再试一次。" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "付款条件已更改。" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "由于服务器太忙,我们无法完全处理请求。" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "此操作仅适于用待处理订单。" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 #, fuzzy #| msgid "This action is only allowed for pending orders." msgid "This action is only allowed for canceled orders." msgstr "此操作仅适于用待处理订单。" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "发生错误。 请参阅下面的详细信息。" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "订单已更改并已通知用户。" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "订单已更改。" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "我们在处理您的输入时遇到困难。请检查下面的错误。" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "订单的任何内容都不得改变。" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "我们无法发送电子邮件。 请参阅下文了解详情。" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "主题:{subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "您的邮件已排队,并将发送至{}。" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "无法向以下用户发送邮件:{}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "此链接不再有效。 请返回,刷新页面,然后重试。" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "没有指定订单代码的订单。" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "找不到选定的导出程序。" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "处理您的输入时出现问题。请参阅下面的错误详细信息。" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, fuzzy, python-brace-format #| msgid "Expiry date" msgid "Export: {title}" msgstr "到期日" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -29371,7 +29487,7 @@ msgid "" "attached to this email, you can find a new scheduled report for {name}." msgstr "" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have permission to perform this action." msgid "" @@ -29379,27 +29495,27 @@ msgid "" "therefore you cannot schedule it." msgstr "您没有执行此操作的权限。" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " "minutes." msgstr "" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 #, fuzzy #| msgid "The order has been canceled." msgid "All orders have been canceled." msgstr "订单已取消。" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 #, fuzzy #| msgid "The password you entered was invalid, please try again." msgid "Your input was not valid." @@ -30592,7 +30708,7 @@ msgstr "徽章布局:{}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -30627,7 +30743,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "安装python包\"chardet\"以获得更好的csv导入功能。" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -30639,57 +30755,57 @@ msgstr "" "项。因此,我会手动将付款标记为完成,或者定期导入银行账单数据,以便为pretix提" "供所需信息。" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "银行账户类型" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "SEPA银行账户" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "其他银行账户" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "账户持有人姓名" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "国际银行账号" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "银行名称" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "银行帐户详细信息" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -30698,7 +30814,7 @@ msgstr "" "包括客户可能需要向您发送银行转帐付款的所有其他内容。 如果您有很多国际客户,他" "们可能需要您的完整地址和银行的完整地址。" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -30707,47 +30823,47 @@ msgstr "" "对于SEPA帐户,您可以将其留空。 否则,请添加客户转账所需的所有信息,例如: 帐" "号,路由号码,地址等。" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 #, fuzzy #| msgid "Do not include a hyphen in the payment reference." msgid "Do not include hyphens in the payment reference." msgstr "请勿在付款参考中包含连字符。" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "这在某些国家是必需的。" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 #, fuzzy #| msgid "Do not include a hyphen in the payment reference." msgid "Include invoice number in the payment reference." msgstr "请勿在付款参考中包含连字符。" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 #, fuzzy #| msgid "Tax rule for payment fees" msgid "Prefix for the payment reference" msgstr "支付费用的税收规则" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 #, fuzzy #| msgid "This action is only allowed for pending orders." msgid "Additional text to show on pending orders" msgstr "此操作仅适于用待处理订单。" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 #, fuzzy #| msgid "All open refunds" msgid "IBAN blocklist for refunds" msgstr "所有公开退款" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 msgid "" "Put one IBAN or IBAN prefix per line. The system will not attempt to send " "refunds to any of these IBANs. Useful e.g. if you receive a lot of " @@ -30758,35 +30874,35 @@ msgid "" "starting with 12345." msgstr "" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 #, fuzzy #| msgid "Business customer" msgid "Restrict to business customers" msgstr "商业客户" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." msgstr "" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "请填写您的银行帐户详细信息。" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "请输入您的银行帐户详细信息。" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "请将全额转账到以下银行账户:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -30796,9 +30912,9 @@ msgstr "请将全额转账到以下银行账户:" msgid "Account holder" msgstr "账户持有人" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -30808,28 +30924,28 @@ msgstr "账户持有人" msgid "Bank" msgstr "银行" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, fuzzy, python-brace-format #| msgid "Bank account type" msgid "Bank account {iban}" msgstr "银行账户类型" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 #, fuzzy #| msgid "(optional)" msgid "BIC (optional)" msgstr "(可选)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 #, fuzzy #| msgid "The password you entered was invalid, please try again." msgid "Your input was invalid, please see below for details." @@ -30868,15 +30984,15 @@ msgstr "订单已被取消。" msgid "Currencies do not match." msgstr "" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "完成购买后,我们会要求您使用个人参考代码将款项转入以下银行帐户:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 #, fuzzy #| msgid "" #| "We will assign you a personal reference code to use after you completed " @@ -30886,21 +31002,21 @@ msgid "" "code after you completed the order." msgstr "完成订单后,我们将为您分配个人参考代码。" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "参考代码(重要):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "完成订单后,我们将为您分配个人参考代码。" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 #, fuzzy #| msgid "" #| "After completing your purchase, we will ask you to transfer the money to " @@ -38638,9 +38754,6 @@ msgstr "" #~ "code here:" #~ msgstr "要使用我们的应用程序开始扫描门票,请先在此处创建配置代码:" -#~ msgid "Create configuration" -#~ msgstr "创建配置" - #~ msgid "Create a new configuration" #~ msgstr "创建一个新配置" diff --git a/src/pretix/locale/zh_Hans/LC_MESSAGES/djangojs.po b/src/pretix/locale/zh_Hans/LC_MESSAGES/djangojs.po index 1fb34473b0..b09d75094a 100644 --- a/src/pretix/locale/zh_Hans/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/zh_Hans/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2021-12-03 08:37+0000\n" "Last-Translator: ExtremeX-BB \n" "Language-Team: Chinese (Simplified) \n" "Language-Team: Chinese (Traditional Han script) pretix" @@ -15157,6 +15182,26 @@ msgstr "如果你設定日期範圍,請同時設定開始和結束。" msgid "Please confirm that you want to cancel ALL dates in this event series." msgstr "請確認你要取消此活動系列中的所有日期。" +#: pretix/control/forms/orders.py:1037 +msgid "I understand that this is not reversible and want to continue" +msgstr "" + +#: pretix/control/forms/orders.py:1041 +#: pretix/control/templates/pretixcontrol/shredder/download.html:53 +msgid "Confirmation code" +msgstr "確認碼" + +#: pretix/control/forms/orders.py:1042 +msgid "" +"We have just emailed you a confirmation code to enter to confirm this action" +msgstr "" + +#: pretix/control/forms/orders.py:1055 +#, fuzzy +#| msgid "The confirm code you entered was incorrect." +msgid "The confirmation code is incorrect." +msgstr "你輸入的確認代碼不正確。" + #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." msgstr "這個slug值已經在使用中。請選擇其他一項。" @@ -15875,7 +15920,7 @@ msgstr "用戶確認以下消息:“{}”" msgid "The order has been canceled (comment: \"{comment}\")." msgstr "訂單已被取消(註釋:{comment})。" -#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1566 +#: pretix/control/logdisplay.py:416 pretix/control/views/orders.py:1567 #: pretix/presale/views/order.py:1072 msgid "The order has been canceled." msgstr "訂單已被取消。" @@ -15959,11 +16004,11 @@ msgstr "訂單在付款前已設定為可用。" msgid "The order has been set to require payment before use." msgstr "該訂單已設定為在使用前需要付款。" -#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1571 +#: pretix/control/logdisplay.py:505 pretix/control/views/orders.py:1572 msgid "The order has been marked as expired." msgstr "訂單已標記為已過期。" -#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1470 +#: pretix/control/logdisplay.py:506 pretix/control/views/orders.py:1471 msgid "The order has been marked as paid." msgstr "訂單已標記為已付款。" @@ -15975,7 +16020,7 @@ msgstr "取消請求已被刪除。" msgid "The order has been refunded." msgstr "訂單已退款。" -#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1887 +#: pretix/control/logdisplay.py:509 pretix/control/views/orders.py:1888 msgid "The order has been reactivated." msgstr "訂單已重新啟動。" @@ -15987,7 +16032,7 @@ msgstr "訂單已建立。" msgid "The order requires approval before it can continue to be processed." msgstr "訂單需要獲得批准才能繼續處理。" -#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:790 +#: pretix/control/logdisplay.py:513 pretix/control/views/orders.py:791 msgid "The order has been approved." msgstr "訂單已獲批准。" @@ -16022,7 +16067,7 @@ msgstr "客戶帳戶已更改。" msgid "The order locale has been changed." msgstr "訂單區域設定已更改。" -#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1610 +#: pretix/control/logdisplay.py:524 pretix/control/views/orders.py:1611 #: pretix/presale/views/order.py:745 pretix/presale/views/order.py:825 msgid "The invoice has been generated." msgstr "發票已產生。" @@ -16033,11 +16078,11 @@ msgstr "發票已產生。" msgid "The invoice could not be generated." msgstr "發票已產生。" -#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1683 +#: pretix/control/logdisplay.py:526 pretix/control/views/orders.py:1684 msgid "The invoice has been regenerated." msgstr "發票已重新產生。" -#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1745 +#: pretix/control/logdisplay.py:527 pretix/control/views/orders.py:1746 #: pretix/presale/views/order.py:845 msgid "The invoice has been reissued." msgstr "發票已新開。" @@ -17723,8 +17768,8 @@ msgid "Transaction ID" msgstr "交易 ID" #: pretix/control/templates/pretixcontrol/boxoffice/payment.html:98 -#: pretix/plugins/banktransfer/payment.py:297 -#: pretix/plugins/banktransfer/payment.py:306 +#: pretix/plugins/banktransfer/payment.py:298 +#: pretix/plugins/banktransfer/payment.py:307 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/control.html:32 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:33 msgid "Reference" @@ -17873,7 +17918,7 @@ msgstr "取消" #: pretix/control/templates/pretixcontrol/vouchers/delete_carts.html:16 #: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15 #: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36 -#: pretix/control/views/orders.py:387 +#: pretix/control/views/orders.py:388 #: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:15 #: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:16 #: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:15 @@ -18858,6 +18903,8 @@ msgstr "你可以將活動離線。除了你的團隊之外,沒有人能夠再 #: pretix/control/templates/pretixcontrol/event/dangerzone.html:47 #: pretix/control/templates/pretixcontrol/orders/cancel.html:5 #: pretix/control/templates/pretixcontrol/orders/cancel.html:7 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:6 +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:8 msgid "Cancel event" msgstr "取消活動" @@ -21969,13 +22016,13 @@ msgstr "訂單詳情:%(code)s" #: pretix/control/templates/pretixcontrol/order/index.html:46 #: pretix/control/templates/pretixcontrol/orders/index.html:297 -#: pretix/control/views/orders.py:311 +#: pretix/control/views/orders.py:312 msgid "Approve" msgstr "已批准" #: pretix/control/templates/pretixcontrol/order/index.html:51 #: pretix/control/templates/pretixcontrol/orders/index.html:304 -#: pretix/control/views/orders.py:325 +#: pretix/control/views/orders.py:326 msgid "Deny" msgstr "否認" @@ -22016,7 +22063,7 @@ msgstr "" "將其標記為已過期。" #: pretix/control/templates/pretixcontrol/order/index.html:116 -#: pretix/control/views/orders.py:373 +#: pretix/control/views/orders.py:374 msgid "Refund for overpayment" msgstr "為逾額退款" @@ -22743,10 +22790,83 @@ msgstr "" "你不應為同一事件多次執行此功能,否則等候補名單中的每個人都會收到多封電子郵" "件。" -#: pretix/control/templates/pretixcontrol/orders/cancel.html:83 +#: pretix/control/templates/pretixcontrol/orders/cancel.html:84 +#, fuzzy +#| msgid "Refund amount" +msgid "Preview refund amount" +msgstr "退款總額" + +#: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "取消所有訂單" +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 +#, fuzzy +#| msgid "If you contact us, please send us the following code:" +msgid "If you proceed, the system will do the following:" +msgstr "如果你聯繫我們,請向我們發送以下代碼:" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 +#, python-format +msgid "%(count)s order will be canceled fully" +msgid_plural "%(count)s orders will be canceled fully" +msgstr[0] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 +#, python-format +msgid "%(count)s order will be canceled partially" +msgid_plural "%(count)s orders will be canceled partially" +msgstr[0] "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 +#, python-format +msgid "%(amount)s are eligible for refunds." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 +msgid "" +"The system will attempt to refund the money automatically if supported by " +"the payment method." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 +msgid "The system will create manual refunds that you need to execute." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 +#, fuzzy +#| msgid "Text (if order will not expire automatically)" +msgid "Refunds will not happen automatically." +msgstr "文字(如果訂單不會自動過期)" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 +#, fuzzy +#| msgid "Send information via email" +msgid "Inform all customers via email." +msgstr "透過電子郵件發送資訊" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 +msgid "Inform all waiting list contacts via email." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 +msgid "" +"These numbers are estimates and may change if the data in your event " +"recently changed." +msgstr "" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 +#, fuzzy, python-format +#| msgid "Initiate a refund of %(amount)s" +msgid "Proceed and refund approx. %(amount)s" +msgstr "發起%(amount)s的退款" + +#: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 +#, fuzzy +#| msgid "Yes, cancel order" +msgid "Proceed and cancel orders" +msgstr "是,取消訂單" + #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 #: pretix/control/templates/pretixcontrol/orders/export_form.html:4 @@ -23151,14 +23271,14 @@ msgid "Select action" msgstr "選擇日期" #: pretix/control/templates/pretixcontrol/orders/index.html:311 -#: pretix/control/views/orders.py:357 +#: pretix/control/views/orders.py:358 #, fuzzy #| msgid "Refund full paid amount" msgid "Refund overpaid amount" msgstr "全額退款" #: pretix/control/templates/pretixcontrol/orders/index.html:319 -#: pretix/control/views/orders.py:342 +#: pretix/control/views/orders.py:343 msgid "Mark as expired if overdue" msgstr "" @@ -24833,10 +24953,6 @@ msgstr "" "在下載的檔中,有一個名為“CONFIRM_CODE.txt”的文本檔,其中包含六個字元的代碼。" "請在此處輸入此代碼以確認你已成功下載檔。" -#: pretix/control/templates/pretixcontrol/shredder/download.html:53 -msgid "Confirmation code" -msgstr "確認碼" - #: pretix/control/templates/pretixcontrol/shredder/download.html:59 msgid "" "Depending on the amount of data in your event, the following step may take a " @@ -26385,7 +26501,7 @@ msgstr "你的訂單:%(code)s" msgid "Unknown email renderer." msgstr "未知的電子郵件渲染器。" -#: pretix/control/views/event.py:920 pretix/control/views/orders.py:678 +#: pretix/control/views/event.py:920 pretix/control/views/orders.py:679 #: pretix/presale/views/order.py:1111 pretix/presale/views/order.py:1118 msgid "You requested an invalid ticket output type." msgstr "你請求的票證輸出類型無效。" @@ -26435,11 +26551,11 @@ msgid "" "event: {plugin_names}" msgstr "具體來說,以下外掛程式仍然包含依賴於此事件的數據:{plugin_names}" -#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:771 +#: pretix/control/views/event.py:1251 pretix/control/views/orders.py:772 msgid "The comment has been updated." msgstr "評論已更新。" -#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:773 +#: pretix/control/views/event.py:1253 pretix/control/views/orders.py:774 msgid "Could not update the comment." msgstr "無法更新評論。" @@ -26810,19 +26926,19 @@ msgstr "" msgid "Access for the selected application has been revoked." msgstr "所選取權限已被撤銷。" -#: pretix/control/views/orders.py:193 +#: pretix/control/views/orders.py:194 #, fuzzy #| msgid "We could not save your changes. See below for details." msgid "We could not process your input. See below for details." msgstr "我們無法儲存你的更改。詳情見下文。" -#: pretix/control/views/orders.py:266 +#: pretix/control/views/orders.py:267 #, python-brace-format msgid "" "Successfully executed the action \"{label}\" on {success} of {total} orders." msgstr "已成功對 {total} 個訂單中的 {success} 個執行操作「{label}」。" -#: pretix/control/views/orders.py:680 pretix/presale/views/order.py:161 +#: pretix/control/views/orders.py:681 pretix/presale/views/order.py:161 #: pretix/presale/views/order.py:243 pretix/presale/views/order.py:337 #: pretix/presale/views/order.py:364 pretix/presale/views/order.py:432 #: pretix/presale/views/order.py:499 pretix/presale/views/order.py:545 @@ -26834,66 +26950,66 @@ msgstr "已成功對 {total} 個訂單中的 {success} 個執行操作「{label} msgid "Unknown order code or not authorized to access this order." msgstr "訂單代碼未知或無權訪問此訂單。" -#: pretix/control/views/orders.py:682 pretix/presale/views/order.py:1125 +#: pretix/control/views/orders.py:683 pretix/presale/views/order.py:1125 msgid "Ticket download is not enabled for this product." msgstr "此產品未啟用票證下載。" -#: pretix/control/views/orders.py:807 +#: pretix/control/views/orders.py:808 msgid "The order has been deleted." msgstr "訂單已被刪除。" -#: pretix/control/views/orders.py:814 +#: pretix/control/views/orders.py:815 msgid "" "The order could not be deleted as some constraints (e.g. data created by " "plug-ins) do not allow it." msgstr "" "由於某些限制(例如外掛程式建立的數據)不允許刪除該順序,因此無法刪除該訂單。" -#: pretix/control/views/orders.py:822 +#: pretix/control/views/orders.py:823 msgid "Only orders created in test mode can be deleted." msgstr "只能刪除在測試模式下建立的訂單。" -#: pretix/control/views/orders.py:843 +#: pretix/control/views/orders.py:844 msgid "The order has been denied and is therefore now canceled." msgstr "該命令已被拒絕,因此現已取消。" -#: pretix/control/views/orders.py:883 +#: pretix/control/views/orders.py:884 msgid "This payment has been canceled." msgstr "此付款已被取消。" -#: pretix/control/views/orders.py:885 +#: pretix/control/views/orders.py:886 msgid "This payment can not be canceled at the moment." msgstr "此付款目前無法取消。" -#: pretix/control/views/orders.py:911 +#: pretix/control/views/orders.py:912 msgid "The refund has been canceled." msgstr "退款已被取消。" -#: pretix/control/views/orders.py:913 +#: pretix/control/views/orders.py:914 msgid "This refund can not be canceled at the moment." msgstr "此退款目前無法取消。" -#: pretix/control/views/orders.py:947 +#: pretix/control/views/orders.py:948 msgid "The refund has been processed." msgstr "退款已處理完畢。" -#: pretix/control/views/orders.py:949 pretix/control/views/orders.py:975 +#: pretix/control/views/orders.py:950 pretix/control/views/orders.py:976 msgid "This refund can not be processed at the moment." msgstr "此退款目前無法處理。" -#: pretix/control/views/orders.py:973 +#: pretix/control/views/orders.py:974 msgid "The refund has been marked as done." msgstr "退款已標記為已完成。" -#: pretix/control/views/orders.py:999 +#: pretix/control/views/orders.py:1000 msgid "The request has been removed. If you want, you can now inform the user." msgstr "該請求已被刪除。如果需要,現在可以通知使用者。" -#: pretix/control/views/orders.py:1006 +#: pretix/control/views/orders.py:1007 msgid "Your cancellation request" msgstr "你的要求取消" -#: pretix/control/views/orders.py:1007 +#: pretix/control/views/orders.py:1008 #, python-brace-format msgid "" "Hello,\n" @@ -26909,21 +27025,21 @@ msgstr "" "\n" "你的{event}團隊" -#: pretix/control/views/orders.py:1063 +#: pretix/control/views/orders.py:1064 msgid "" "The payment has been marked as complete, but we were unable to send a " "confirmation mail." msgstr "付款已標記為完成,但我們無法發送確認郵件。" -#: pretix/control/views/orders.py:1066 +#: pretix/control/views/orders.py:1067 msgid "The payment has been marked as complete." msgstr "付款已標記為完成。" -#: pretix/control/views/orders.py:1068 +#: pretix/control/views/orders.py:1069 msgid "This payment can not be confirmed at the moment." msgstr "這筆付款目前無法確認。" -#: pretix/control/views/orders.py:1159 +#: pretix/control/views/orders.py:1160 msgid "" "The refund was prevented due to a refund already being processed at the same " "time. Please have a look at the order details and check if your refund is " @@ -26931,53 +27047,53 @@ msgid "" msgstr "" "由於退款正在同時處理,因此退款被阻止。請查看訂單詳情並檢查是否仍需要退款。" -#: pretix/control/views/orders.py:1260 +#: pretix/control/views/orders.py:1261 #, fuzzy #| msgid "You entered an order that could not be found." msgid "You entered an order in an event with a different currency." msgstr "你輸入的訂單找不到。" -#: pretix/control/views/orders.py:1311 +#: pretix/control/views/orders.py:1312 msgid "" "You can not refund more than the amount of a payment that is not yet " "refunded." msgstr "你不能退還超過尚未退還的付款金額。" -#: pretix/control/views/orders.py:1316 +#: pretix/control/views/orders.py:1317 msgid "" "You selected a partial refund for a payment method that only supports full " "refunds." msgstr "你為僅支援全額退款的付款方式選擇了部分退款。" -#: pretix/control/views/orders.py:1346 +#: pretix/control/views/orders.py:1347 #, python-brace-format msgid "" "One of the refunds failed to be processed. You should retry to refund in a " "different way. The error message was: {}" msgstr "其中一筆退款未能處理。你應該以其他方式重試退款。錯誤消息是:{}" -#: pretix/control/views/orders.py:1352 +#: pretix/control/views/orders.py:1353 #, python-brace-format msgid "A refund of {} has been processed." msgstr "{} 的退款已處理。" -#: pretix/control/views/orders.py:1356 +#: pretix/control/views/orders.py:1357 #, python-brace-format msgid "" "A refund of {} has been saved, but not yet fully executed. You can mark it " "as complete below." msgstr "{} 的退款已保存,但尚未完全執行。你可以在下面將其標記為完成。" -#: pretix/control/views/orders.py:1385 +#: pretix/control/views/orders.py:1386 msgid "" "A new gift card was created. You can now send the user their gift card code." msgstr "建立了一張新的禮品卡。你現在可以向使用者發送他們的禮品卡代碼。" -#: pretix/control/views/orders.py:1393 +#: pretix/control/views/orders.py:1394 msgid "Your gift card code" msgstr "你的禮品卡代碼" -#: pretix/control/views/orders.py:1395 +#: pretix/control/views/orders.py:1396 #, python-brace-format msgid "" "Hello,\n" @@ -26997,205 +27113,205 @@ msgstr "" "\n" "你的{event}團隊" -#: pretix/control/views/orders.py:1406 +#: pretix/control/views/orders.py:1407 msgid "The refunds you selected do not match the selected total refund amount." msgstr "你選擇的退款與所選的總退款金額不符合。" -#: pretix/control/views/orders.py:1536 +#: pretix/control/views/orders.py:1537 msgid "" "The order has been marked as paid, but we were unable to send a confirmation " "mail." msgstr "訂單已標記為已付款,但我們無法發送確認郵件。" -#: pretix/control/views/orders.py:1539 +#: pretix/control/views/orders.py:1540 msgid "The payment has been created successfully." msgstr "付款已成功建立。" -#: pretix/control/views/orders.py:1553 +#: pretix/control/views/orders.py:1554 msgid "" "The order has been canceled. You can now select how you want to transfer the " "money back to the user." msgstr "訂單已被取消。現在,你可以選擇如何將資金退回給使用者。" -#: pretix/control/views/orders.py:1624 pretix/control/views/orders.py:1628 +#: pretix/control/views/orders.py:1625 pretix/control/views/orders.py:1629 msgid "No VAT ID specified." msgstr "未指定增值稅號。" -#: pretix/control/views/orders.py:1632 +#: pretix/control/views/orders.py:1633 msgid "No country specified." msgstr "未指定國家/地區。" -#: pretix/control/views/orders.py:1636 +#: pretix/control/views/orders.py:1637 msgid "VAT ID could not be checked since this country is not supported." msgstr "無法檢查增值稅號,因為不支援此國家/地區。" -#: pretix/control/views/orders.py:1647 +#: pretix/control/views/orders.py:1648 msgid "" "The VAT ID could not be checked, as the VAT checking service of the country " "is currently not available." msgstr "無法檢查增值稅號,因為該國家/地區的增值稅檢查服務目前不可用。" -#: pretix/control/views/orders.py:1650 +#: pretix/control/views/orders.py:1651 msgid "This VAT ID is valid." msgstr "此增值稅號有效。" -#: pretix/control/views/orders.py:1664 pretix/control/views/orders.py:1698 -#: pretix/control/views/orders.py:1730 +#: pretix/control/views/orders.py:1665 pretix/control/views/orders.py:1699 +#: pretix/control/views/orders.py:1731 msgid "Unknown invoice." msgstr "未知發票." -#: pretix/control/views/orders.py:1667 +#: pretix/control/views/orders.py:1668 msgid "Invoices may not be changed after they are created." msgstr "發票在建立後不得更改。" -#: pretix/control/views/orders.py:1669 +#: pretix/control/views/orders.py:1670 #, fuzzy #| msgid "Invoices may not be changed after they are created." msgid "Invoices may not be changed after they are transmitted." msgstr "發票在建立後不得更改。" -#: pretix/control/views/orders.py:1671 pretix/control/views/orders.py:1733 +#: pretix/control/views/orders.py:1672 pretix/control/views/orders.py:1734 msgid "The invoice has already been canceled." msgstr "發票已被取消。" -#: pretix/control/views/orders.py:1673 +#: pretix/control/views/orders.py:1674 msgid "The invoice file has already been exported." msgstr "發票文件已匯出。" -#: pretix/control/views/orders.py:1675 +#: pretix/control/views/orders.py:1676 msgid "The invoice file is too old to be regenerated." msgstr "發票檔太舊,無法重新產生。" -#: pretix/control/views/orders.py:1677 pretix/control/views/orders.py:1735 +#: pretix/control/views/orders.py:1678 pretix/control/views/orders.py:1736 msgid "The invoice has been cleaned of personal data." msgstr "發票中已清除個人數據。" -#: pretix/control/views/orders.py:1702 +#: pretix/control/views/orders.py:1703 msgid "" "The invoice is currently being transmitted. You can start a new attempt " "after the current one has been completed." msgstr "" -#: pretix/control/views/orders.py:1709 +#: pretix/control/views/orders.py:1710 #, fuzzy #| msgid "The invoice has been cleaned of personal data." msgid "The invoice has been scheduled for retransmission." msgstr "發票中已清除個人數據。" -#: pretix/control/views/orders.py:1766 +#: pretix/control/views/orders.py:1767 msgid "The email has been queued to be sent." msgstr "電子郵件已排隊等待發送。" -#: pretix/control/views/orders.py:1790 pretix/presale/views/order.py:1306 +#: pretix/control/views/orders.py:1791 pretix/presale/views/order.py:1306 msgid "This invoice has not been found" msgstr "未找到此發票" -#: pretix/control/views/orders.py:1797 pretix/presale/views/order.py:1313 +#: pretix/control/views/orders.py:1798 pretix/presale/views/order.py:1313 msgid "The invoice file is no longer stored on the server." msgstr "發票檔不再儲存在伺服器上。" -#: pretix/control/views/orders.py:1802 pretix/presale/views/order.py:1318 +#: pretix/control/views/orders.py:1803 pretix/presale/views/order.py:1318 msgid "" "The invoice file has not yet been generated, we will generate it for you " "now. Please try again in a few seconds." msgstr "發票檔尚未產生,我們現在將為你生成。請在幾秒鐘後重試。" -#: pretix/control/views/orders.py:1830 +#: pretix/control/views/orders.py:1831 msgid "The payment term has been changed." msgstr "付款期限已更改。" -#: pretix/control/views/orders.py:1835 pretix/control/views/orders.py:1892 +#: pretix/control/views/orders.py:1836 pretix/control/views/orders.py:1893 msgid "" "We were not able to process the request completely as the server was too " "busy." msgstr "由於伺服器太忙,我們無法完全處理請求。" -#: pretix/control/views/orders.py:1843 +#: pretix/control/views/orders.py:1844 msgid "This action is only allowed for pending orders." msgstr "此操作僅允許用於待處理的訂單。" -#: pretix/control/views/orders.py:1898 +#: pretix/control/views/orders.py:1899 msgid "This action is only allowed for canceled orders." msgstr "此操作僅適用於已取消的訂單。" -#: pretix/control/views/orders.py:2155 pretix/presale/views/order.py:1592 +#: pretix/control/views/orders.py:2156 pretix/presale/views/order.py:1592 msgid "An error occurred. Please see the details below." msgstr "發生錯誤。請參閱下面的詳細資訊。" -#: pretix/control/views/orders.py:2163 +#: pretix/control/views/orders.py:2164 msgid "The order has been changed and the user has been notified." msgstr "訂單已更改,使用者已收到通知。" -#: pretix/control/views/orders.py:2165 pretix/control/views/orders.py:2301 -#: pretix/control/views/orders.py:2338 pretix/presale/views/order.py:1627 +#: pretix/control/views/orders.py:2166 pretix/control/views/orders.py:2302 +#: pretix/control/views/orders.py:2339 pretix/presale/views/order.py:1627 msgid "The order has been changed." msgstr "訂單順序已更改。" -#: pretix/control/views/orders.py:2192 pretix/presale/checkoutflow.py:945 +#: pretix/control/views/orders.py:2193 pretix/presale/checkoutflow.py:945 #: pretix/presale/views/order.py:793 pretix/presale/views/order.py:911 msgid "" "We had difficulties processing your input. Please review the errors below." msgstr "我們在處理你的輸入時遇到了困難。請查看以下錯誤。" -#: pretix/control/views/orders.py:2303 +#: pretix/control/views/orders.py:2304 msgid "Nothing about the order had to be changed." msgstr "關於訂單的任何內容都不必更改。" -#: pretix/control/views/orders.py:2384 pretix/plugins/sendmail/views.py:176 +#: pretix/control/views/orders.py:2385 pretix/plugins/sendmail/views.py:176 msgid "We could not send the email. See below for details." msgstr "我們無法發送電子郵件。詳情見下文。" -#: pretix/control/views/orders.py:2400 pretix/control/views/orders.py:2470 +#: pretix/control/views/orders.py:2401 pretix/control/views/orders.py:2471 #: pretix/plugins/sendmail/views.py:204 pretix/plugins/sendmail/views.py:671 #, python-brace-format msgid "Subject: {subject}" msgstr "主題{subject}" -#: pretix/control/views/orders.py:2419 pretix/control/views/orders.py:2490 +#: pretix/control/views/orders.py:2420 pretix/control/views/orders.py:2491 #, python-brace-format msgid "Your message has been queued and will be sent to {}." msgstr "你的消息已排序,將發送到 {}。" -#: pretix/control/views/orders.py:2423 pretix/control/views/orders.py:2493 +#: pretix/control/views/orders.py:2424 pretix/control/views/orders.py:2494 #, python-brace-format msgid "Failed to send mail to the following user: {}" msgstr "無法向以下使用者發送郵件:{}" -#: pretix/control/views/orders.py:2546 pretix/presale/views/order.py:1085 +#: pretix/control/views/orders.py:2547 pretix/presale/views/order.py:1085 msgid "" "This link is no longer valid. Please go back, refresh the page, and try " "again." msgstr "此連結不再有效。請返回,更新頁面,然後重試。" -#: pretix/control/views/orders.py:2627 +#: pretix/control/views/orders.py:2628 msgid "There is no order with the given order code." msgstr "給定的訂單代碼沒有訂單。" -#: pretix/control/views/orders.py:2733 pretix/control/views/organizer.py:2074 +#: pretix/control/views/orders.py:2734 pretix/control/views/organizer.py:2074 msgid "The selected exporter was not found." msgstr "找不到選定的導出器。" -#: pretix/control/views/orders.py:2743 pretix/control/views/organizer.py:2084 +#: pretix/control/views/orders.py:2744 pretix/control/views/organizer.py:2084 msgid "There was a problem processing your input. See below for error details." msgstr "處理你的輸入時出現問題。有關錯誤詳細資訊,請參閱下文。" -#: pretix/control/views/orders.py:2778 pretix/control/views/organizer.py:2127 +#: pretix/control/views/orders.py:2779 pretix/control/views/organizer.py:2127 #, python-brace-format msgid "" "Your export schedule has been saved. The next export will start around " "{datetime}." msgstr "你的匯出計劃已儲存。下一次匯出將在{datetime}左右開始。" -#: pretix/control/views/orders.py:2783 pretix/control/views/organizer.py:2132 +#: pretix/control/views/orders.py:2784 pretix/control/views/organizer.py:2132 msgid "Your export schedule has been saved, but no next export is planned." msgstr "你的匯出計劃已保存,但沒有計劃下一次匯出。" -#: pretix/control/views/orders.py:2822 pretix/control/views/organizer.py:2172 +#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2172 #, python-brace-format msgid "Export: {title}" msgstr "輸出{title}" -#: pretix/control/views/orders.py:2823 pretix/control/views/organizer.py:2174 +#: pretix/control/views/orders.py:2824 pretix/control/views/organizer.py:2174 #, python-brace-format msgid "" "Hello,\n" @@ -27206,7 +27322,7 @@ msgstr "" "\n" "附加到此電子郵件後,你可以找到 {name} 的新計劃報告。" -#: pretix/control/views/orders.py:2850 pretix/control/views/organizer.py:2207 +#: pretix/control/views/orders.py:2851 pretix/control/views/organizer.py:2207 #, fuzzy #| msgid "You do not have sufficient permission to perform this export." msgid "" @@ -27214,7 +27330,7 @@ msgid "" "therefore you cannot schedule it." msgstr "你沒有足夠的權限來執行此匯出。" -#: pretix/control/views/orders.py:2903 pretix/control/views/organizer.py:2259 +#: pretix/control/views/orders.py:2904 pretix/control/views/organizer.py:2259 msgid "" "Your export is queued to start soon. The results will be send via email. " "Depending on system load and type and size of export, this may take a few " @@ -27223,18 +27339,18 @@ msgstr "" "你的匯出正在排隊等待即將開始。結果將通過電子郵件發送。根據系統負載以及導出的" "類型和大小,這可能需要幾分鐘時間。" -#: pretix/control/views/orders.py:2982 +#: pretix/control/views/orders.py:2991 pretix/control/views/orders.py:3072 msgid "All orders have been canceled." msgstr "所有訂單均已取消。" -#: pretix/control/views/orders.py:2984 +#: pretix/control/views/orders.py:2993 pretix/control/views/orders.py:3074 #, python-brace-format msgid "" "The orders have been canceled. An error occurred with {count} orders, please " "check all uncanceled orders." msgstr "訂單已被取消。{count} 訂單出錯,請檢查所有未取消的訂單。" -#: pretix/control/views/orders.py:3005 +#: pretix/control/views/orders.py:3021 pretix/control/views/orders.py:3095 msgid "Your input was not valid." msgstr "你的輸入無效。" @@ -28366,7 +28482,7 @@ msgstr "徽章佈置:{}" #: pretix/plugins/banktransfer/apps.py:43 #: pretix/plugins/banktransfer/apps.py:46 #: pretix/plugins/banktransfer/apps.py:47 -#: pretix/plugins/banktransfer/payment.py:60 +#: pretix/plugins/banktransfer/payment.py:61 #: pretix/plugins/banktransfer/signals.py:48 #: pretix/plugins/banktransfer/signals.py:83 msgid "Bank transfer" @@ -28399,7 +28515,7 @@ msgid "" "Install the python package 'chardet' for better CSV import capabilities." msgstr "安裝 python 包 'chardet' 以獲得更好的 CSV 導入功能。" -#: pretix/plugins/banktransfer/payment.py:68 +#: pretix/plugins/banktransfer/payment.py:69 msgid "" "I have understood that people will pay the ticket price directly to my bank " "account and pretix cannot automatically know what payments arrived. " @@ -28411,58 +28527,58 @@ msgstr "" "項。 因此,我將手動將付款標記為完成,或定期匯數位銀行帳單,以便為 Pretix 提供" "所需信息。" -#: pretix/plugins/banktransfer/payment.py:75 +#: pretix/plugins/banktransfer/payment.py:76 msgid "Bank account type" msgstr "銀行賬戶類型" -#: pretix/plugins/banktransfer/payment.py:78 +#: pretix/plugins/banktransfer/payment.py:79 msgid "SEPA bank account" msgstr "SEPA銀行帳戶" -#: pretix/plugins/banktransfer/payment.py:79 +#: pretix/plugins/banktransfer/payment.py:80 msgid "Other bank account" msgstr "其他銀行帳戶" -#: pretix/plugins/banktransfer/payment.py:84 +#: pretix/plugins/banktransfer/payment.py:85 msgid "Name of account holder" msgstr "帳戶持有人姓名" -#: pretix/plugins/banktransfer/payment.py:86 +#: pretix/plugins/banktransfer/payment.py:87 msgid "" "Please note: special characters other than letters, numbers, and some " "punctuation can cause problems with some banks." msgstr "" "請注意:字母、數位和某些標點符號以外的特殊字元可能會導致某些銀行出現問題。" -#: pretix/plugins/banktransfer/payment.py:96 -#: pretix/plugins/banktransfer/payment.py:300 -#: pretix/plugins/banktransfer/payment.py:490 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 +#: pretix/plugins/banktransfer/payment.py:97 +#: pretix/plugins/banktransfer/payment.py:301 +#: pretix/plugins/banktransfer/payment.py:491 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:50 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:6 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:24 msgid "IBAN" msgstr "IBAN" -#: pretix/plugins/banktransfer/payment.py:106 -#: pretix/plugins/banktransfer/payment.py:301 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:16 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:15 +#: pretix/plugins/banktransfer/payment.py:107 +#: pretix/plugins/banktransfer/payment.py:302 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/import_assign.html:66 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:25 msgid "BIC" msgstr "BIC" -#: pretix/plugins/banktransfer/payment.py:116 +#: pretix/plugins/banktransfer/payment.py:117 msgid "Name of bank" msgstr "銀行名稱" -#: pretix/plugins/banktransfer/payment.py:126 +#: pretix/plugins/banktransfer/payment.py:127 msgid "Bank account details" msgstr "銀行帳戶詳細資訊" -#: pretix/plugins/banktransfer/payment.py:129 +#: pretix/plugins/banktransfer/payment.py:130 msgid "" "Include everything else that your customers might need to send you a bank " "transfer payment. If you have lots of international customers, they might " @@ -28471,7 +28587,7 @@ msgstr "" "包括客戶可能需要向你發送銀行轉帳付款的所有其他內容。如果你有很多國際客戶,他" "們可能需要你的完整地址和銀行的完整位址。" -#: pretix/plugins/banktransfer/payment.py:135 +#: pretix/plugins/banktransfer/payment.py:136 msgid "" "For SEPA accounts, you can leave this empty. Otherwise, please add " "everything that your customers need to transfer the money, e.g. account " @@ -28480,37 +28596,37 @@ msgstr "" "對於 SEPA 帳戶,你可以將其留空。否則,請添加客戶轉帳所需的所有內容,例如帳" "號、路由號碼、位址等。" -#: pretix/plugins/banktransfer/payment.py:154 +#: pretix/plugins/banktransfer/payment.py:155 msgid "Do not include hyphens in the payment reference." msgstr "不要在付款參考中包含連字元。" -#: pretix/plugins/banktransfer/payment.py:155 +#: pretix/plugins/banktransfer/payment.py:156 msgid "This is required in some countries." msgstr "在某些國家/地區,這是必需的。" -#: pretix/plugins/banktransfer/payment.py:159 +#: pretix/plugins/banktransfer/payment.py:160 msgid "Include invoice number in the payment reference." msgstr "在付款參考中包括發票編號。" -#: pretix/plugins/banktransfer/payment.py:163 +#: pretix/plugins/banktransfer/payment.py:164 msgid "Prefix for the payment reference" msgstr "付款參考的前綴" -#: pretix/plugins/banktransfer/payment.py:167 +#: pretix/plugins/banktransfer/payment.py:168 msgid "Additional text to show on pending orders" msgstr "待處理的訂單顯示的附加文本" -#: pretix/plugins/banktransfer/payment.py:168 +#: pretix/plugins/banktransfer/payment.py:169 msgid "" "This text will be shown on the order confirmation page for pending orders in " "addition to the standard text." msgstr "除了標準文本外,此文本還將顯示在待處理的訂單的訂單確認頁面上。" -#: pretix/plugins/banktransfer/payment.py:177 +#: pretix/plugins/banktransfer/payment.py:178 msgid "IBAN blocklist for refunds" msgstr "IBAN 退款阻止清單" -#: pretix/plugins/banktransfer/payment.py:180 +#: pretix/plugins/banktransfer/payment.py:181 #, fuzzy #| msgid "" #| "Put one IBAN or IBAN prefix per line. The system will not attempt to send " @@ -28531,11 +28647,11 @@ msgstr "" "收到第三方支付供應商的大量“轉發付款”,則很有用。如果你不想從特定國家/地區向 " "IBAN 發送退款,你還可以列出國家/地區代碼,例如“GB”。" -#: pretix/plugins/banktransfer/payment.py:207 +#: pretix/plugins/banktransfer/payment.py:208 msgid "Restrict to business customers" msgstr "僅限於商業客戶" -#: pretix/plugins/banktransfer/payment.py:208 +#: pretix/plugins/banktransfer/payment.py:209 msgid "" "Only allow choosing this payment provider for customers who enter an invoice " "address and select \"Business or institutional customer\"." @@ -28543,23 +28659,23 @@ msgstr "" "只能允許輸入發票位址,並且選擇「企業或機構客戶」的客戶,才能選擇此付款提供" "者。" -#: pretix/plugins/banktransfer/payment.py:238 +#: pretix/plugins/banktransfer/payment.py:239 msgid "Please fill out your bank account details." msgstr "請填寫你的銀行帳戶詳細資訊。" -#: pretix/plugins/banktransfer/payment.py:242 +#: pretix/plugins/banktransfer/payment.py:243 msgid "Please enter your bank account details." msgstr "請輸入你的銀行帳戶詳細資訊。" -#: pretix/plugins/banktransfer/payment.py:291 +#: pretix/plugins/banktransfer/payment.py:292 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:15 msgid "Please transfer the full amount to the following bank account:" msgstr "請將全額金額轉入以下銀行帳戶:" -#: pretix/plugins/banktransfer/payment.py:299 -#: pretix/plugins/banktransfer/payment.py:487 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:14 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:13 +#: pretix/plugins/banktransfer/payment.py:300 +#: pretix/plugins/banktransfer/payment.py:488 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:15 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:14 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:5 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:23 #: pretix/plugins/banktransfer/views.py:829 @@ -28569,9 +28685,9 @@ msgstr "請將全額金額轉入以下銀行帳戶:" msgid "Account holder" msgstr "帳戶持有人" -#: pretix/plugins/banktransfer/payment.py:302 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:17 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:16 +#: pretix/plugins/banktransfer/payment.py:303 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:18 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:17 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:26 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:23 #: pretix/plugins/stripe/templates/pretixplugins/stripe/control.html:31 @@ -28581,25 +28697,25 @@ msgstr "帳戶持有人" msgid "Bank" msgstr "銀行" -#: pretix/plugins/banktransfer/payment.py:381 +#: pretix/plugins/banktransfer/payment.py:382 msgid "Invalid IBAN/BIC" msgstr "無效 IBAN/BIC" -#: pretix/plugins/banktransfer/payment.py:457 +#: pretix/plugins/banktransfer/payment.py:458 #, python-brace-format msgid "Bank account {iban}" msgstr "銀行帳戶 {iban}" -#: pretix/plugins/banktransfer/payment.py:473 +#: pretix/plugins/banktransfer/payment.py:474 msgid "Can only create a bank transfer refund from an existing payment." msgstr "只能從現有付款中建立銀行轉帳退款。" -#: pretix/plugins/banktransfer/payment.py:493 +#: pretix/plugins/banktransfer/payment.py:494 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/new_refund_control_form.html:7 msgid "BIC (optional)" msgstr "BIC( 可選擇的)" -#: pretix/plugins/banktransfer/payment.py:532 +#: pretix/plugins/banktransfer/payment.py:533 msgid "Your input was invalid, please see below for details." msgstr "你的輸入無效,詳情請參閱下文。" @@ -28636,15 +28752,15 @@ msgstr "訂單已被取消。" msgid "Currencies do not match." msgstr "貨幣不符合。" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:6 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:5 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:7 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:6 msgid "" "After completing your purchase, we will ask you to transfer the money to the " "following bank account, using a personal reference code:" msgstr "完成購買後,我們將要求你使用個人參考代碼,將款項轉入以下銀行帳戶:" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:11 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:10 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:12 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:11 #, fuzzy #| msgid "" #| "We will assign you a personal reference code to use after you completed " @@ -28654,21 +28770,21 @@ msgid "" "code after you completed the order." msgstr "我們將為你分配一項個人參考代碼,以便在你完成訂單後使用。" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:26 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:25 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:27 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:26 #: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:39 msgid "Reference code (important):" msgstr "參考代碼(重要):" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:31 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:30 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:32 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:31 msgid "" "We will assign you a personal reference code to use after you completed the " "order." msgstr "我們將為你分配一項個人參考代碼,以便在你完成訂單後使用。" -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:36 -#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:35 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_confirm.html:37 +#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/checkout_payment_form.html:36 msgid "" "After completing your purchase, we will ask you to transfer the money to our " "bank account, using a personal reference code." diff --git a/src/pretix/locale/zh_Hant/LC_MESSAGES/djangojs.po b/src/pretix/locale/zh_Hant/LC_MESSAGES/djangojs.po index e95f6c710f..7548ce2873 100644 --- a/src/pretix/locale/zh_Hant/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/zh_Hant/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-21 07:27+0000\n" +"POT-Creation-Date: 2025-10-29 07:55+0000\n" "PO-Revision-Date: 2025-05-06 16:20+0000\n" "Last-Translator: KC Tseng \n" "Language-Team: Chinese (Traditional Han script) Date: Wed, 29 Oct 2025 10:01:05 +0100 Subject: [PATCH 22/33] Markdown link parser: Fix fediverse URLs and URLs with user or path (#5563) --- src/pretix/base/templatetags/rich_text.py | 29 ++++++++++++++++++++++- src/tests/base/test_rich_text.py | 24 +++++++++++++++++++ 2 files changed, 52 insertions(+), 1 deletion(-) diff --git a/src/pretix/base/templatetags/rich_text.py b/src/pretix/base/templatetags/rich_text.py index bee135a93b..f38cdeab8c 100644 --- a/src/pretix/base/templatetags/rich_text.py +++ b/src/pretix/base/templatetags/rich_text.py @@ -54,6 +54,19 @@ from tlds import tld_set register = template.Library() + +def build_fediverse_re(tlds): + return re.compile( + r"""\(* # Match any opening parentheses. + @[^@]+@ + ([\w-]+\.)+(?:{0})(?:\:[0-9]+)?(?!\.\w)\b # xx.yy.tld(:##)? + """.format( + "|".join(sorted(tlds)) + ), + re.IGNORECASE | re.VERBOSE | re.UNICODE, + ) + + ALLOWED_TAGS_SNIPPET = { 'a', 'abbr', @@ -112,6 +125,8 @@ URL_RE = SimpleLazyObject(lambda: build_url_re(tlds=sorted(tld_set, key=len, rev EMAIL_RE = SimpleLazyObject(lambda: build_email_re(tlds=sorted(tld_set, key=len, reverse=True))) +FEDIVERSE_RE = SimpleLazyObject(lambda: build_fediverse_re(tlds=sorted(tld_set, key=len, reverse=True))) + DOT_ESCAPE = "|escaped-dot-sGnY9LMK|" @@ -144,9 +159,11 @@ def truelink_callback(attrs, new=False): https://maps.google.com """ - text = re.sub(r'[^a-zA-Z0-9.\-/_ ]', '', attrs.get('_text')) # clean up link text + text = re.sub(r'[^a-zA-Z0-9.\-/_@: ]', '', attrs.get('_text')) # clean up link text url = attrs.get((None, 'href'), '/') href_url = urllib.parse.urlparse(url) + + # Verify server name of URL names if (None, 'href') in attrs and URL_RE.match(text) and href_url.scheme not in ('tel', 'mailto'): # link text looks like a url if text.startswith('//'): @@ -154,10 +171,20 @@ def truelink_callback(attrs, new=False): elif not text.startswith('http'): text = 'https://' + text + text_url = urllib.parse.urlparse(text) + if text_url.netloc.split("@")[-1] != href_url.netloc.split("@")[-1] or not href_url.path.startswith(text_url.path): + # link text contains an URL that has a different base than the actual URL + attrs['_text'] = attrs[None, 'href'] + + # Verify server name of mastodon display names (@name@server.tld) + if (None, 'href') in attrs and FEDIVERSE_RE.match(text): + parts = text.split('@') + text = f'https://{parts[2]}/@{parts[1]}' text_url = urllib.parse.urlparse(text) if text_url.netloc != href_url.netloc or not href_url.path.startswith(href_url.path): # link text contains an URL that has a different base than the actual URL attrs['_text'] = attrs[None, 'href'] + return attrs diff --git a/src/tests/base/test_rich_text.py b/src/tests/base/test_rich_text.py index c17fb46546..c893b7d3bb 100644 --- a/src/tests/base/test_rich_text.py +++ b/src/tests/base/test_rich_text.py @@ -73,10 +73,34 @@ from pretix.base.templatetags.rich_text import ( 'goodsite.com', 'https://goodsite.com.evilsite.com', ), + ( + 'evilsite.com/bad/path/', + 'https://evilsite.com/deep/path', + ), + ( + 'evilsite.com/deep', + 'evilsite.com/deep', + ), ( 'evilsite.com', 'evilsite.com', ), + ( + 'evilsite.com', + 'evilsite.com', + ), + ( + 'https://foo:bar@goodsite.com', + 'https://foo:bar@evilsite.com/deep/path', + ), + ( + '@pretix@pretix.social', + '@pretix@pretix.social', + ), + ( + '@pretix@pretix.social', + 'https://evilsite.social/@pretix', + ), ("broken", "broken"), ], ) From 04fae9ea14a5fbaf5d556ed50d2093c71a386bd4 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 29 Oct 2025 10:17:34 +0100 Subject: [PATCH 23/33] Fix code style issue --- src/pretix/control/views/orders.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/pretix/control/views/orders.py b/src/pretix/control/views/orders.py index c403cec839..aec42dea81 100644 --- a/src/pretix/control/views/orders.py +++ b/src/pretix/control/views/orders.py @@ -2995,16 +2995,16 @@ class EventCancel(EventPermissionRequiredMixin, AsyncAction, FormView): def get_success_url(self, value): if settings.HAS_CELERY: - return reverse('control:event.cancel.confirm', kwargs={ - 'organizer': self.request.organizer.slug, - 'event': self.request.event.slug, - 'task': value["id"], - }) + return reverse('control:event.cancel.confirm', kwargs={ + 'organizer': self.request.organizer.slug, + 'event': self.request.event.slug, + 'task': value["id"], + }) else: - return reverse('control:event.cancel', kwargs={ - 'organizer': self.request.organizer.slug, - 'event': self.request.event.slug, - }) + return reverse('control:event.cancel', kwargs={ + 'organizer': self.request.organizer.slug, + 'event': self.request.event.slug, + }) def get_error_url(self): return reverse('control:event.cancel', kwargs={ From 7ce2d7ccb424f17d0926da68172c11a0d8c7e64f Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 29 Oct 2025 10:50:50 +0100 Subject: [PATCH 24/33] Docs: Fix a formatting issue --- doc/api/resources/orders.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/resources/orders.rst b/doc/api/resources/orders.rst index 210212569f..2894d16c6e 100644 --- a/doc/api/resources/orders.rst +++ b/doc/api/resources/orders.rst @@ -1030,8 +1030,8 @@ Creating orders * ``internal_reference`` * ``vat_id`` * ``vat_id_validated`` (optional) – If you need support for reverse charge (rarely the case), you need to check - yourself if the passed VAT ID is a valid EU VAT ID. In that case, set this to ``true``. Only valid VAT IDs will - trigger reverse charge taxation. Don't forget to set ``is_business`` as well! + yourself if the passed VAT ID is a valid EU VAT ID. In that case, set this to ``true``. Only valid VAT IDs will + trigger reverse charge taxation. Don't forget to set ``is_business`` as well! * ``transmission_type`` (optional, defaults to ``email``) * ``transmission_info`` (optional, see also :ref:`rest-transmission-types`) From 4ef01df9ea6ad899337d1365abf24c6e97ed404b Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 29 Oct 2025 10:50:57 +0100 Subject: [PATCH 25/33] Translations: Update wordlist --- src/pretix/locale/de/wordlist.txt | 2 ++ src/pretix/locale/de_Informal/wordlist.txt | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/pretix/locale/de/wordlist.txt b/src/pretix/locale/de/wordlist.txt index dda698f1c2..40bbac56b5 100644 --- a/src/pretix/locale/de/wordlist.txt +++ b/src/pretix/locale/de/wordlist.txt @@ -1,5 +1,6 @@ ABGEKÜNDIGT ABN +Absageformular Absenderadresse Absenderinformation Absendername @@ -139,6 +140,7 @@ Enterprise-Plugins eps EPS Erstattungsbetrag +Erstattungsbetrags Erstattungsliste Erstattungsmethode Erstattungsoptionen diff --git a/src/pretix/locale/de_Informal/wordlist.txt b/src/pretix/locale/de_Informal/wordlist.txt index dda698f1c2..40bbac56b5 100644 --- a/src/pretix/locale/de_Informal/wordlist.txt +++ b/src/pretix/locale/de_Informal/wordlist.txt @@ -1,5 +1,6 @@ ABGEKÜNDIGT ABN +Absageformular Absenderadresse Absenderinformation Absendername @@ -139,6 +140,7 @@ Enterprise-Plugins eps EPS Erstattungsbetrag +Erstattungsbetrags Erstattungsliste Erstattungsmethode Erstattungsoptionen From 9655f3d15d6977a8a4a3040c1573de38be8f8a3b Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 29 Oct 2025 10:22:45 +0100 Subject: [PATCH 26/33] Translations: Update German Currently translated at 100.0% (6114 of 6114 strings) Translation: pretix/pretix Translate-URL: https://translate.pretix.eu/projects/pretix/pretix/de/ powered by weblate --- src/pretix/locale/de/LC_MESSAGES/django.po | 66 ++++++++++------------ 1 file changed, 31 insertions(+), 35 deletions(-) diff --git a/src/pretix/locale/de/LC_MESSAGES/django.po b/src/pretix/locale/de/LC_MESSAGES/django.po index 423111a9dd..d3676ad756 100644 --- a/src/pretix/locale/de/LC_MESSAGES/django.po +++ b/src/pretix/locale/de/LC_MESSAGES/django.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: 1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-29 07:54+0000\n" -"PO-Revision-Date: 2025-10-21 08:03+0000\n" +"PO-Revision-Date: 2025-10-29 09:24+0000\n" "Last-Translator: Raphael Michel \n" "Language-Team: German \n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.13.3\n" +"X-Generator: Weblate 5.14\n" "X-Poedit-Bookmarks: -1,-1,904,-1,-1,-1,-1,-1,-1,-1\n" #: pretix/_base_settings.py:87 @@ -8347,10 +8347,8 @@ msgid "Event canceled" msgstr "Veranstaltung abgesagt" #: pretix/base/services/cancelevent.py:392 -#, fuzzy -#| msgid "Create configuration" msgid "Bulk-refund confirmation" -msgstr "App-Konfiguration erstellen" +msgstr "Bestätigung einer Massenerstattung" #: pretix/base/services/cart.py:102 pretix/base/services/modelimport.py:247 #: pretix/base/services/orders.py:155 @@ -13157,18 +13155,20 @@ msgstr "" msgid "" "You have requested us to cancel an event which includes a larger bulk-refund:" msgstr "" +"Sie haben angefordert, dass eine Veranstaltung abgesagt wird, wodurch eine " +"größere Erstattung vorgenommen wird:" #: pretix/base/templates/pretixbase/email/cancel_confirm.txt:6 -#, fuzzy -#| msgid "Initiate a refund of %(amount)s" msgid "Estimated refund amount" -msgstr "%(amount)s zurückerstatten" +msgstr "Voraussichtlicher Erstattungsbetrag" #: pretix/base/templates/pretixbase/email/cancel_confirm.txt:8 msgid "" "Please confirm that you want to proceed by coping the following confirmation " "code into the cancellation form:" msgstr "" +"Bitte bestätigen Sie, dass Sie fortfahren wollen, indem Sie den folgenden " +"Bestätigungscode in das Absageformular kopieren:" #: pretix/base/templates/pretixbase/email/email_footer.html:3 #, python-format @@ -16134,6 +16134,8 @@ msgstr "" #: pretix/control/forms/orders.py:1037 msgid "I understand that this is not reversible and want to continue" msgstr "" +"Ich verstehe, dass dies nicht rückgängig gemacht werden kann und möchte " +"fortfahren" #: pretix/control/forms/orders.py:1041 #: pretix/control/templates/pretixcontrol/shredder/download.html:53 @@ -16144,12 +16146,12 @@ msgstr "Bestätigungs-Code" msgid "" "We have just emailed you a confirmation code to enter to confirm this action" msgstr "" +"Wir haben Ihnen soeben einen Bestätigungscode per E-Mail zugeschickt, mit " +"dem Sie diese Aktion bestätigen können" #: pretix/control/forms/orders.py:1055 -#, fuzzy -#| msgid "The confirm code you entered was incorrect." msgid "The confirmation code is incorrect." -msgstr "Der eingegebene Bestätigungscode war nicht korrekt." +msgstr "Der Bestätigungscode ist nicht korrekt." #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." @@ -24133,83 +24135,77 @@ msgstr "" "auswählen, sonst erhält jeder auf der Warteliste mehrere E-Mails." #: pretix/control/templates/pretixcontrol/orders/cancel.html:84 -#, fuzzy -#| msgid "Refund amount" msgid "Preview refund amount" -msgstr "Erstattungsbetrag" +msgstr "Vorschau des Erstattungsbetrags" #: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Alle Bestellungen stornieren" #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 -#, fuzzy -#| msgid "If you contact us, please send us the following code:" msgid "If you proceed, the system will do the following:" -msgstr "Wenn Sie uns kontaktieren, teilen Sie uns bitte folgenden Code mit:" +msgstr "Wenn Sie fortfahren, wird das System folgendes tun:" #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 #, python-format msgid "%(count)s order will be canceled fully" msgid_plural "%(count)s orders will be canceled fully" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%(count)s Bestellung wird komplett storniert" +msgstr[1] "%(count)s Bestellungen werden komplett storniert" #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 #, python-format msgid "%(count)s order will be canceled partially" msgid_plural "%(count)s orders will be canceled partially" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%(count)s Bestellung wird partiell storniert" +msgstr[1] "%(count)s Bestellungen werden partiell storniert" #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 #, python-format msgid "%(amount)s are eligible for refunds." -msgstr "" +msgstr "%(amount)s werden zur Rückerstattung eingeplant." #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 msgid "" "The system will attempt to refund the money automatically if supported by " "the payment method." msgstr "" +"Das System wird versuchen, die Rückerstattungen automatisch durchzuführen, " +"sofern die Zahlungsmethode es unterstützt." #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 msgid "The system will create manual refunds that you need to execute." msgstr "" +"Das System wird manuelle Rückerstattungen anlegen, die Sie ausführen müssen." #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 -#, fuzzy -#| msgid "Text (if order will not expire automatically)" msgid "Refunds will not happen automatically." -msgstr "Text (wenn Bestellung nicht automatisch abläuft)" +msgstr "Rückerstattungen werden nicht automatisch durchgeführt." #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 -#, fuzzy -#| msgid "Require all customers to provide an email address." msgid "Inform all customers via email." -msgstr "Erfordere eine E-Mail-Adresse von allen Käufern." +msgstr "Alle Kunden werden per E-Mail informiert." #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 msgid "Inform all waiting list contacts via email." -msgstr "" +msgstr "Alle Wartelistenkontakte werden per E-Mail informiert." #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 msgid "" "These numbers are estimates and may change if the data in your event " "recently changed." msgstr "" +"Diese Zahlen sind Schätzungen und das Ergebnis kann abweichen, wenn der " +"Datenbestand in der Veranstaltung sich kürzlich geändert hat." #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 -#, fuzzy, python-format -#| msgid "Initiate a refund of %(amount)s" +#, python-format msgid "Proceed and refund approx. %(amount)s" -msgstr "%(amount)s zurückerstatten" +msgstr "Fortfahren und ca. %(amount)s zurückerstatten" #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 -#, fuzzy -#| msgid "Yes, cancel order" msgid "Proceed and cancel orders" -msgstr "Ja, Bestellung stornieren" +msgstr "Fortfahren und Bestellungen stornieren" #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 From 1488960c5405fa246f77c68eedba08f581d32dab Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 29 Oct 2025 10:24:12 +0100 Subject: [PATCH 27/33] Translations: Update German (informal) (de_Informal) Currently translated at 100.0% (6114 of 6114 strings) Translation: pretix/pretix Translate-URL: https://translate.pretix.eu/projects/pretix/pretix/de_Informal/ powered by weblate --- .../locale/de_Informal/LC_MESSAGES/django.po | 66 +++++++++---------- 1 file changed, 31 insertions(+), 35 deletions(-) diff --git a/src/pretix/locale/de_Informal/LC_MESSAGES/django.po b/src/pretix/locale/de_Informal/LC_MESSAGES/django.po index fa22e3f51e..0cfbba8a50 100644 --- a/src/pretix/locale/de_Informal/LC_MESSAGES/django.po +++ b/src/pretix/locale/de_Informal/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: 1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-29 07:54+0000\n" -"PO-Revision-Date: 2025-10-21 08:03+0000\n" +"PO-Revision-Date: 2025-10-29 09:24+0000\n" "Last-Translator: Raphael Michel \n" "Language-Team: German (informal) \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.13.3\n" +"X-Generator: Weblate 5.14\n" #: pretix/_base_settings.py:87 msgid "English" @@ -8339,10 +8339,8 @@ msgid "Event canceled" msgstr "Veranstaltung abgesagt" #: pretix/base/services/cancelevent.py:392 -#, fuzzy -#| msgid "Create configuration" msgid "Bulk-refund confirmation" -msgstr "App-Konfiguration erstellen" +msgstr "Bestätigung einer Massenerstattung" #: pretix/base/services/cart.py:102 pretix/base/services/modelimport.py:247 #: pretix/base/services/orders.py:155 @@ -13135,18 +13133,20 @@ msgstr "" msgid "" "You have requested us to cancel an event which includes a larger bulk-refund:" msgstr "" +"Du hast angefordert, dass eine Veranstaltung abgesagt wird, wodurch eine " +"größere Erstattung vorgenommen wird:" #: pretix/base/templates/pretixbase/email/cancel_confirm.txt:6 -#, fuzzy -#| msgid "Initiate a refund of %(amount)s" msgid "Estimated refund amount" -msgstr "%(amount)s zurückerstatten" +msgstr "Voraussichtlicher Erstattungsbetrag" #: pretix/base/templates/pretixbase/email/cancel_confirm.txt:8 msgid "" "Please confirm that you want to proceed by coping the following confirmation " "code into the cancellation form:" msgstr "" +"Bitte bestätige, dass du fortfahren willst, indem du den folgenden " +"Bestätigungscode in das Absageformular kopierst:" #: pretix/base/templates/pretixbase/email/email_footer.html:3 #, python-format @@ -16110,6 +16110,8 @@ msgstr "" #: pretix/control/forms/orders.py:1037 msgid "I understand that this is not reversible and want to continue" msgstr "" +"Ich verstehe, dass dies nicht rückgängig gemacht werden kann und möchte " +"fortfahren" #: pretix/control/forms/orders.py:1041 #: pretix/control/templates/pretixcontrol/shredder/download.html:53 @@ -16120,12 +16122,12 @@ msgstr "Bestätigungs-Code" msgid "" "We have just emailed you a confirmation code to enter to confirm this action" msgstr "" +"Wir haben dir soeben einen Bestätigungscode per E-Mail zugeschickt, mit dem " +"du diese Aktion bestätigen kannst" #: pretix/control/forms/orders.py:1055 -#, fuzzy -#| msgid "The confirm code you entered was incorrect." msgid "The confirmation code is incorrect." -msgstr "Der eingegebene Bestätigungscode war nicht korrekt." +msgstr "Der Bestätigungscode ist nicht korrekt." #: pretix/control/forms/organizer.py:93 msgid "This slug is already in use. Please choose a different one." @@ -24099,83 +24101,77 @@ msgstr "" "auswählen, sonst erhält jeder auf der Warteliste mehrere E-Mails." #: pretix/control/templates/pretixcontrol/orders/cancel.html:84 -#, fuzzy -#| msgid "Refund amount" msgid "Preview refund amount" -msgstr "Erstattungsbetrag" +msgstr "Vorschau des Erstattungsbetrags" #: pretix/control/templates/pretixcontrol/orders/cancel.html:88 msgid "Cancel all orders" msgstr "Alle Bestellungen stornieren" #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:13 -#, fuzzy -#| msgid "If you contact us, please send us the following code:" msgid "If you proceed, the system will do the following:" -msgstr "Wenn du uns kontaktierst, nenne bitte den folgenden Code:" +msgstr "Wenn du fortfährst, wird das System folgendes tun:" #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:19 #, python-format msgid "%(count)s order will be canceled fully" msgid_plural "%(count)s orders will be canceled fully" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%(count)s Bestellung wird komplett storniert" +msgstr[1] "%(count)s Bestellungen werden komplett storniert" #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:26 #, python-format msgid "%(count)s order will be canceled partially" msgid_plural "%(count)s orders will be canceled partially" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%(count)s Bestellung wird partiell storniert" +msgstr[1] "%(count)s Bestellungen werden partiell storniert" #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:36 #, python-format msgid "%(amount)s are eligible for refunds." -msgstr "" +msgstr "%(amount)s werden zur Rückerstattung eingeplant." #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:40 msgid "" "The system will attempt to refund the money automatically if supported by " "the payment method." msgstr "" +"Das System wird versuchen, die Rückerstattungen automatisch durchzuführen, " +"sofern die Zahlungsmethode es unterstützt." #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:42 msgid "The system will create manual refunds that you need to execute." msgstr "" +"Das System wird manuelle Rückerstattungen anlegen, die du ausführen musst." #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:44 -#, fuzzy -#| msgid "Text (if order will not expire automatically)" msgid "Refunds will not happen automatically." -msgstr "Text (wenn Bestellung nicht automatisch abläuft)" +msgstr "Rückerstattungen werden nicht automatisch durchgeführt." #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:52 -#, fuzzy -#| msgid "Require all customers to provide an email address." msgid "Inform all customers via email." -msgstr "Erfordere eine E-Mail-Adresse von allen Käufern." +msgstr "Alle Kunden werden per E-Mail informiert." #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:57 msgid "Inform all waiting list contacts via email." -msgstr "" +msgstr "Alle Wartelistenkontakte werden per E-Mail informiert." #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:62 msgid "" "These numbers are estimates and may change if the data in your event " "recently changed." msgstr "" +"Diese Zahlen sind Schätzungen und das Ergebnis kann abweichen, wenn der " +"Datenbestand in der Veranstaltung sich kürzlich geändert hat." #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:76 -#, fuzzy, python-format -#| msgid "Initiate a refund of %(amount)s" +#, python-format msgid "Proceed and refund approx. %(amount)s" -msgstr "%(amount)s zurückerstatten" +msgstr "Fortfahren und ca. %(amount)s zurückerstatten" #: pretix/control/templates/pretixcontrol/orders/cancel_confirm.html:80 -#, fuzzy -#| msgid "Yes, cancel order" msgid "Proceed and cancel orders" -msgstr "Ja, Bestellung stornieren" +msgstr "Fortfahren und Bestellungen stornieren" #: pretix/control/templates/pretixcontrol/orders/export.html:5 #: pretix/control/templates/pretixcontrol/orders/export.html:8 From f38c36c0346b5df45e80de854507149d91a14f84 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 29 Oct 2025 10:24:39 +0100 Subject: [PATCH 28/33] Translations: Update German Currently translated at 100.0% (254 of 254 strings) Translation: pretix/pretix (JavaScript parts) Translate-URL: https://translate.pretix.eu/projects/pretix/pretix-js/de/ powered by weblate --- src/pretix/locale/de/LC_MESSAGES/djangojs.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pretix/locale/de/LC_MESSAGES/djangojs.po b/src/pretix/locale/de/LC_MESSAGES/djangojs.po index f8d68a626c..1e6bab31b0 100644 --- a/src/pretix/locale/de/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/de/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-29 07:55+0000\n" -"PO-Revision-Date: 2025-05-30 11:08+0000\n" +"PO-Revision-Date: 2025-10-29 09:24+0000\n" "Last-Translator: Raphael Michel \n" "Language-Team: German \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.11.4\n" +"X-Generator: Weblate 5.14\n" #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:56 #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:62 @@ -567,11 +567,11 @@ msgstr "abwesend" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:289 msgid "Error: Product not found!" -msgstr "" +msgstr "Fehler: Produkt nicht gefunden!" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:296 msgid "Error: Variation not found!" -msgstr "" +msgstr "Fehler: Variante nicht gefunden!" #: pretix/static/pretixcontrol/js/ui/editor.js:171 msgid "Check-in QR" From 1fbf75d89f8f7cbb464c528fe8018c1572246465 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 29 Oct 2025 10:24:33 +0100 Subject: [PATCH 29/33] Translations: Update German (informal) (de_Informal) Currently translated at 100.0% (254 of 254 strings) Translation: pretix/pretix (JavaScript parts) Translate-URL: https://translate.pretix.eu/projects/pretix/pretix-js/de_Informal/ powered by weblate --- src/pretix/locale/de_Informal/LC_MESSAGES/djangojs.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pretix/locale/de_Informal/LC_MESSAGES/djangojs.po b/src/pretix/locale/de_Informal/LC_MESSAGES/djangojs.po index d0a5f031fa..de1bf2297c 100644 --- a/src/pretix/locale/de_Informal/LC_MESSAGES/djangojs.po +++ b/src/pretix/locale/de_Informal/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-29 07:55+0000\n" -"PO-Revision-Date: 2025-05-30 11:07+0000\n" +"PO-Revision-Date: 2025-10-29 09:24+0000\n" "Last-Translator: Raphael Michel \n" "Language-Team: German (informal) \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.11.4\n" +"X-Generator: Weblate 5.14\n" #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:56 #: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:62 @@ -567,11 +567,11 @@ msgstr "abwesend" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:289 msgid "Error: Product not found!" -msgstr "" +msgstr "Fehler: Produkt nicht gefunden!" #: pretix/static/pretixcontrol/js/ui/checkinrules.js:296 msgid "Error: Variation not found!" -msgstr "" +msgstr "Fehler: Variante nicht gefunden!" #: pretix/static/pretixcontrol/js/ui/editor.js:171 msgid "Check-in QR" From 0d07615006d54408b86294de6e8cb80932e2fc88 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 30 Oct 2025 09:53:03 +0100 Subject: [PATCH 30/33] Bump version to 2025.9.0 --- src/pretix/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/__init__.py b/src/pretix/__init__.py index ab6b82dbd7..ac9cd86dec 100644 --- a/src/pretix/__init__.py +++ b/src/pretix/__init__.py @@ -19,4 +19,4 @@ # You should have received a copy of the GNU Affero General Public License along with this program. If not, see # . # -__version__ = "2025.9.0.dev0" +__version__ = "2025.9.0" From d203eee5ab401acde157a2f976253056d7d43e50 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 30 Oct 2025 09:53:25 +0100 Subject: [PATCH 31/33] Bump version to 2025.10.0.dev0 --- src/pretix/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/__init__.py b/src/pretix/__init__.py index ac9cd86dec..7c5f8da56f 100644 --- a/src/pretix/__init__.py +++ b/src/pretix/__init__.py @@ -19,4 +19,4 @@ # You should have received a copy of the GNU Affero General Public License along with this program. If not, see # . # -__version__ = "2025.9.0" +__version__ = "2025.10.0.dev0" From 7d5df2b69e8508494824973a5f082d33ca1d4277 Mon Sep 17 00:00:00 2001 From: Richard Schreiber Date: Thu, 30 Oct 2025 10:44:17 +0100 Subject: [PATCH 32/33] Fix required label for multi-checkbox form-groups (#5568) --- src/pretix/static/pretixpresale/scss/_forms.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/static/pretixpresale/scss/_forms.scss b/src/pretix/static/pretixpresale/scss/_forms.scss index 0cff5dca40..89f19417cc 100644 --- a/src/pretix/static/pretixpresale/scss/_forms.scss +++ b/src/pretix/static/pretixpresale/scss/_forms.scss @@ -173,7 +173,7 @@ output { } } @media (min-width: $screen-md-min) { - .form-group:not(:has(.checkbox)) { + .form-group:not(:has(.checkbox)), .form-group:has(.checkbox + .checkbox) { .label-required { display: block; } From 9a69b76880947e7d21d64f3a489db6fe0a7b1edf Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 10 Oct 2025 17:47:05 +0200 Subject: [PATCH 33/33] API: Expose history of check-ins (Z#23206049) --- doc/api/resources/checkin.rst | 91 +++++++++++++++++++++++++++++ src/pretix/api/serializers/order.py | 19 +++++- src/pretix/api/urls.py | 1 + src/pretix/api/views/checkin.py | 35 ++++++++++- src/tests/api/test_checkin.py | 69 ++++++++++++++++++++++ src/tests/api/test_permissions.py | 3 + 6 files changed, 215 insertions(+), 3 deletions(-) diff --git a/doc/api/resources/checkin.rst b/doc/api/resources/checkin.rst index 89ab1cff11..479fa28a37 100644 --- a/doc/api/resources/checkin.rst +++ b/doc/api/resources/checkin.rst @@ -421,3 +421,94 @@ Annulment of a check-in :statuscode 401: Authentication failure :statuscode 403: The requested organizer/event does not exist **or** you have no permission to view this resource. :statuscode 404: The requested nonce does not exist. + + +Check-in history +---------------- + +.. rst-class:: rest-resource-table + +===================================== ========================== ======================================================= +Field Type Description +===================================== ========================== ======================================================= +id integer Internal ID of the check-in +successful boolean Whether the check-in was successful +error_reason string Category of reason why the check-in was unsuccessful. Currently + ``"canceled"``, ``"invalid"``, ``"unpaid"`` ``"product"``, + ``"rules"``, ``"revoked"``, ``"incomplete"``, ``"already_redeemed"``, + ``"ambiguous"``, ``"error"``, ``"blocked"``, ``"unapproved"``, + ``"invalid_time"``, ``"annulled"`` or ``null`` +error_explanation string Additional, human-readable reason for the check-in to be unsuccessful (or ``null``) +position integer Internal ID of the order position (or ``null`` for unknown scans) +datetime datetime Logical time when the check-in happened +created datetime Time when the check-in appeared on the server +list integer Internal ID of the check-in list +auto_checked_in boolean Whether the check-in was performed by the system automatically +gate integer Internal ID of the gate (or ``null``) +device integer Internal ID of the device (or ``null``) +device_id integer Organizer-internal ID of the device (or ``null``) +type string Type of check-in, currently ``"entry"`` or ``"exit"`` +===================================== ========================== ======================================================= + +.. http:get:: /api/v1/organizers/(organizer)/events/(event)/checkins/ + + Returns a list of all check-in events within a given event. + + **Example request**: + + .. sourcecode:: http + + GET /api/v1/organizers/bigevents/events/sampleconf/checkins/ HTTP/1.1 + Host: pretix.eu + Accept: application/json, text/javascript + + **Example response**: + + .. sourcecode:: http + + HTTP/1.1 200 OK + Vary: Accept + Content-Type: application/json + + { + "count": 1, + "next": null, + "previous": null, + "results": [ + { + "id": 1, + "successful": true, + "error_reason": null, + "error_explanation": null, + "position": 1234, + "datetime": "2017-12-25T12:45:23Z", + "created": "2017-12-25T12:45:23Z", + "list": 2, + "auto_checked_in": false, + "gate": null, + "device": null, + "device_id": null, + "type": "entry", + } + ] + } + + :query integer page: The page number in case of a multi-page result set, default is 1 + :query datetime created_since: Only return check-ins that have been created since the given date (inclusive). + :query datetime created_before: Only return check-ins that have been created before the given date (exclusive). + :query datetime datetime_since: Only return check-ins that have happened since the given date (inclusive). + :query datetime datetime_before: Only return check-ins that have happened before the given date (exclusive). + :query boolean successful: Only return check-ins that have (not) been successful. + :query boolean error_reason: Only return check-ins with a specific error reason. + :query integer list: Only return check-ins from a specific list. + :query string type: Only return check-ins of a specific type. + :query integer gate: Only return check-ins from a specific gate. + :query integer device: Only return check-ins from a specific device. + :query boolean auto_checked_in: Only return check-ins that are (not) auto-checked in. + :query string ordering: Manually set the ordering of results. Valid fields to be used are ``datetime``, ``created``, + and ``id``. + :param organizer: The ``slug`` field of the organizer to fetch + :param event: The ``slug`` field of the event to fetch + :statuscode 200: no error + :statuscode 401: Authentication failure + :statuscode 403: The requested organizer/event does not exist **or** you have no permission to view this resource. diff --git a/src/pretix/api/serializers/order.py b/src/pretix/api/serializers/order.py index b58754ed97..ab3ff47bf0 100644 --- a/src/pretix/api/serializers/order.py +++ b/src/pretix/api/serializers/order.py @@ -325,7 +325,7 @@ class AnswerSerializer(I18nAwareModelSerializer): return data -class CheckinSerializer(I18nAwareModelSerializer): +class InlineCheckinSerializer(I18nAwareModelSerializer): device_id = serializers.SlugRelatedField( source='device', slug_field='device_id', @@ -337,6 +337,21 @@ class CheckinSerializer(I18nAwareModelSerializer): fields = ('id', 'datetime', 'list', 'auto_checked_in', 'gate', 'device', 'device_id', 'type') +class CheckinSerializer(I18nAwareModelSerializer): + device_id = serializers.SlugRelatedField( + source='device', + slug_field='device_id', + read_only=True, + ) + + class Meta: + model = Checkin + fields = ( + 'id', 'successful', 'error_reason', 'error_explanation', 'position', 'datetime', 'list', 'created', + 'auto_checked_in', 'gate', 'device', 'device_id', 'type' + ) + + class PrintLogSerializer(serializers.ModelSerializer): device_id = serializers.SlugRelatedField( source='device', @@ -560,7 +575,7 @@ class OrderPositionPluginDataField(serializers.Field): class OrderPositionSerializer(I18nAwareModelSerializer): - checkins = CheckinSerializer(many=True, read_only=True) + checkins = InlineCheckinSerializer(many=True, read_only=True) print_logs = PrintLogSerializer(many=True, read_only=True) answers = AnswerSerializer(many=True) downloads = PositionDownloadsField(source='*', read_only=True) diff --git a/src/pretix/api/urls.py b/src/pretix/api/urls.py index 15c6545672..71b7a1e944 100644 --- a/src/pretix/api/urls.py +++ b/src/pretix/api/urls.py @@ -92,6 +92,7 @@ event_router.register(r'taxrules', event.TaxRuleViewSet) event_router.register(r'seats', event.SeatViewSet) event_router.register(r'waitinglistentries', waitinglist.WaitingListViewSet) event_router.register(r'checkinlists', checkin.CheckinListViewSet) +event_router.register(r'checkins', checkin.CheckinViewSet) event_router.register(r'cartpositions', cart.CartPositionViewSet) event_router.register(r'scheduled_exports', exporters.ScheduledEventExportViewSet) event_router.register(r'exporters', exporters.EventExportersViewSet, basename='exporters') diff --git a/src/pretix/api/views/checkin.py b/src/pretix/api/views/checkin.py index 02304446df..26c0bbcaed 100644 --- a/src/pretix/api/views/checkin.py +++ b/src/pretix/api/views/checkin.py @@ -56,7 +56,8 @@ from pretix.api.serializers.checkin import ( ) from pretix.api.serializers.item import QuestionSerializer from pretix.api.serializers.order import ( - CheckinListOrderPositionSerializer, FailedCheckinSerializer, + CheckinListOrderPositionSerializer, CheckinSerializer, + FailedCheckinSerializer, ) from pretix.api.views import RichOrderingFilter from pretix.api.views.order import OrderPositionFilter @@ -96,6 +97,16 @@ with scopes_disabled(): ) return queryset.filter(expr) + class CheckinFilter(FilterSet): + created_since = django_filters.IsoDateTimeFilter(field_name='created', lookup_expr='gte') + created_before = django_filters.IsoDateTimeFilter(field_name='created', lookup_expr='lt') + datetime_since = django_filters.IsoDateTimeFilter(field_name='datetime', lookup_expr='gte') + datetime_before = django_filters.IsoDateTimeFilter(field_name='datetime', lookup_expr='lt') + + class Meta: + model = Checkin + fields = ['successful', 'error_reason', 'list', 'type', 'gate', 'device', 'auto_checked_in'] + class CheckinListViewSet(viewsets.ModelViewSet): serializer_class = CheckinListSerializer @@ -1080,3 +1091,25 @@ class CheckinRPCAnnulView(views.APIView): checkin_annulled.send(ci.position.order.event, checkin=ci) return Response({"status": "ok"}, status=status.HTTP_200_OK) + + +class CheckinViewSet(viewsets.ReadOnlyModelViewSet): + serializer_class = CheckinSerializer + queryset = Checkin.all.none() + filter_backends = (DjangoFilterBackend, RichOrderingFilter) + filterset_class = CheckinFilter + ordering = ('created', 'id') + ordering_fields = ('created', 'datetime', 'id',) + permission = 'can_view_orders' + + def get_queryset(self): + qs = Checkin.all.filter().select_related( + "position", + "device", + ) + return qs + + def get_serializer_context(self): + ctx = super().get_serializer_context() + ctx['event'] = self.request.event + return ctx diff --git a/src/tests/api/test_checkin.py b/src/tests/api/test_checkin.py index fd18b497dc..1dc696e6f3 100644 --- a/src/tests/api/test_checkin.py +++ b/src/tests/api/test_checkin.py @@ -236,6 +236,21 @@ TEST_LIST_RES = { "rules": {} } +TEST_HISTORY_RES = { + "successful": True, + "error_reason": None, + "error_explanation": None, + "position": 1234, + "datetime": "2017-12-25T12:45:23Z", + "created": "2017-12-25T12:45:23Z", + "list": 2, + "auto_checked_in": False, + "gate": None, + "device": None, + "device_id": None, + "type": "entry", +} + @pytest.fixture def clist(event, item): @@ -1366,3 +1381,57 @@ def test_expand(token_client, organizer, event, clist, clist_all, item, other_it )) assert resp.status_code == 200 assert 'value' in resp.data['results'][0]['variation'] + + +@pytest.mark.django_db +def test_history(token_client, organizer, event, clist, order): + with scopes_disabled(): + ci = order.positions.first().checkins.create(list=clist, type=Checkin.TYPE_ENTRY, datetime=now()) + res = dict(TEST_HISTORY_RES) + res["id"] = ci.pk + res["datetime"] = ci.datetime.isoformat().replace('+00:00', 'Z') + res["created"] = ci.created.isoformat().replace('+00:00', 'Z') + res["list"] = clist.pk + res["position"] = ci.position_id + + resp = token_client.get('/api/v1/organizers/{}/events/{}/checkins/'.format( + organizer.slug, event.slug, + )) + assert resp.status_code == 200 + assert res == resp.data['results'][0] + + resp = token_client.get('/api/v1/organizers/{}/events/{}/checkins/?auto_checked_in=false'.format( + organizer.slug, event.slug, + )) + assert len(resp.data['results']) == 1 + resp = token_client.get('/api/v1/organizers/{}/events/{}/checkins/?auto_checked_in=true'.format( + organizer.slug, event.slug, + )) + assert len(resp.data['results']) == 0 + + resp = token_client.get('/api/v1/organizers/{}/events/{}/checkins/?successful=true'.format( + organizer.slug, event.slug, + )) + assert len(resp.data['results']) == 1 + resp = token_client.get('/api/v1/organizers/{}/events/{}/checkins/?successful=false'.format( + organizer.slug, event.slug, + )) + assert len(resp.data['results']) == 0 + + resp = token_client.get('/api/v1/organizers/{}/events/{}/checkins/?type=entry'.format( + organizer.slug, event.slug, + )) + assert len(resp.data['results']) == 1 + resp = token_client.get('/api/v1/organizers/{}/events/{}/checkins/?type=exit'.format( + organizer.slug, event.slug, + )) + assert len(resp.data['results']) == 0 + + resp = token_client.get('/api/v1/organizers/{}/events/{}/checkins/?created_before=2099-01-01T00:00:00Z'.format( + organizer.slug, event.slug, + )) + assert len(resp.data['results']) == 1 + resp = token_client.get('/api/v1/organizers/{}/events/{}/checkins/?created_before=2017-01-01T00:00:00Z'.format( + organizer.slug, event.slug, + )) + assert len(resp.data['results']) == 0 diff --git a/src/tests/api/test_permissions.py b/src/tests/api/test_permissions.py index 91249dd751..15da07f72e 100644 --- a/src/tests/api/test_permissions.py +++ b/src/tests/api/test_permissions.py @@ -54,6 +54,7 @@ event_urls = [ (None, 'taxrules/'), ('can_view_orders', 'waitinglistentries/'), ('can_view_orders', 'checkinlists/'), + ('can_view_orders', 'checkins/'), (None, 'seats/'), ] @@ -176,6 +177,8 @@ event_permission_sub_urls = [ ('post', 'can_change_orders', 'orders/ABC12/refunds/1/done/', 404), ('get', 'can_view_orders', 'checkinlists/', 200), ('post', 'can_change_orders', 'checkinlists/1/failed_checkins/', 400), + ('get', 'can_view_orders', 'checkins/', 200), + ('get', 'can_view_orders', 'checkins/1/', 404), ('post', 'can_change_event_settings', 'checkinlists/', 400), ('put', 'can_change_event_settings', 'checkinlists/1/', 404), ('patch', 'can_change_event_settings', 'checkinlists/1/', 404),